update cout - DON'T FORGET TO UNCOMMENT IT

git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@321 331e1502-861f-0410-8da2-ba01fb791d7f
This commit is contained in:
liefooga 2007-06-19 07:50:39 +00:00
commit 11749e0260

View file

@ -85,20 +85,15 @@ public:
*/
void operator() (eoPop < MOEOT > & _pop, moeoArchive < MOEOT > & _arch)
{
_arch.update(_pop);
cout << endl << endl << "***** IBMOLS 1" << endl;
unsigned counter = 2;
ibmols(_pop, _arch);
while (continuator(_arch))
{
// generate new solutions from the archive
generateNewSolutions(_pop, _arch);
cout << endl << endl << "***** IBMOLS " << counter++ << endl;
// apply the local search (the global archive is updated in the sub-function)
ibmols(_pop, _arch);
}
}