27 #ifndef ELITESELECTSTRATEGY_H_
28 #define ELITESELECTSTRATEGY_H_
this interface is for a select strategy of the generation class.
Definition: ISelectStrategy.h:36
virtual ~EliteSelectStrategy()
default destructor
Definition: EliteSelectStrategy.cpp:55
EliteSelectStrategy()
default constructor
Definition: EliteSelectStrategy.cpp:51
virtual void select(Generation *oldGeneration, Generation *newGeneration)
select the individual in the old generation which should be in the new generation (only the best)...
Definition: EliteSelectStrategy.cpp:63
The Generation class.
Definition: Generation.h:53
This class makes a elite select and bring only the best individual in the next generation.
Definition: EliteSelectStrategy.h:39