curve 0.11.0

The package provides curves.
Documentation
1
2
3
4
5
/// A goodness of fit.
pub trait Goodness<T> {
    /// Check if the candidate is admissible.
    fn admit(&mut self, candidate: &T, original: &T) -> Option<bool>;
}