17 #include <core/properties.h> 18 #include <core/selection_algorithm.h> 27 PROPERTY(island_size,
int, 10,
"Size of the population islands");
29 PROPERTY(protected_age,
32 "The number of generations a new island is protected from extinction");
34 PROPERTY(extinction_percentage,
37 "Percentage of low performing islands to go extinct");
47 static constexpr
int kPrimordialSeed = -1;
51 int parent = kPrimordialSeed;
58 void createNextGeneration(selection::GenerationFactory* next_generation)
override;
64 vector<Island> islands_;
A population implementation encapsulates the fixed-size set of genotypes, together with the rules for...
Definition: darwin.h:161
An extension of the CGP-style (1+N) selection strategy.
Definition: cgp_islands_selection.h:46
Definition: cgp_islands_selection.cpp:26
Selection Algorithm interface.
Definition: selection_algorithm.h:41
The foundation for data structures supporting runtime reflection.
Definition: properties.h:388
Configuration for CgpIslandsSelection.
Definition: cgp_islands_selection.h:26