aboutsummaryrefslogtreecommitdiff
path: root/include/HyperNeat/NoveltyMetricPrms.hpp
blob: 305d075fc4be8069479506108c2fa9328f6780e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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