This crate is (afaik) the fastest implementation of the explicit Runge-Kutta method of order 5(4) with the Dormand-Prince pair of formulas. It is identical to scipy's implementation. This crate can be used to solve ordinary differential equations.
I do not use this crate anymore and I do not intend to increase the project scope, but I will address/fix every issue reported. IMHO this is a small but very well written and documented crate.
Example:
let ode = HarmonicOde ;
let res = solve_ivp;
let numerical_sol = match res ;
let theoretical_sol = ;
assert!;
assert!;