aboutsummaryrefslogtreecommitdiff
path: root/include/HyperNeat/Utils/ValueMap.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/HyperNeat/Utils/ValueMap.hpp')
-rw-r--r--include/HyperNeat/Utils/ValueMap.hpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/HyperNeat/Utils/ValueMap.hpp b/include/HyperNeat/Utils/ValueMap.hpp
new file mode 100644
index 0000000..c2910b5
--- /dev/null
+++ b/include/HyperNeat/Utils/ValueMap.hpp
@@ -0,0 +1,12 @@
+#ifndef __HYPERNEAT_VALUEMAP_HPP__
+#define __HYPERNEAT_VALUEMAP_HPP__
+
+#include <HyperNeat/Utils/Vector.hpp>
+#include <HyperNeat/Utils/ValuePoint.hpp>
+
+namespace hyperneat
+{
+ using ValueMap = Vector<ValuePoint>;
+}
+
+#endif