eoCounter?

eoEasyEA -- made it copyable again
eoEvalFunc -- added specialized eoEvalFuncCounter
eoEvolutionStrategy -- nothing much
eoGenContinue -- nothing
eoPop -- fixed nth_element_fitness
eoBitOp -- fixed error in xover
eoFileMonitor -- now appends always
eoParam -- worked around memory leak in MSC's strstream
eoParser -- changed -pconfig_file to @config_file
eoParser -- added messages instead of exception when required param is missing
eoStat -- added eoDistanceStat
t-eoFunctor -- don't know
This commit is contained in:
mac 2000-08-23 12:03:01 +00:00
commit ff108477c3
16 changed files with 222 additions and 83 deletions

View file

@ -18,7 +18,6 @@ public :
};
#include <iostream>
#include <eoTranspose.h>
#include <eoFixedLength.h>
#include <eoVariableLength.h>
@ -46,8 +45,5 @@ int main(void)
eo.push_back(1);
eo.push_back(2);
eoTranspose<EoType> transpose;
transpose(eo);
return 1;
}