aboutsummaryrefslogtreecommitdiff
path: root/src/Utils/ValuePoint.cpp
blob: d9cdc64f7c4aae3750e894b664c157330dfe6bbd (plain)
1
2
3
4
5
6
7
#include <HyperNeat/Utils/ValuePoint.hpp>

using namespace hyperneat;

ValuePoint::ValuePoint(double x, double y, double value, double segment)
    : Point(x, y), _value(value), _segment(segment)
{}