dace 0.2.1

Rust wrapper of DACE, the Differential Algebra Computational Toolbox.
Documentation
1
2
3
4
5
6
/// Interval composed of a lower and an upper bound (f64).
#[derive(Copy, Clone, Debug)]
pub struct Interval {
    pub m_lb: f64,
    pub m_ub: f64,
}