algo(pop)

git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@1087 331e1502-861f-0410-8da2-ba01fb791d7f
This commit is contained in:
liefooga 2008-03-06 13:43:35 +00:00
commit dac264782d
2 changed files with 4 additions and 4 deletions

View file

@ -116,7 +116,7 @@ int main(int argc, char* argv[])
// help ?
make_help(parser);
// first evalution
// first evalution (for printing)
apply<FlowShop>(eval, pop);
// printing of the initial population
@ -125,7 +125,7 @@ int main(int argc, char* argv[])
cout << endl;
// run the algo
do_run(algo, pop);
algo(pop);
// printing of the final population
cout << "Final Population\n";

View file

@ -101,7 +101,7 @@ int main(int argc, char* argv[])
// help ?
make_help(parser);
// first evalution
// first evalution (for printing)
apply<FlowShop>(eval, pop);
// printing of the initial population
@ -110,7 +110,7 @@ int main(int argc, char* argv[])
cout << endl;
// run the algo
do_run(algo, pop);
algo(pop);
// printing of the final population
cout << "Final Population\n";