aprox_eq
Crate for determining aproximate equality, particularly between floating point numbers. This library is intended mostly as a quick to import and derivable way of mitigating floating point error. The aprox_eq folder has this crate, the float_err folder contains a binary application for calculating floating point error, its pretty simple but informs the 1e-12 for f64 and 1e-6 for f32 constant values used for determining aproximate equality. A google sheet with this data can be found here and pdf exports of its pages are in the root of the repo.
use ;