Darwin Neuroevolution Framework
cgp_islands_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(island_size, int, 10, "Size of the population islands");
28 
29  PROPERTY(protected_age,
30  int,
31  25,
32  "The number of generations a new island is protected from extinction");
33 
34  PROPERTY(extinction_percentage,
35  float,
36  0.25f,
37  "Percentage of low performing islands to go extinct");
38 };
39 
47  static constexpr int kPrimordialSeed = -1;
48 
49  struct Island {
50  int age = 0;
51  int parent = kPrimordialSeed;
52  };
53 
54  public:
55  explicit CgpIslandsSelection(const core::PropertySet& config);
56 
57  void newPopulation(darwin::Population* population) override;
58  void createNextGeneration(selection::GenerationFactory* next_generation) override;
59 
60  private:
61  darwin::Population* population_ = nullptr;
63 
64  vector<Island> islands_;
65 };
66 
67 } // namespace selection
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
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
Configuration for CgpIslandsSelection.
Definition: cgp_islands_selection.h:26