Give us another "out" of the annealer if we're not making any progress

This commit is contained in:
james 2011-03-31 13:58:03 +00:00
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;
/*