| 15 | // Returns the next representable floating point value without using conversion to integer. |
| 16 | template <typename Float> |
| 17 | Float NextFloat(Float const x, int dir = 1) |
| 18 | { |
| 19 | return boost::math::float_advance(x, dir); |
| 20 | } |
| 21 | |
| 22 | template <typename Float> |
| 23 | void TestMaxULPs() |
no outgoing calls
no test coverage detected