diff --git a/admin/anneal.inc.php b/admin/anneal.inc.php index ccda734c..1b7c1e3a 100644 --- a/admin/anneal.inc.php +++ b/admin/anneal.inc.php @@ -275,6 +275,34 @@ class annealer { break; // TRACE("Cost is {$this->cost}\n"); $temperature *= $this->rate; + /* +FIXME: README: NOTE: TODO: +From Kris, 2009-03-24 +Dave do you think we should consider something like this? + + here's the schedule i use in my academic annealer: + if( _params._useVPRTempSchedule ) { + // This is VPR's temperature schedule... + if( successRate > 0.96 ) { + _temp *= 0.5; + } else if( successRate > 0.8 ) { + _temp *= 0.9; + } else if( successRate > 0.15 || !windowsSized ) { + _temp *= 0.95; + } else { + _temp *= 0.8; + } + } else { + // This is identical to Aaarts and Van Laarhaven. + real64 kappa = _params._tempReduction; // 1.0 == slow, 10 = reasonable, 100 == fast + real64 sqrvar = std::sqrt( variance ); + if( variance <= EPSNEG || sqrvar <= EPSNEG ) { + _temp = 0.; + } else { + _temp = _temp * ( sqrvar / ( sqrvar + kappa * _temp ) ); + } + } + */ } TRACE("Annealing complete. {$this->iterations} iterations. Final cost is {$this->cost}\n"); }