Darwin Neuroevolution Framework
functions.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 <core/stringify.h>
18 
19 #include <cstdint>
20 using namespace std;
21 
22 namespace cgp {
23 
24 constexpr int kMaxFunctionArity = 2;
25 
26 enum FunctionId : int16_t {
27  #undef FN_DEF
28  #define FN_DEF(id, name, arity, category) id,
29  #include "functions_table.def"
30  LastEntry
31 };
32 
33 constexpr int kFunctionCount = static_cast<int>(FunctionId::LastEntry);
34 
35 inline auto customStringify(core::TypeTag<FunctionId>) {
37  #undef FN_DEF
38  #define FN_DEF(id, name, arity, category) { FunctionId::id, #name },
39  #include "functions_table.def"
40  };
41  return stringify;
42 }
43 
44 enum class FunctionCategory {
45  BasicConstant,
46  TranscendentalConstant,
47  BasicArithmetic,
48  ExtraArithmetic,
49  CommonMath,
50  ExtraMath,
51  Trigonometric,
52  Hyperbolic,
53  AnnActivation,
54  Comparisons,
55  LogicGates,
56  Conditional,
57  Stateful,
58 };
59 
60 struct FunctionDef {
61  const FunctionId id;
62  const char* const name;
63  const int arity;
64  const FunctionCategory category;
65 };
66 
67 constexpr FunctionDef kFunctionDef[kFunctionCount] = {
68  #undef FN_DEF
69  #define FN_DEF(id, name, arity, category) \
70  { id, #name, (arity), FunctionCategory::category },
71  #include "functions_table.def"
72 };
73 
74 } // namespace cgp
Cartesian Genetic Programming (CGP)
Definition: brain.cpp:25
STL namespace.
Handles types with a fixed, known set of values (enumerations for example)
Definition: stringify.h:85
const Stringify< T > * stringify()
Returns the stringifier for type T.
Definition: stringify.h:166