Skip to content

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.

t: f64

A NaN or Inf was detected in the state after a step.


t: f64 dt: f64

Step size became smaller than minimum threshold.