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

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

Implementations

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_in_place<D>(
    &mut self,
    start: &mut S,
    diff_eq: D,
    step_size: StepSize
) where
    D: Fn(&S) -> S::Derivative
[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> RefUnwindSafe for DPIntegrator<S> where
    <S as State>::Derivative: RefUnwindSafe

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

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

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

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

Blanket Implementations

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

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

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

type Error = Infallible

The type returned in the event of a conversion error.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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

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

The type returned in the event of a conversion error.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.