monte/
constants.rs

1//! Constants
2//! scipy constants https://docs.scipy.org/doc/scipy/reference/constants.html
3//! a shitload of constants https://physics.nist.gov/cuu/Constants/index.html
4
5pub mod double_precision;
6mod single_precision;
7
8// Re-export the single precision constants as default (f32)
9pub use single_precision::*;