Darwin Neuroevolution Framework
genotype.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 
19 #include <core/darwin.h>
20 
21 #include <random>
22 using namespace std;
23 
24 namespace test_population {
25 
26 class Population;
27 
28 class Genotype : public darwin::Genotype {
29  public:
30  explicit Genotype(const Population* population);
31 
32  unique_ptr<darwin::Brain> grow() const override;
33  unique_ptr<darwin::Genotype> clone() const override;
34 
35  json save() const override;
36  void load(const json& json_obj) override;
37  void reset() override;
38 
39  auto population() const { return population_; }
40  auto seed() const { return seed_; }
41 
42  private:
43  const Population* population_ = nullptr;
44  random_device::result_type seed_ = 0;
45 };
46 
47 } // namespace test_population
void reset(std::vector< T > &v)
Reset the values in a vector to 0.
Definition: ann_dynamic.h:32
STL namespace.
A dummy population implementation, used for testing and/or as a baseline.
Definition: brain.cpp:22
The interface to the population-specific "genetic material", the Genotype
Definition: darwin.h:126