Darwin Neuroevolution Framework
roulette_selection.h
1 // Copyright 2019 The Darwin Neuroevolution Framework Authors.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 #pragma once
16 
17 #include <core/selection_algorithm.h>
18 #include <core/properties.h>
19 
20 namespace selection {
21 
24  PROPERTY(min_fitness,
25  float,
26  0.0f,
27  "Minimum fitness for the genotypes participating the selection");
28 
29  PROPERTY(elite_percentage, float, 0.1f, "Elite percentage");
30  PROPERTY(elite_min_fitness, float, 0.0f, "Elite minimum fitness");
31 
32  PROPERTY(mutation_only, bool, false, "Use only mutation (no crossover)");
33 };
34 
40  public:
41  explicit RouletteSelection(const core::PropertySet& config);
42 
43  void newPopulation(darwin::Population* population) override;
44  void createNextGeneration(selection::GenerationFactory* next_generation) override;
45 
46  private:
47  darwin::Population* population_ = nullptr;
49 };
50 
51 } // namespace selection
A population implementation encapsulates the fixed-size set of genotypes, together with the rules for...
Definition: darwin.h:161
Roulette wheel selection configuration.
Definition: roulette_selection.h:23
Definition: cgp_islands_selection.cpp:26
bool mutation_only
"Use only mutation (no crossover)"
Definition: roulette_selection.h:32
float elite_percentage
"Elite percentage"
Definition: roulette_selection.h:29
Selection Algorithm interface.
Definition: selection_algorithm.h:41
float elite_min_fitness
"Elite minimum fitness"
Definition: roulette_selection.h:30
The foundation for data structures supporting runtime reflection.
Definition: properties.h:388
void createNextGeneration(selection::GenerationFactory *next_generation) override
Create a new generation of genotypes.
Definition: roulette_selection.cpp:39
float min_fitness
"Minimum fitness for the genotypes participating the selection"
Definition: roulette_selection.h:27
void newPopulation(darwin::Population *population) override
Prepare the selection for a new population.
Definition: roulette_selection.cpp:32
Roulette wheel selection.
Definition: roulette_selection.h:39