From 93cde922d705f811e43841ab2858550dbf854ce8 Mon Sep 17 00:00:00 2001 From: evomarc Date: Thu, 20 Dec 2001 18:04:52 +0000 Subject: [PATCH] There was an error in the type of the first parameter of make_checkpoint and make_algo_scalar (changed from eoParameterLOader to eoParser) --- eo/tutorial/Templates/MyStructEA.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eo/tutorial/Templates/MyStructEA.cpp b/eo/tutorial/Templates/MyStructEA.cpp index 9020d4728..64aa10b28 100644 --- a/eo/tutorial/Templates/MyStructEA.cpp +++ b/eo/tutorial/Templates/MyStructEA.cpp @@ -92,14 +92,14 @@ eoContinue& make_continue(eoParser& _parser, eoState& _state, eoEvalFuncCo // outputs (stats, population dumps, ...) #include -eoCheckPoint& make_checkpoint(eoParameterLoader& _parser, eoState& _state, eoEvalFuncCounter& _eval, eoContinue& _continue) +eoCheckPoint& make_checkpoint(eoParser& _parser, eoState& _state, eoEvalFuncCounter& _eval, eoContinue& _continue) { return do_make_checkpoint(_parser, _state, _eval, _continue); } // evolution engine (selection and replacement) #include -eoAlgo& make_algo_scalar(eoParameterLoader& _parser, eoState& _state, eoEvalFunc& _eval, eoContinue& _continue, eoGenOp& _op) +eoAlgo& make_algo_scalar(eoParser& _parser, eoState& _state, eoEvalFunc& _eval, eoContinue& _continue, eoGenOp& _op) { return do_make_algo_scalar(_parser, _state, _eval, _continue, _op); }