pub const F64_TOLERANCE: f64 = 0.000000014901161193847656_f64;
Expand description
The default tolerance used for f64
. Equivalent to f64::EPSILON.sqrt()
(or 0.000000014901161193847656_f64
), as we assume that around half of the
precision bits of any arbitrary value have been rounded away.