2023-04-01 13:50:52 -07:00
|
|
|
mod rationalq;
|
|
|
|
|
|
|
|
pub mod quantity;
|
|
|
|
pub use crate::quantity::quantity::Quantity;
|
|
|
|
|
2023-04-02 08:27:21 -07:00
|
|
|
const FLOAT_PRECISION: u32 = 1024;
|
2023-04-01 18:26:30 -07:00
|
|
|
const PRINT_LEN: usize = 5; // How many significant digits we will show in output
|