conspire 0.7.2

The Rust interface to conspire.
Documentation
1
2
3
4
5
6
use crate::math::Scalar;

/// Types that can report a finite-difference comparison error against themselves.
pub trait FiniteDifference {
    fn error_fd(&self, comparator: &Self, epsilon: Scalar) -> Option<(bool, usize)>;
}