diff --git a/eo/src/eoGenContinue.h b/eo/src/eoGenContinue.h index 05382414..fac89d5d 100644 --- a/eo/src/eoGenContinue.h +++ b/eo/src/eoGenContinue.h @@ -71,7 +71,10 @@ public: } /** Sets the number of generations to reach - and sets the current generation to 0 (the begin)*/ + and sets the current generation to 0 (the begin) + + @todo replace this by an "init" method + */ virtual void totalGenerations( unsigned long _tg ) { repTotalGenerations = _tg; thisGeneration = 0; diff --git a/eo/src/eoSteadyFitContinue.h b/eo/src/eoSteadyFitContinue.h index 2422ec1f..7e5c8e21 100644 --- a/eo/src/eoSteadyFitContinue.h +++ b/eo/src/eoSteadyFitContinue.h @@ -83,7 +83,10 @@ public: } /** Sets the parameters (minimum nb of gen. + steady nb of gen.) - and sets the current generation to 0 (the begin)*/ + and sets the current generation to 0 (the begin) + + @todo replace thi by an init method ? + */ virtual void totalGenerations( unsigned long _mg, unsigned long _sg ) { repMinGenerations = _mg; repSteadyGenerations = _sg;