| 39 | } |
| 40 | |
| 41 | void DataPoint::setData(const std::vector<double> &x, double y) |
| 42 | { |
| 43 | this->x = x; |
| 44 | this->y = y; |
| 45 | } |
| 46 | |
| 47 | bool DataPoint::operator<(const DataPoint &rhs) const |
| 48 | { |
nothing calls this directly
no outgoing calls
no test coverage detected