aboutsummaryrefslogtreecommitdiff
path: root/include/HyperNeat/NoveltyMetricPrms.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/HyperNeat/NoveltyMetricPrms.hpp')
-rw-r--r--include/HyperNeat/NoveltyMetricPrms.hpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/include/HyperNeat/NoveltyMetricPrms.hpp b/include/HyperNeat/NoveltyMetricPrms.hpp
new file mode 100644
index 0000000..305d075
--- /dev/null
+++ b/include/HyperNeat/NoveltyMetricPrms.hpp
@@ -0,0 +1,20 @@
+#ifndef __HYPERNEAT_NOVELTY_METRIC_PRMS_HPP__
+#define __HYPERNEAT_NOVELTY_METRIC_PRMS_HPP__
+
+#include <Hyperneat/Utils/Size.hpp>
+
+namespace hyperneat
+{
+ class Population;
+
+ class NoveltyMetricPrms
+ {
+ public:
+ double _noveltyThreshold = 10.0;
+ size_t _referenceOrganisms = 15;
+ size_t _characterizationSize = 3;
+ bool _criteriaReachedByDefault = true;
+ };
+}
+
+#endif