19 #include <core/properties.h> 20 #include <core/roulette_selection.h> 21 #include <core/cgp_islands_selection.h> 22 #include <core/truncation_selection.h> 28 enum class SelectionAlgorithmType {
34 inline auto customStringify(core::TypeTag<SelectionAlgorithmType>) {
36 { SelectionAlgorithmType::RouletteWheel,
"roulette_wheel" },
37 { SelectionAlgorithmType::CgpIslands,
"cgp_islands" },
38 { SelectionAlgorithmType::Truncation,
"truncation" },
43 struct SelectionAlgorithmVariant
45 CASE(SelectionAlgorithmType::RouletteWheel,
48 CASE(SelectionAlgorithmType::CgpIslands,
51 CASE(SelectionAlgorithmType::Truncation,
57 PROPERTY(rows,
int, 2,
"Number of node rows");
58 PROPERTY(columns,
int, 8,
"Number of node columns");
59 PROPERTY(levels_back,
int, 4,
"Levels-back");
61 PROPERTY(outputs_use_levels_back,
64 "Use levels-back value for the output genes?");
66 PROPERTY(fn_basic_constants,
bool,
true,
"0, 1, 2");
67 PROPERTY(fn_transcendental_constants,
bool,
true,
"pi, e");
68 PROPERTY(fn_basic_arithmetic,
bool,
true,
"identity, +, -, *, /, negate");
69 PROPERTY(fn_extra_arithmetic,
bool,
true,
"fmod, reminder, ceil, floor, fdim");
70 PROPERTY(fn_common_math,
bool,
true,
"abs, avg, min, max, square");
71 PROPERTY(fn_extra_math,
bool,
true,
"log, log2, sqrt, power, exp, exp2");
72 PROPERTY(fn_trigonometric,
bool,
true,
"sin, cos, tan, asin, acos, atan");
73 PROPERTY(fn_hyperbolic,
bool,
true,
"sinh, cosh, tanh");
74 PROPERTY(fn_ann_activation,
bool,
true,
"All of Darwin's activation functions");
75 PROPERTY(fn_comparisons,
bool,
true,
"eq, ne, gt, ge, lt, le");
76 PROPERTY(fn_logic_gates,
bool,
true,
"and, or, not, xor");
77 PROPERTY(fn_conditional,
bool,
true,
"if/else_zero");
78 PROPERTY(fn_stateful,
bool,
true,
"functions maintaining an internal state");
80 PROPERTY(evolvable_constants_count,
int, 2,
"The number of evolvable constants");
81 PROPERTY(evolvable_constants_range,
float, 10,
"Initial connection values range");
82 PROPERTY(evolvable_constants_resolution,
float, 0.01f,
"Connection values resolution");
83 PROPERTY(evolvable_constants_std_dev,
86 "Mutation standard deviation, used for evolvable constants");
88 VARIANT(mutation_strategy,
90 MutationStrategy::FixedCount,
93 VARIANT(selection_algorithm,
94 SelectionAlgorithmVariant,
95 SelectionAlgorithmType::Truncation,
96 "Selection algorithm");
Cartesian Genetic Programming (CGP)
Definition: brain.cpp:25
Roulette wheel selection configuration.
Definition: roulette_selection.h:23
The foundation for data structures supporting runtime reflection.
Definition: properties.h:388
Configuration for CgpIslandsSelection.
Definition: cgp_islands_selection.h:26
A variant type (tagged-union) with PropertySet fields.
Definition: properties.h:194
Handles types with a fixed, known set of values (enumerations for example)
Definition: stringify.h:85
Truncation selection configuration.
Definition: truncation_selection.h:26
const Stringify< T > * stringify()
Returns the stringifier for type T.
Definition: stringify.h:166