Documentation
1
2
3
4
5
6
7
8
//! this is same as src/math/mod.rs
//! either src/math/mod.rs or src/math.rs is allowed.
//! see also src/language/mod.rs

pub mod algebra;
pub mod gcd;
pub mod number_theory;
pub use number_theory::ntt;