ILS v1 :)

git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@1727 331e1502-861f-0410-8da2-ba01fb791d7f
This commit is contained in:
jhumeau 2010-03-29 15:58:25 +00:00
commit 6bb2a4a822
21 changed files with 330 additions and 60 deletions

View file

@ -43,7 +43,7 @@
*
*/
template< class EOT >
class moSimpleCoolingSchedule : public eoUF<double, bool>
class moSimpleCoolingSchedule : public moCoolingSchedule<EOT>
{
public:
/**
@ -91,18 +91,14 @@ public:
private:
// initial temperature
double initT;
// threshold temperature
double finalT;
// coefficient of decrease
double alpha;
// maximum number of iterations at the same temperature
unisgned span;
unsigned int span;
// threshold temperature
double finalT;
// number of steps with the same temperature
unsigned step;
unsigned int step;
};