pub type Ode45 = DormandPrince;Expand description
Alias for DormandPrince.
Aliased Type§
pub struct Ode45 {
pub abs_tol: f64,
pub rel_tol: f64,
pub dt_beta: f64,
pub dt_expn: f64,
pub dt_cut: f64,
pub dt_min: f64,
}Fields§
§abs_tol: f64Absolute error tolerance.
rel_tol: f64Relative error tolerance.
dt_beta: f64Multiplier for adaptive time steps.
dt_expn: f64Exponent for adaptive time steps.
dt_cut: f64Cut back factor for the time step.
dt_min: f64Minimum value for the time step.