1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//! A Rust implementation of set-based interval arithmetic.
#![feature(asm)]
#![allow(clippy::float_cmp)]

pub use self::interval::{
    DecoratedInterval, Decoration, Interval, IntervalError, IntervalErrorKind,
};
pub use self::overlap::OverlappingState;

mod absmax;
mod arith;
mod basic;
mod boolean;
mod classify;
mod constants;
#[cfg(feature = "gmp")]
mod format;
mod integer;
mod interval;
mod numeric;
mod overlap;
#[cfg(feature = "gmp")]
mod parse;
mod set_op;
mod simd;