Darwin Neuroevolution Framework
population.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 "cgp.h"
18 #include "genotype.h"
19 
20 #include <core/selection_algorithm.h>
21 #include <core/darwin.h>
22 #include <core/properties.h>
23 
24 #include <memory>
25 #include <vector>
26 using namespace std;
27 
28 namespace cgp {
29 
30 class Population : public darwin::Population {
31  class GenotypeFactory;
32  class GenerationFactory;
33 
34  public:
35  Population(const core::PropertySet& config, const darwin::Domain& domain);
36 
37  size_t size() const override { return genotypes_.size(); }
38  int generation() const override { return generation_; }
39 
40  Genotype* genotype(size_t index) override { return &genotypes_[index]; }
41  const Genotype* genotype(size_t index) const override { return &genotypes_[index]; }
42 
43  vector<size_t> rankingIndex() const override;
44  void createPrimordialGeneration(int population_size) override;
45  void createNextGeneration() override;
46 
47  const Config& config() const { return config_; }
48  const darwin::Domain* domain() const { return domain_; }
49 
50  const vector<FunctionId>& availableFunctions() const { return available_functions_; }
51 
52  private:
53  void setupAvailableFunctions();
54 
55  private:
56  Config config_;
57  const darwin::Domain* domain_ = nullptr;
58  unique_ptr<selection::SelectionAlgorithm> selection_algorithm_;
59 
60  vector<Genotype> genotypes_;
61  int generation_ = 0;
62 
63  vector<FunctionId> available_functions_;
64 };
65 
66 } // namespace cgp
A population implementation encapsulates the fixed-size set of genotypes, together with the rules for...
Definition: darwin.h:161
Cartesian Genetic Programming (CGP)
Definition: brain.cpp:25
STL namespace.
The foundation for data structures supporting runtime reflection.
Definition: properties.h:388
Interface to a domain implementation.
Definition: darwin.h:229