//! Stochastic Differential Equations (SDE) module.
//!
//! Provides traits and types for defining and solving SDE initial value problems.
//! See [`SDE`] and [`SDEProblem`] for usage.
pub use StochasticNumericalMethod;
pub use SDEProblem;
pub use SDE;
pub use solve_sde;