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

Function CheckNotWithinUlpSingle

cpp/src/arrow/testing/gtest_util_test.cc:190–193  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

188
189template <typename Float>
190void CheckNotWithinUlpSingle(Float x, Float y, int n_ulp) {
191 ARROW_SCOPED_TRACE("x = ", x, ", y = ", y, ", n_ulp = ", n_ulp);
192 ASSERT_FALSE(WithinUlp(x, y, n_ulp));
193}
194
195template <typename Float>
196void CheckWithinUlp(Float x, Float y, int n_ulp) {

Callers 1

CheckNotWithinUlpFunction · 0.85

Calls 1

WithinUlpFunction · 0.85

Tested by

no test coverage detected