1 2 3 4 5 6 7 8 9 10 11 12
pub mod alg; pub mod unit; pub use unit::zz::*; pub use amalie_macros::{zz, vec_zz, matrix}; mod error; pub use error::*; pub use alg::*; #[cfg(feature = "pyo3")] pub mod py;