mirror of https://github.com/rm-dr/daisy
7 lines
196 B
Rust
7 lines
196 B
Rust
|
mod rationalq;
|
||
|
|
||
|
pub mod quantity;
|
||
|
pub use crate::quantity::quantity::Quantity;
|
||
|
|
||
|
const FLOAT_PRECISION: u32 = 2048;
|
||
|
const PRINT_LEN: usize = 4; // How many significant digits we will show in output
|