cout deleted
git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@578 331e1502-861f-0410-8da2-ba01fb791d7f
This commit is contained in:
parent
01550a2c11
commit
17497f0415
1 changed files with 12 additions and 15 deletions
|
|
@ -87,16 +87,13 @@ public:
|
|||
moeoArchive < MOEOT > previousArchive;
|
||||
// update the archive with the initial population
|
||||
archive.update(_pop);
|
||||
unsigned int count = 0;
|
||||
do
|
||||
{
|
||||
previousArchive.update(archive);
|
||||
oneStep(_pop);
|
||||
count++;
|
||||
archive.update(_pop);
|
||||
} while ( (! archive.equals(previousArchive)) && (continuator(_arch)) );
|
||||
_arch.update(archive);
|
||||
cout << "\t" << count << " steps" << endl;
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -120,7 +117,7 @@ private:
|
|||
* Apply one step of the local search to the population _pop
|
||||
* @param _pop the population
|
||||
*/
|
||||
void old_oneStep (eoPop < MOEOT > & _pop)
|
||||
void oneStep (eoPop < MOEOT > & _pop)
|
||||
{
|
||||
// the move
|
||||
Move move;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue