Darwin Neuroevolution Framework
truncation_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/properties.h>
18 #include <core/selection_algorithm.h>
19 
20 #include <vector>
21 using namespace std;
22 
23 namespace selection {
24 
27  PROPERTY(elite_percentage, float, 0.1f, "Elite percentage");
28  PROPERTY(elite_min_fitness, float, 0.0f, "Elite minimum fitness");
29  PROPERTY(elite_mutation_chance, float, 0.0f, "Elite mutation chance");
30 };
31 
38  public:
39  explicit TruncationSelection(const core::PropertySet& config);
40 
41  void newPopulation(darwin::Population* population) override;
42  void createNextGeneration(selection::GenerationFactory* next_generation) override;
43 
44  private:
45  darwin::Population* population_ = nullptr;
47 };
48 
49 } // namespace selection
A population implementation encapsulates the fixed-size set of genotypes, together with the rules for...
Definition: darwin.h:161
A truncation-selection variant.
Definition: truncation_selection.h:37
STL namespace.
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
Truncation selection configuration.
Definition: truncation_selection.h:26