| 12 | #include <vector> |
| 13 | |
| 14 | static bool almost_equal(const double a, const double b, const double atol) { |
| 15 | return fabs(a - b) < atol; |
| 16 | } |
| 17 | |
| 18 | constexpr int64_t ne_datapoint = 2; |
| 19 | constexpr int64_t ne_label = 1; |
no outgoing calls
no test coverage detected