Update after the change in replacements

This commit is contained in:
evomarc 2000-12-19 18:43:25 +00:00
commit ed0e76350a
5 changed files with 18 additions and 21 deletions

View file

@ -79,7 +79,7 @@ void main_function(int argc, char **argv)
// Initialization of the population
eoPop<Indi> pop(POP_SIZE, random);
// and evaluate it in one line
// and evaluate it in one loop
apply<Indi>(eval, pop); // STL syntax
// OUTPUT
@ -102,7 +102,7 @@ void main_function(int argc, char **argv)
// REPLACE
// And we now have the full slection/replacement - though with
// no replacement (== generational replacement) at the moment :-)
eoNoReplacement<Indi> replace;
eoGenerationalReplacement<Indi> replace;
// OPERATORS
//////////////////////////////////////