Robot Simulator of the Robotics Group for Self-Organization of Control
0.8.0
|
This class makes a select by randomized comparison of two individual of the old generation. More...
#include <TournamentSelectStrategy.h>
Public Member Functions | |
TournamentSelectStrategy (RandGen *random) | |
constructor More... | |
virtual | ~TournamentSelectStrategy () |
default destructor More... | |
virtual void | select (Generation *oldGeneration, Generation *newGeneration) |
implementation for the interface ISelectStrategy More... | |
![]() | |
ISelectStrategy () | |
default constructor More... | |
virtual | ~ISelectStrategy () |
default destructor More... | |
Protected Attributes | |
RandGen * | m_random |
the random generator More... | |
This class makes a select by randomized comparison of two individual of the old generation.
The worse individual dosn't comes in the next generation. If enough individual "killed", comes the living in the next generation.
With this method it is possible that a bad individual comes in the next generation. So you dosn't becomes a to elite generation and save some alternatives in the gens. This way is in this point better than the EliteSelectStrategy.
TournamentSelectStrategy | ( | RandGen * | random | ) |
constructor
random | (RandGen*) a random generator for the randomized select of two individual. |
|
virtual |
default destructor
|
virtual |
implementation for the interface ISelectStrategy
oldGeneration | (Generation*) the old generation |
newGeneration | (Generation*) the next generation |
Implements ISelectStrategy.
|
protected |
the random generator