Changes in docs and added stuff to eoEvalSteadyFitness to reset after using it

This commit is contained in:
jmerelo 2004-08-10 17:19:46 +00:00
commit 669f41a315
7 changed files with 33 additions and 20 deletions

View file

@ -37,12 +37,11 @@
#include <utils/eoRNG.h>
#include <eoTransform.h>
/** ***************************************************************************
* eoSGATransform: transforms a population using genetic operators.
/** eoSGATransform: transforms a population using genetic operators.
* It does it exactly as class eoSGA, i.e. only accepts
* quadratic crossover and unary mutation
* It is here mainly for tutorial reasons
*****************************************************************************/
*/
template<class EOT> class eoSGATransform : public eoTransform<EOT>
{
public:
@ -90,8 +89,7 @@ template<class EOT> class eoSGATransform : public eoTransform<EOT>
double mutationProba;
};
/** ***************************************************************************
* eoDynSGATransform: transforms a population using genetic operators.
/** eoDynSGATransform: transforms a population using genetic operators.
* It is the Dynamic version of the above eoSGATransform
* i.e. the operators probabilities can be passed as an eoValueParam,
* and hence can be modified from outside