Path

Type Alias Path 

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

A type alias for collecting all Steps into a Result of a Vec of the solution ((time, system state))

Aliased Type§

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

Variants§

§1.0.0

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

Contains the success value

§1.0.0

Err(E)

Contains the error value