rival3 0.1.0

Real Computation via Interval Arithmetic
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Interval expression evaluation pipeline.

pub(crate) mod machine;
pub(crate) mod profile;
pub(crate) mod run;

pub(crate) mod ast {
    pub use super::ops::Expr;
}

pub(crate) mod adjust;
pub(crate) mod execute;
pub(crate) mod instructions;
pub(crate) mod macros;
pub(crate) mod ops;
pub(crate) mod tricks;