rustfst 1.3.0

Library for constructing, combining, optimizing, and searching weighted finite-state transducers (FSTs).
Documentation
1
2
3
pub(crate) fn float_approx_equal(w1: f32, w2: f32, delta: f32) -> bool {
    (w1 - w2).abs() <= delta
}