IntegrationOutcome
Defined in: error.rs:32
pub enum IntegrationOutcome\<Y: [OdeState](../../traits/odestate/), B\> { Completed(Y), Terminated { state: Y, t: f64, reason: B }, Error(IntegrationError),}Outcome of an integration with event detection.
Variants
Section titled “Variants”Completed
Section titled “Completed”Completed(Y)
Integration completed normally (reached t_end).
Terminated
Section titled “Terminated”state: Y t: f64 reason: B
Integration was terminated early by the event checker.
Error(IntegrationError)
Integration was aborted due to a numerical error.