This commit is contained in:
Zander Thannhauser 2025-08-10 13:40:12 -05:00
parent 6529ab9818
commit 21c7967f44
4 changed files with 5 additions and 2 deletions

View file

@ -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)
{

View file

@ -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");