Adding Evolution Strategies:

src/es/eoEsGlobalXover.h and src/es/eoEsLocalXover.h for crossover
src/es/make_XXX_es.h for user-input
test/t-eoEsAll.cpp to test

However, an old bug appeared: className was not const in eoGenOp (and derived classes)
so I had to change that throughtout the hierarchy
This commit is contained in:
evomarc 2001-05-02 10:42:32 +00:00
commit 10064ad967
28 changed files with 471 additions and 180 deletions

View file

@ -46,7 +46,7 @@ template <class FitT> class eoReal: public eoVector<FitT, double>
eoVector<FitT, double>(size, value) {}
/// My class name.
string className() const
virtual string className() const
{
return "eoReal";
}