17 #include <core/properties.h> 24 PROPERTY(input_range,
float, 10.0f,
"The expected inputs range (checked at runtime)");
25 PROPERTY(output_range,
float, 2.0f,
"The range of (random) output values");
26 PROPERTY(random_outputs,
bool,
true,
"Generate random outputs");
27 PROPERTY(const_output,
float, 0.0f,
"Used for all outputs if random_outputs is false");
29 PROPERTY(elite_percentage,
float, 0.1f,
"Elite percentage");
30 PROPERTY(elite_min_fitness,
float, 0.0f,
"Elite minimum fitness");
A dummy population implementation, used for testing and/or as a baseline.
Definition: brain.cpp:22
The foundation for data structures supporting runtime reflection.
Definition: properties.h:388