//! Ordinary Differential Equations (ODE) module.
//!
//! Provides traits and types for defining and solving ODE initial and boundary value problems.
//! Use [`crate::ivp::IVP::ode`] for the high-level builder API.
pub use OrdinaryNumericalMethod;
pub use ODE;
pub use solve_bvp;
pub use solve_ode;