Struct float_cmp::F32Margin [−][src]
This type defines a margin within two f32s might be considered equal
and is intended as the associated type for the ApproxEq
trait.
Two methods are used to determine approximate equality.
First an epsilon method is used, considering them approximately equal if they
differ by <= epsilon
. This will only succeed for very small numbers.
Note that it may succeed even if the parameters are of differing signs straddling
zero.
The second method considers how many ULPs (units of least precision, units in
the last place, which is the integer number of floating point representations
that the parameters are separated by) different the parameters are and considers
them approximately equal if this is <= ulps
. For large floating point numbers,
an ULP can be a rather large gap, but this kind of comparison is necessary
because floating point operations must round to the nearest representable value
and so larger floating point values accumulate larger errors.
Fields
epsilon: f32
ulps: i32
Implementations
impl F32Margin
[src]
impl F32Margin
[src]