.
This commit is contained in:
parent
6529ab9818
commit
21c7967f44
4 changed files with 5 additions and 2 deletions
|
|
@ -493,7 +493,10 @@ void helper(
|
|||
|
||||
if (using_me_cost < INT_MAX)
|
||||
{
|
||||
int assign_cost = cost + 1 + using_me_cost;
|
||||
// int assign_cost = cost + 1 + using_me_cost;
|
||||
|
||||
// what if an assignment was free?
|
||||
int assign_cost = cost + 0 + using_me_cost;
|
||||
|
||||
if (assign_cost < simps->main.data[t].cost)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ static struct path { char data[PATH_MAX]; } get_path(
|
|||
{
|
||||
struct path path = {};
|
||||
|
||||
strcat(path.data, ".simplifier-cache-1");
|
||||
strcat(path.data, ".simplifier-cache-64GB");
|
||||
|
||||
if (flags->use_operators.not)
|
||||
strcat(path.data, "-not");
|
||||
|
|
|
|||
Loading…
Reference in a new issue