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>),
}