| 29 | |
| 30 | LOCAL_TEST_FUNCTOR2(nextafterADAD, nextafter(x1, x2)) |
| 31 | TEST(ExpressionsMath, nextafterADAD) |
| 32 | { |
| 33 | mathTest2_all(0.1, 0.2, std::nextafter(0.1, 0.2), 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, nextafterADAD); |
| 34 | mathTest2_all(-0.1, -0.2, std::nextafter(-0.1, -0.2), 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, |
| 35 | nextafterADAD); |
| 36 | } |
| 37 | |
| 38 | LOCAL_TEST_FUNCTOR2(nextafterADExpr, nextafter(x1, 2.3 * x2)) |
| 39 | TEST(ExpressionsMath, nextafterADExpr) |
nothing calls this directly
no test coverage detected