19 #include <core/darwin.h> 35 enum class State { WaitingForInputs, OutputsReady };
38 explicit Brain(
const Genotype* genotype);
41 void setInput(
int index,
float value)
override;
42 float output(
int index)
const override;
43 void think()
override;
44 void resetState()
override;
47 void resetUsedFlags();
48 void checkInputsSet();
49 void checkOutputsConsumed();
52 const Genotype* genotype_ =
nullptr;
53 default_random_engine rnd_;
55 State state_ = State::WaitingForInputs;
58 vector<float> inputs_;
59 vector<float> outputs_;
62 mutable vector<char> used_inputs_;
63 mutable vector<char> used_outputs_;
The interface to the Phenotype
Definition: darwin.h:69
A dummy population implementation, used for testing and/or as a baseline.
Definition: brain.cpp:22