aboutsummaryrefslogtreecommitdiff
path: root/include/HyperNeat/Utils/ValuePoint.hpp
blob: b9e15ab4fa55dafcd44206431d1e73732c8522ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef __HYPERNEAT_VALUEPOINT_HPP__
#define __HYPERNEAT_VALUEPOINT_HPP__

#include <HyperNeat/Utils/Point.hpp>

namespace hyperneat
{
    class ValuePoint : public Point
    {
    public:
        ValuePoint() = default;
        ValuePoint(double x, double y, double value, double segment);

        double _value   = 0.0;
        double _segment = 0.0;
    };
}

#endif