Fix end-state (allow searches to finish) #7
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
For some reason, long running searches fail to finish. Short running ones are fine. I need to figure out a better way to do this.
for solver.iter != solver.counter {}
never works. For some reason thecounter
never reachesiter
, making this a while true. Due to howif track <= int(percentage) {}
is setup and all the variables before and after there is never really an end-state with the difference betweeniter
andcounter
is too big ( why this is too big is another issue, which I hope to solve with #8 ).I need to rework and rethink this. I will keep the track/percentage, but I will need to rework everything outside of it.
That or track if variable values haven't changed after the last run. But that comes off as a dirtier hack than my ex-wife.
This commit should fix the end-state issue. But it seems #6 ruined the estimation for long running estimations (rates seem to be off, halved).