aboutsummaryrefslogtreecommitdiff
path: root/include/HyperNeat/Innovation.hpp
diff options
context:
space:
mode:
authorPaul Oliver <contact@pauloliver.dev>2024-02-29 19:04:34 +0100
committerPaul Oliver <contact@pauloliver.dev>2024-02-29 19:16:14 +0100
commite6ab4a8ed100d5d5b7611c74cf3ccd556f1f1d71 (patch)
tree129cf13c2f9b3eae54402300db4570815789a02a /include/HyperNeat/Innovation.hpp
Initial commitHEADmaster
Diffstat (limited to 'include/HyperNeat/Innovation.hpp')
-rw-r--r--include/HyperNeat/Innovation.hpp25
1 files changed, 25 insertions, 0 deletions
diff --git a/include/HyperNeat/Innovation.hpp b/include/HyperNeat/Innovation.hpp
new file mode 100644
index 0000000..ac618e5
--- /dev/null
+++ b/include/HyperNeat/Innovation.hpp
@@ -0,0 +1,25 @@
+#ifndef __HYPERNEAT_INNOVATION_HPP__
+#define __HYPERNEAT_INNOVATION_HPP__
+
+#include <Hyperneat/Utils/Size.hpp>
+#include <Hyperneat/Utils/NodeTypes.hpp>
+
+namespace hyperneat
+{
+ class Innovation
+ {
+ public:
+ Innovation() = default;
+ Innovation(size_t number, size_t source, size_t target, double depth, NodeType nodeType);
+
+ bool operator== (const Innovation& other) const;
+
+ size_t _number = 0;
+ size_t _source = 0;
+ size_t _target = 0;
+ double _depth = 0.0;
+ NodeType _nodeType = NodeType::NULL_TYPE;
+ };
+}
+
+#endif