Darwin Neuroevolution Framework
selection_algorithm.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/darwin.h>
18 #include <core/utils.h>
19 
20 namespace selection {
21 
22 class GenotypeFactory {
23  public:
24  virtual ~GenotypeFactory() = default;
25 
26  virtual void createPrimordialSeed() = 0;
27  virtual void replicate(int parent_index) = 0;
28  virtual void crossover(int parent1, int parent2, float preference) = 0;
29  virtual void mutate() = 0;
30 };
31 
32 class GenerationFactory {
33  public:
34  virtual ~GenerationFactory() = default;
35 
36  virtual size_t size() const = 0;
37  virtual GenotypeFactory* operator[](size_t index) = 0;
38 };
39 
42  public:
43  virtual ~SelectionAlgorithm() = default;
44 
46  virtual void newPopulation(darwin::Population* population) = 0;
47 
49  virtual void createNextGeneration(GenerationFactory* next_generation) = 0;
50 };
51 
52 } // namespace selection
A population implementation encapsulates the fixed-size set of genotypes, together with the rules for...
Definition: darwin.h:161
virtual void createNextGeneration(GenerationFactory *next_generation)=0
Create a new generation of genotypes.
Definition: cgp_islands_selection.cpp:26
Selection Algorithm interface.
Definition: selection_algorithm.h:41
virtual void newPopulation(darwin::Population *population)=0
Prepare the selection for a new population.
Classes derived from this are not copyable or movable.
Definition: utils.h:69