Merge branch 'master' of ssh://eodev/gitroot/eodev/eodev
This commit is contained in:
commit
ec70859622
9 changed files with 86 additions and 19 deletions
|
|
@ -29,7 +29,7 @@
|
|||
|
||||
#include <functional>
|
||||
|
||||
/** @ddtogroup Core
|
||||
/** @addtogroup Core
|
||||
* @{
|
||||
*/
|
||||
|
||||
|
|
|
|||
|
|
@ -31,7 +31,6 @@
|
|||
|
||||
/** @addtogroup Utilities
|
||||
|
||||
/**
|
||||
One of the invalidator operators. Use this one as a 'hat' on an operator
|
||||
that is defined to work on a generic datatype. This functor will then check
|
||||
the return type of the operator and invalidate the fitness of the individual.
|
||||
|
|
|
|||
|
|
@ -37,9 +37,9 @@
|
|||
/**
|
||||
Replacement strategies that combine en eoMerge and an eoReduce.
|
||||
|
||||
@classes: eoMergeReduce, the base (pure abstract) class
|
||||
eoPlusReplacement the ES plus strategy
|
||||
eoCommaReplacement the ES comma strategy
|
||||
@class eoMergeReduce, the base (pure abstract) class
|
||||
@class eoPlusReplacement the ES plus strategy
|
||||
@class eoCommaReplacement the ES comma strategy
|
||||
*/
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -57,9 +57,9 @@ MS 12/12/2000
|
|||
|
||||
@see eoMerge, eoReduce, eoMergeReduce, eoReduceMerge
|
||||
|
||||
@classes eoReplacement, base (pure abstract) class
|
||||
eoGenerationalReplacement, as it says ...
|
||||
eoWeakElitistReplacement a wrapper to add elitism
|
||||
@class eoReplacement, base (pure abstract) class
|
||||
@class eoGenerationalReplacement, as it says ...
|
||||
@class eoWeakElitistReplacement a wrapper to add elitism
|
||||
|
||||
*/
|
||||
|
||||
|
|
|
|||
|
|
@ -42,8 +42,9 @@ kills the ones that are to die,
|
|||
puts the ones that are to survive into the second argument
|
||||
removes them from the first pop argument
|
||||
|
||||
@classes: eoSurviveAndDie, eoDeterministicSurviveAndDie,
|
||||
eoDeterministicSaDReplacement
|
||||
@class eoSurviveAndDie
|
||||
@class eoDeterministicSurviveAndDie,
|
||||
@class eoDeterministicSaDReplacement
|
||||
*/
|
||||
|
||||
/** @addtogroup Replacors
|
||||
|
|
|
|||
|
|
@ -454,7 +454,8 @@ public:
|
|||
|
||||
virtual std::string className(void) const { return "eoInterquartileRangeStat"; }
|
||||
};
|
||||
|
||||
/** @example t-eoIQRStat.cpp
|
||||
*/
|
||||
|
||||
/** Compute the average size of indivudals over the population
|
||||
*
|
||||
|
|
|
|||
|
|
@ -29,11 +29,10 @@
|
|||
* eoRndGenerators, we might as well have these directly written without
|
||||
* overhead
|
||||
|
||||
@classes:
|
||||
eoUniformInit uniform initialization for doubles, floats, ints, ...
|
||||
eoBooleanInit biased init for booleans
|
||||
eoNormalInit normal intialization for doubles and floats
|
||||
eoNegExpInit negative exponential distributions "
|
||||
@class eoUniformInit uniform initialization for doubles, floats, ints, ...
|
||||
@class eoBooleanInit biased init for booleans
|
||||
@class eoNormalInit normal intialization for doubles and floats
|
||||
@class eoNegExpInit negative exponential distributions "
|
||||
*/
|
||||
|
||||
#ifndef eoUniformInit_h
|
||||
|
|
|
|||
Reference in a new issue