1
2
3
4
5
6
7
8
9
//! Differential equations & Numerical Analysis tools

//pub mod bdf;
//pub mod gauss_legendre;
pub mod interp;
//pub mod newton;
pub mod ode;
pub mod spline;
pub mod utils;