Step

Type Alias Step 

Source
pub type Step<R, C, D, E> = Result<(R, BVector<C, D>), IVPStatus<E>>;
Expand description

A type alias for a Result of a IVPStepper step Ok is a tuple of the time and solution at that time Err is an IVPError

Aliased Type§

pub enum Step<R, C, D, E> {
    Ok((R, Matrix<C, D, Const<1>, <DefaultAllocator as Allocator<C, D>>::Buffer>)),
    Err(IVPStatus<E>),
}

Variants§

§1.0.0

Ok((R, Matrix<C, D, Const<1>, <DefaultAllocator as Allocator<C, D>>::Buffer>))

Contains the success value

§1.0.0

Err(IVPStatus<E>)

Contains the error value