17 #include "test_population.h" 19 #include <core/darwin.h> 30 explicit Genotype(
const Population* population);
32 unique_ptr<darwin::Brain> grow()
const override;
33 unique_ptr<darwin::Genotype> clone()
const override;
35 json save()
const override;
36 void load(
const json& json_obj)
override;
37 void reset()
override;
39 auto population()
const {
return population_; }
40 auto seed()
const {
return seed_; }
43 const Population* population_ =
nullptr;
44 random_device::result_type seed_ = 0;
void reset(std::vector< T > &v)
Reset the values in a vector to 0.
Definition: ann_dynamic.h:32
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