145 lines
4 KiB
Text
145 lines
4 KiB
Text
//-----------------------------------------------------------------------------
|
|
// eo
|
|
// (c) GeNeura Team 1998 - 2000
|
|
/*
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Lesser General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with this library; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
Contact: todos@geneura.ugr.es, http://geneura.ugr.es
|
|
*/
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#ifdef _MSC_VER
|
|
// to avoid long name warnings
|
|
#pragma warning(disable:4786)
|
|
#endif
|
|
|
|
#ifndef _eo_
|
|
#define _eo_
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// general purpose
|
|
#include <utils/eoData.h>
|
|
#include <eoObject.h>
|
|
#include <eoPrintable.h>
|
|
#include <eoPersistent.h>
|
|
#include <eoScalarFitness.h>
|
|
#include <EO.h>
|
|
|
|
#include <utils/rnd_generators.h>
|
|
#include <eoFunctor.h>
|
|
#include <apply.h>
|
|
|
|
// eo's
|
|
#include <eoVector.h>
|
|
|
|
#include <other/eoString.h>
|
|
|
|
#include <utils/eoRndGenerators.h>
|
|
#include <eoInit.h>
|
|
#include <utils/eoUniformInit.h>
|
|
|
|
// the variation operators
|
|
#include <eoOp.h>
|
|
#include <eoGenOp.h>
|
|
#include <eoCloneOps.h>
|
|
#include <eoOpContainer.h>
|
|
// combinations of simple eoOps (eoMonOp and eoQuadOp)
|
|
#include <eoProportionalCombinedOp.h>
|
|
// didactic (mimics SGA-like variation into an eoGenOp)
|
|
#include <eoSGAGenOp.h>
|
|
|
|
// population
|
|
#include <eoPop.h>
|
|
|
|
// Evaluation functions (all include eoEvalFunc.h)
|
|
#include <eoPopEvalFunc.h>
|
|
#include <eoEvalFuncPtr.h>
|
|
|
|
// Continuators - all include eoContinue.h
|
|
#include <eoCombinedContinue.h>
|
|
#include <eoGenContinue.h>
|
|
#include <eoSteadyFitContinue.h>
|
|
#include <eoEvalContinue.h>
|
|
#include <eoFitContinue.h>
|
|
#ifndef _MSC_VER
|
|
#include <eoCtrlCContinue.h> // CtrlC handling (using 2 global variables!)
|
|
#endif
|
|
// Selection
|
|
// the eoSelectOne's
|
|
#include <eoRandomSelect.h>
|
|
#include <eoSequentialSelect.h>
|
|
#include <eoDetTournamentSelect.h>
|
|
#include <eoProportionalSelect.h>
|
|
#include <eoFitnessScalingSelect.h> // also contains eoLinearFitScaling.h
|
|
#include <eoRankingSelect.h>
|
|
#include <eoStochTournamentSelect.h>
|
|
#include <eoSharingSelect.h>
|
|
// Embedding truncation selection
|
|
#include <eoTruncatedSelectOne.h>
|
|
|
|
// the batch selection - from an eoSelectOne
|
|
#include <eoSelectPerc.h>
|
|
#include <eoSelectNumber.h>
|
|
#include <eoSelectMany.h>
|
|
#include <eoTruncatedSelectMany.h>
|
|
|
|
// other batch selections
|
|
// DetSelect can also be obtained as eoSequentialSelect, an eoSelectOne
|
|
// (using setup and an index)
|
|
#include <eoDetSelect.h>
|
|
|
|
// Breeders
|
|
#include <eoGeneralBreeder.h> // applies one eoGenOp, stop on offspring count
|
|
// #include <eoOneToOneBreeder.h> // parent + SINGLE offspring compete (e.g. DE) - not ready yet...
|
|
|
|
// Replacement
|
|
// #include <eoReplacement.h>
|
|
#include <eoMergeReduce.h>
|
|
#include <eoReduceMerge.h>
|
|
#include <eoSurviveAndDie.h>
|
|
|
|
// a simple transformer
|
|
#include <eoSGATransform.h>
|
|
|
|
// Perf2Worth stuff - includes eoSelectFromWorth.h
|
|
#include <eoParetoRanking.h>
|
|
#include <eoNDSorting.h>
|
|
|
|
// Algorithms
|
|
#include <eoEasyEA.h>
|
|
#include <eoSGA.h>
|
|
// #include <eoEvolutionStrategy.h> removed for a while - until eoGenOp is done
|
|
|
|
// Utils
|
|
#include <utils/checkpointing>
|
|
|
|
// aliens
|
|
#include <other/external_eo>
|
|
#include <eoCounter.h>
|
|
|
|
// Cellular parallel evolutionary algorithm
|
|
#include <eoToricCellularEasyEA.h>
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// to be continued ...
|
|
//-----------------------------------------------------------------------------
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#endif
|
|
|
|
// Local Variables:
|
|
// mode: C++
|
|
// End:
|