[−][src]Macro float_eq::assert_float_eq
Asserts that two floating point expressions are equal to each other (using float_eq!).
abs <= max_diffis an absolute epsilon comparison.rel <= max_diffis a relative epsilon comparison.ulps <= max_diffis an ULPs comparison.
On panic, this macro will print the values of the expressions with their debug
representations, with additional information from the comparison operations
(using FloatEq and FloatDiff).
Like assert!, this macro has a second form, where a custom panic message can
be provided.
Examples
let a: f32 = 4.; let b: f32 = 4.0000025; assert_float_eq!(a, 3.9999998, rel <= f32::EPSILON); assert_float_eq!(a - b, 0., abs <= 0.00001, rel <= f32::EPSILON); assert_float_eq!(a - b, 0., abs <= 0.00001, ulps <= 10); assert_float_eq!(a - b, 0., abs <= 0.00001, ulps <= 10, "Checking that {} == {}", a, b);