forked from science-ation/science-ation
Give us another "out" of the annealer if we're not making any progress
This commit is contained in:
parent
106ac578f1
commit
3eb15bd24b
@ -309,6 +309,11 @@ class annealer {
|
||||
|
||||
if($temperature < 0.1 && $last_cost_count > 10)
|
||||
break;
|
||||
|
||||
//if we go 1 million iterations without changing the cost, lets give up
|
||||
if($last_cost_count>1000000)
|
||||
break;
|
||||
|
||||
// TRACE("Cost is {$this->cost}\n");
|
||||
$temperature *= $this->rate;
|
||||
/*
|
||||
|
Loading…
x
Reference in New Issue
Block a user