//! Ordinary Differential Equations (ODE) module.
//!
//! Provides traits and types for defining and solving ODE initial value problems.
//! See [`ODE`] and [`ODEProblem`] for usage.
pub use OrdinaryNumericalMethod;
pub use ODE;
pub use ODEProblem;
pub use solve_ode;