fix back some errors inserted by previous refactoring

- move PBIL classes in deprecated/, superseeded by the EDO module
This commit is contained in:
Johann Dreo 2019-12-06 15:26:21 +01:00
commit 646f20934e
17 changed files with 30 additions and 30 deletions

View file

@ -36,28 +36,28 @@
//-----------------------------------------------------------------------------
// the genotypes - from plain std::vector<double> to full correlated mutation
#include "eoReal.h"
#include "eoEsSimple.h"
#include "eoEsStdev.h"
#include "eoEsFull.h"
#include "es/eoReal.h"
#include "es/eoEsSimple.h"
#include "es/eoEsStdev.h"
#include "es/eoEsFull.h"
// the initialization
#include "eoEsChromInit.h"
#include "es/eoEsChromInit.h"
// general operators
#include "eoRealOp.h"
#include "eoNormalMutation.h"
#include "eoRealAtomXover.h" // for generic operators
#include "es/eoRealOp.h"
#include "es/eoNormalMutation.h"
#include "es/eoRealAtomXover.h" // for generic operators
// SBX crossover (following Deb)
#include "eoSBXcross.h"
#include "es/eoSBXcross.h"
// ES specific operators
#include "eoEsGlobalXover.h" // Global ES Xover
#include "eoEsStandardXover.h" // 2-parents ES Xover
#include "es/eoEsGlobalXover.h" // Global ES Xover
#include "es/eoEsStandardXover.h" // 2-parents ES Xover
// the ES-mutations
#include "eoEsMutationInit.h"
#include "eoEsMutate.h"
#include "es/eoEsMutationInit.h"
#include "es/eoEsMutate.h"
#endif