pub trait OdeSystem { // Required method fn derivative(&self, t: f64, y: &[f64]) -> Vec<f64>; }
ODE system: dy/dt = f(t, y).
Implementations define the right-hand side of the ODE system.
Evaluate the derivative at (t, y).
(t, y)