pub struct ODEResult<F: IntegrateFloat> {
pub t: Vec<F>,
pub y: Vec<Array1<F>>,
pub success: bool,
pub message: Option<String>,
pub n_eval: usize,
pub n_steps: usize,
pub n_accepted: usize,
pub n_rejected: usize,
pub n_lu: usize,
pub n_jac: usize,
pub method: ODEMethod,
}Expand description
Result of ODE integration
Fields§
§t: Vec<F>Time points
y: Vec<Array1<F>>Solution values at time points
success: boolWhether the integration was successful
message: Option<String>Status message
n_eval: usizeNumber of function evaluations
n_steps: usizeNumber of steps taken
n_accepted: usizeNumber of accepted steps
n_rejected: usizeNumber of rejected steps
n_lu: usizeNumber of LU decompositions
n_jac: usizeNumber of Jacobian evaluations
method: ODEMethodThe solver method used
Trait Implementations§
Auto Trait Implementations§
impl<F> Freeze for ODEResult<F>
impl<F> RefUnwindSafe for ODEResult<F>where
F: RefUnwindSafe,
impl<F> Send for ODEResult<F>where
F: Send,
impl<F> Sync for ODEResult<F>where
F: Sync,
impl<F> Unpin for ODEResult<F>where
F: Unpin,
impl<F> UnwindSafe for ODEResult<F>where
F: UnwindSafe + RefUnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more