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 "cgp.h"
18 #include "genotype.h"
19 #include "population.h"
20 #include "functions.h"
21 
22 #include <core/darwin.h>
23 
24 #include <array>
25 #include <vector>
26 using namespace std;
27 
28 namespace cgp {
29 
30 class Brain : public darwin::Brain {
31  struct Instruction {
32  FunctionId function;
33  array<IndexType, kMaxFunctionArity> sources;
34  };
35 
36  public:
37  explicit Brain(const Genotype* genotype);
38 
39  void setInput(int index, float value) override;
40  float output(int index) const override;
41  void think() override;
42  void resetState() override;
43 
44  private:
45  IndexType dfsNodeEval(IndexType node_index, vector<IndexType>& nodes_map);
46 
47  private:
48  const Genotype* genotype_ = nullptr;
49 
50  vector<Instruction> instructions_;
51  vector<float> registers_;
52  vector<float> memory_;
53  vector<int> outputs_map_;
54 };
55 
56 } // namespace cgp
The interface to the Phenotype
Definition: darwin.h:69
Cartesian Genetic Programming (CGP)
Definition: brain.cpp:25
STL namespace.