algo(pop)

git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@1085 331e1502-861f-0410-8da2-ba01fb791d7f
This commit is contained in:
liefooga 2008-03-06 13:41:47 +00:00
commit 21fcc5567f

View file

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