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