Darwin Neuroevolution Framework
population.h
1 // Copyright 2018 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 "genotype.h"
18 
19 #include <core/darwin.h>
20 
21 #include <atomic>
22 #include <vector>
23 #include <memory>
24 using namespace std;
25 
26 namespace neat {
27 
28 struct Species {
29  vector<int> genotypes;
30  Genotype origin;
31 };
32 
33 class Population : public darwin::Population {
34  public:
35  size_t size() const override { return genotypes_.size(); }
36 
37  int generation() const override { return generation_; }
38 
39  Genotype* genotype(size_t index) override { return &genotypes_[index]; }
40  const Genotype* genotype(size_t index) const override { return &genotypes_[index]; }
41 
42  vector<size_t> rankingIndex() const override;
43  void createPrimordialGeneration(int population_size) override;
44  void createNextGeneration() override;
45 
46  private:
47  void classicSelection();
48  void neatSelection();
49 
50  // separate the genomes into species
51  void speciate();
52  void assignSpecies(int index);
53 
54  private:
55  vector<Genotype> genotypes_;
56  vector<Species> species_;
57  atomic<Innovation> next_innovation_ = 0;
58  int generation_ = 0;
59 };
60 
61 } // namespace neat
virtual size_t size() const =0
The fixed number of genotypes in the population.
A population implementation encapsulates the fixed-size set of genotypes, together with the rules for...
Definition: darwin.h:161
STL namespace.
NeuroEvolution of Augmenting Topologies (NEAT)
Definition: brain.cpp:20