[][src]Struct numeric_algs::integration::DPIntegrator

pub struct DPIntegrator<S: State> { /* fields omitted */ }

Methods

impl<S: State> DPIntegrator<S>[src]

pub fn new(
    default_step: f64,
    min_step: f64,
    max_step: f64,
    max_err: f64
) -> Self
[src]

pub fn reset_default_step(&mut self)[src]

pub fn reset(&mut self)[src]

Trait Implementations

impl<S: State> Integrator<S> for DPIntegrator<S>[src]

fn propagate<D>(&mut self, start: &S, diff_eq: D, step: StepSize) -> S where
    D: Fn(&S) -> S::Derivative
[src]

Auto Trait Implementations

impl<S> Send for DPIntegrator<S> where
    <S as State>::Derivative: Send

impl<S> Sync for DPIntegrator<S> where
    <S as State>::Derivative: Sync

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.