1 2 3 4 5 6 7
#![allow(clippy::module_name_repetitions)] pub mod compo; pub mod ortho; pub use compo::ChebyshevComposite; pub use ortho::Chebyshev; mod linalg; mod stencils;