pub type Ode23 = BogackiShampine;
Aliased Type§
struct Ode23 {
pub abs_tol: f64,
pub rel_tol: f64,
pub dt_beta: f64,
pub dt_expn: f64,
pub dt_init: f64,
}
Fields§
§abs_tol: f64
Absolute error tolerance.
rel_tol: f64
Relative error tolerance.
dt_beta: f64
Multiplier for adaptive time steps.
dt_expn: f64
Exponent for adaptive time steps.
dt_init: f64
Initial relative time step.