differential-equations 0.6.0

A Rust library for solving differential equations.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! 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.

mod numerical_method;
mod ode;
mod solve_bvp;
mod solve_ivp;

pub use numerical_method::OrdinaryNumericalMethod;
pub use ode::ODE;
pub use solve_bvp::solve_bvp;
pub use solve_ivp::solve_ode;