Darwin Neuroevolution Framework
cgp.h
1 // Copyright 2019 The Darwin Neuroevolution Framework Authors.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 #pragma once
16 
17 #include "genotype.h"
18 
19 #include <core/properties.h>
20 #include <core/roulette_selection.h>
21 #include <core/cgp_islands_selection.h>
22 #include <core/truncation_selection.h>
23 
24 namespace cgp {
25 
26 void init();
27 
28 enum class SelectionAlgorithmType {
29  RouletteWheel,
30  CgpIslands,
31  Truncation,
32 };
33 
34 inline auto customStringify(core::TypeTag<SelectionAlgorithmType>) {
36  { SelectionAlgorithmType::RouletteWheel, "roulette_wheel" },
37  { SelectionAlgorithmType::CgpIslands, "cgp_islands" },
38  { SelectionAlgorithmType::Truncation, "truncation" },
39  };
40  return stringify;
41 }
42 
43 struct SelectionAlgorithmVariant
44  : public core::PropertySetVariant<SelectionAlgorithmType> {
45  CASE(SelectionAlgorithmType::RouletteWheel,
46  roulette_wheel,
48  CASE(SelectionAlgorithmType::CgpIslands,
49  cgp_islands,
51  CASE(SelectionAlgorithmType::Truncation,
52  truncation,
54 };
55 
56 struct Config : public core::PropertySet {
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");
60 
61  PROPERTY(outputs_use_levels_back,
62  bool,
63  false,
64  "Use levels-back value for the output genes?");
65 
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");
79 
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,
84  float,
85  2.0f,
86  "Mutation standard deviation, used for evolvable constants");
87 
88  VARIANT(mutation_strategy,
89  MutationVariant,
90  MutationStrategy::FixedCount,
91  "Mutation strategy");
92 
93  VARIANT(selection_algorithm,
94  SelectionAlgorithmVariant,
95  SelectionAlgorithmType::Truncation,
96  "Selection algorithm");
97 };
98 
99 } // namespace cgp
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