Struct numeric_algs::integration::RK4Integrator [−][src]
pub struct RK4Integrator { /* fields omitted */ }Implementations
impl RK4Integrator[src]
impl RK4Integrator[src]Trait Implementations
impl<S: State> Integrator<S> for RK4Integrator[src]
impl<S: State> Integrator<S> for RK4Integrator[src]fn propagate_in_place<D>(
&mut self,
start: &mut S,
diff_eq: D,
step_size: StepSize
) where
D: Fn(&S) -> S::Derivative, [src]
&mut self,
start: &mut S,
diff_eq: D,
step_size: StepSize
) where
D: Fn(&S) -> S::Derivative,
fn propagate<D>(&mut self, start: &S, diff_eq: D, step: StepSize) -> S where
D: Fn(&S) -> S::Derivative, [src]
D: Fn(&S) -> S::Derivative,