| 16 | #define TEST_LOG(...) printf(__VA_ARGS__) |
| 17 | |
| 18 | static bool almost_equal(const double a, const double b, const double atol) { |
| 19 | return fabs(a - b) < atol; |
| 20 | } |
| 21 | |
| 22 | constexpr int64_t ne_datapoint = 2; |
| 23 | constexpr int64_t ne_label = 1; |
no outgoing calls
no test coverage detected