19 #include "population.h" 20 #include "functions.h" 22 #include <core/darwin.h> 33 array<IndexType, kMaxFunctionArity> sources;
37 explicit Brain(
const Genotype* genotype);
39 void setInput(
int index,
float value)
override;
40 float output(
int index)
const override;
41 void think()
override;
42 void resetState()
override;
45 IndexType dfsNodeEval(IndexType node_index, vector<IndexType>& nodes_map);
48 const Genotype* genotype_ =
nullptr;
50 vector<Instruction> instructions_;
51 vector<float> registers_;
52 vector<float> memory_;
53 vector<int> outputs_map_;
The interface to the Phenotype
Definition: darwin.h:69
Cartesian Genetic Programming (CGP)
Definition: brain.cpp:25