MCPcopy Create free account
hub / github.com/apache/arrow / CheckNotWithinUlpSingle

Function CheckNotWithinUlpSingle

cpp/src/arrow/util/ulp_distance_test.cc:41–44  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

39
40template <typename Float>
41void CheckNotWithinUlpSingle(Float x, Float y, int n_ulp) {
42 ARROW_SCOPED_TRACE("x = ", x, ", y = ", y, ", n_ulp = ", n_ulp);
43 ASSERT_FALSE(WithinUlp(x, y, n_ulp));
44}
45
46template <typename Float>
47void CheckWithinUlp(Float x, Float y, int n_ulp) {

Callers 1

CheckNotWithinUlpFunction · 0.85

Calls 1

WithinUlpFunction · 0.85

Tested by

no test coverage detected