paradiseo/eo/src/ga
2020-10-09 16:17:49 +02:00
..
ChangeLog fix back some errors inserted by previous refactoring 2019-12-06 15:58:27 +01:00
CMakeLists.txt add cmake export to all targets & bugfix Find module 2019-09-29 21:14:30 +02:00
eoBit.h allow eoBit to be templatized on its value type 2020-08-26 11:58:46 +02:00
eoBitOp.h fix eoDetSingleBitFlip num_bit setting 2020-10-07 15:53:36 +02:00
eoBitOpFactory.h Use relative includes in headers and absolute in code 2019-12-06 15:15:22 +01:00
eoBoolFlip.h Use relative includes in headers and absolute in code 2019-12-06 15:15:22 +01:00
eoStandardBitMutation.h add some missing className 2020-10-09 13:33:43 +02:00
make_algo_scalar_ga.cpp Use relative includes in headers and absolute in code 2019-12-06 15:15:22 +01:00
make_checkpoint_ga.cpp Use relative includes in headers and absolute in code 2019-12-06 15:15:22 +01:00
make_continue_ga.cpp Use relative includes in headers and absolute in code 2019-12-06 15:15:22 +01:00
make_ga.h several fix of minor warnings 2020-03-25 14:46:23 +01:00
make_genotype_ga.cpp Use relative includes in headers and absolute in code 2019-12-06 15:15:22 +01:00
make_genotype_ga.h fix template change of eoBooleanGenerator 2020-10-09 16:17:49 +02:00
make_op.h fix: doc and warnings 2020-04-22 08:00:28 +02:00
make_op_ga.cpp Use relative includes in headers and absolute in code 2019-12-06 15:15:22 +01:00
make_PBILdistrib.h Use relative includes in headers and absolute in code 2019-12-06 15:15:22 +01:00
make_PBILupdate.h use eoExceptions everywhere 2020-03-27 00:48:23 +01:00
make_pop_ga.cpp Use relative includes in headers and absolute in code 2019-12-06 15:15:22 +01:00
make_run_ga.cpp Use relative includes in headers and absolute in code 2019-12-06 15:15:22 +01:00
Readme * indentations + whitespace cleanup 2011-05-05 16:54:00 +02:00

This directory contains:

- some standard EO source files, named eoXXXXX, that define objects
for the eoBit<FitT> representation (bitstrings).

- some make_XXX.cpp files that are instanciations for EO bitstrings
(eoBit<double> AND eoBit<eoMinimizingFitness>) of the tempatized code
that is defined in the EO src/do dir.
This MK's trick allows to actually compile all these bits in a library
(eolibga.a) and to only recompile the bits you need for your own
(bitstring!) application.
@see src/do/make_XXX.h files, and test/t-eoGA.cpp for an example use.

Note:
Also are *defined* here two representation dependent make_XXX.h files
(together with their instanciations in make_XXX.cpp), namely the ones
that constructs the EOType initializer (make_genotype.h) and the one
that buils up the operators (make_op.h).

MS, April 23, 2001CVS