#include <GeneralSelect.h>

Public Member Functions | |
| void | Init () |
| size_t | GetOne () |
| GeneralSelect () | |
| virtual | ~GeneralSelect () |
GeneralSelect defines to abstract functions: Init and GetOne. Init has to be called once per iteration and sets all the necessary parameters depending on probabilities and crowding distance GetOne then returns the index of a selected population member and is called every time a population member has to be selected by a selection operator. There is no default implementation !
Definition at line 15 of file GeneralSelect.h.
| GeneralSelect::GeneralSelect | ( | ) |
Definition at line 4 of file GeneralSelect.cpp.
| GeneralSelect::~GeneralSelect | ( | ) | [virtual] |
Definition at line 8 of file GeneralSelect.cpp.
| void GeneralSelect::Init | ( | ) | [inline] |
Definition at line 23 of file GeneralSelect.h.
Referenced by main(), and StandardPropagation::NextGeneration().
| size_t GeneralSelect::GetOne | ( | ) |
Definition at line 11 of file GeneralSelect.cpp.
Referenced by main(), and StandardPropagation::NextGeneration().
1.5.5