mathhook_core/calculus/pde/
standard.rs

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