| 29 | |
| 30 | LOCAL_TEST_FUNCTOR1(powScalarBaseAD, pow(2.1, x)) |
| 31 | TEST(ExpressionsMath, powScalarBaseAD) |
| 32 | { |
| 33 | mathTest_all(0.3, std::pow(2.1, 0.3), std::log(2.1) * std::pow(2.1, 0.3), |
| 34 | std::pow(2.1, 0.3) * std::log(2.1) * std::log(2.1), powScalarBaseAD); |
| 35 | } |
| 36 | |
| 37 | LOCAL_TEST_FUNCTOR1(powScalarBaseExpr, pow(2.1, 2.3 * x)) |
| 38 | TEST(ExpressionsMath, powScalarBaseExpr) |
nothing calls this directly
no test coverage detected