コンテンツにスキップ

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.

Completed(Y)

Integration completed normally (reached t_end).


state: Y t: f64 reason: B

Integration was terminated early by the event checker.


Error(IntegrationError)

Integration was aborted due to a numerical error.