Lines Matching refs:Approx
431 * `Approx` is subtly different and hopefully behaves more as users would expect
432 * `Approx::scale` defaults to `0.0`
433 …* `Approx::epsilon` no longer applies to the larger of the two compared values, but only to the `A…
434 * `INFINITY == Approx(INFINITY)` returns true
520 * `Approx::Margin` is now inclusive (#952)
522 * This means that `REQUIRE( 0.25f == Approx( 0.0f ).margin( 0.25f ) )` passes, instead of fails
593 * All of `Approx`'s member functions now accept strong typedefs in C++11 mode (#888)
594 * Previously `Approx::scale`, `Approx::epsilon`, `Approx::margin` and `Approx::operator()` didn't.
631 * When Catch is compiled using C++11, `Approx` is now constructible with anything that can be expli…
716 * `Approx` now supports an optional margin of absolute error
779 * Approx can be used to compare values against strong typedefs (available in C++11 mode only).
824 * Approx now supports `>=` and `<=`