pub trait ODEIntegrator {
// Required method
fn step<P: ODEProblem>(
&self,
problem: &P,
t: f64,
y: &mut [f64],
dt: f64,
) -> Result<f64>;
}
Expand description
Trait for ODE integrators.
Implement this trait to define your own ODE integrator.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.