From da40ca0b46371ca15519746f5659c8e290f674ae Mon Sep 17 00:00:00 2001 From: atantar Date: Sat, 30 Dec 2006 14:35:20 +0000 Subject: [PATCH] git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@133 331e1502-861f-0410-8da2-ba01fb791d7f --- trunk/paradiseo-peo/examples/lesson1/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trunk/paradiseo-peo/examples/lesson1/main.cpp b/trunk/paradiseo-peo/examples/lesson1/main.cpp index 251c063e2..77497d00f 100644 --- a/trunk/paradiseo-peo/examples/lesson1/main.cpp +++ b/trunk/paradiseo-peo/examples/lesson1/main.cpp @@ -62,7 +62,7 @@ int main( int __argc, char** __argv ) { peoSeqPopEval< Route > eaPopEval( full_eval ); // evaluator object - to be applied at each iteration on the entire population eoGenContinue< Route > eaCont( NUM_GEN ); // continuation criterion - the algorithm will iterate for NUM_GEN generations - eoCheckPoint< Route > eaCheckpointContinue( eaConts ); // checkpoint object - verify at each iteration if the continuation criterion is met + eoCheckPoint< Route > eaCheckpointContinue( eaCont ); // checkpoint object - verify at each iteration if the continuation criterion is met eoRankingSelect< Route > selectionStrategy; // selection strategy - applied at each iteration for selecting parent individuals eoSelectNumber< Route > eaSelect( selectionStrategy, POP_SIZE ); // selection object - POP_SIZE individuals are selected at each iteration