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 "test_population.h"
18 #include "genotype.h"
19 
20 #include <core/darwin.h>
21 #include <core/properties.h>
22 
23 #include <vector>
24 using namespace std;
25 
26 namespace test_population {
27 
28 class Population : public darwin::Population {
29  public:
30  Population(const core::PropertySet& config, const darwin::Domain& domain);
31 
32  size_t size() const override { return genotypes_.size(); }
33  int generation() const override { return generation_; }
34 
35  Genotype* genotype(size_t index) override { return &genotypes_[index]; }
36  const Genotype* genotype(size_t index) const override { return &genotypes_[index]; }
37 
38  vector<size_t> rankingIndex() const override;
39  void createPrimordialGeneration(int population_size) override;
40  void createNextGeneration() override;
41 
42  const Config& config() const { return config_; }
43  const darwin::Domain* domain() const { return domain_; }
44 
45  private:
46  Config config_;
47  const darwin::Domain* domain_ = nullptr;
48 
49  vector<Genotype> genotypes_;
50  int generation_ = 0;
51 };
52 
53 } // namespace test_population
A population implementation encapsulates the fixed-size set of genotypes, together with the rules for...
Definition: darwin.h:161
STL namespace.
A dummy population implementation, used for testing and/or as a baseline.
Definition: brain.cpp:22
The foundation for data structures supporting runtime reflection.
Definition: properties.h:388
Interface to a domain implementation.
Definition: darwin.h:229