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, }