Darwin Neuroevolution Framework
brain.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 "genotype.h"
18 
19 #include <core/darwin.h>
20 
21 #include <random>
22 #include <vector>
23 using namespace std;
24 
25 namespace test_population {
26 
27 class Brain : public darwin::Brain {
28  // model and check the expected usage pattern:
29  //
30  // for_each(episode_step):
31  // 1. for_each(input_index): setInput(input_index, value)
32  // 2. think()
33  // 3. for_each(ouput_index): output(output_index)
34  //
35  enum class State { WaitingForInputs, OutputsReady };
36 
37  public:
38  explicit Brain(const Genotype* genotype);
39  ~Brain();
40 
41  void setInput(int index, float value) override;
42  float output(int index) const override;
43  void think() override;
44  void resetState() override;
45 
46  private:
47  void resetUsedFlags();
48  void checkInputsSet();
49  void checkOutputsConsumed();
50 
51  private:
52  const Genotype* genotype_ = nullptr;
53  default_random_engine rnd_;
54 
55  State state_ = State::WaitingForInputs;
56 
57  // input & output values
58  vector<float> inputs_;
59  vector<float> outputs_;
60 
61  // make sure all the inputs and outputs are used
62  mutable vector<char> used_inputs_;
63  mutable vector<char> used_outputs_;
64 };
65 
66 } // namespace test_population
The interface to the Phenotype
Definition: darwin.h:69
STL namespace.
A dummy population implementation, used for testing and/or as a baseline.
Definition: brain.cpp:22