IntegrationError
このコンテンツはまだ日本語訳がありません。
Defined in: error.rs:23
pub enum IntegrationError { NonFiniteState { t: f64 }, StepSizeTooSmall { t: f64, dt: f64 },}Reason the integration was stopped by the integrator itself.
Variants
Section titled “Variants”NonFiniteState
Section titled “NonFiniteState”t: f64
A NaN or Inf was detected in the state after a step.
StepSizeTooSmall
Section titled “StepSizeTooSmall”t: f64 dt: f64
Step size became smaller than minimum threshold.