1 2 3 4 5 6 7 8 9 10 11 12
//! Standard PDE Solvers //! //! This module contains solvers for commonly-encountered PDEs in mathematics and physics. pub mod heat; pub mod laplace; pub mod wave; // Re-exports pub use heat::*; pub use laplace::*; pub use wave::*;