GPLIB++
GA.h
Go to the documentation of this file.
1 #ifndef GA_H_
2 #define GA_H_
3 
4 /** \addtogroup gainv Genetic algorithm optimization */
5 /* @{ */
6 
7 /*! /file this is a convenience header to include all the header files
8  * possibly necessary to write a GA based program
9  */
10 #include "GeneralObjective.h"
11 #include "SimpleSelect.h"
12 #include "BinaryTournamentSelect.h"
13 #include "UniformRNG.h"
14 #include "gentypes.h"
15 #include "BinaryPopulation.h"
16 #include "StandardPropagation.h"
17 #include "GrayTranscribe.h"
18 #include "BinaryTranscribe.h"
19 #include "AnnealingGA.h"
20 #include "ParetoGA.h"
21 /* @} */
22 #endif /*GA_H_*/