Struct rkf45::AdaptiveOdeSolverOptions
source · pub struct AdaptiveOdeSolverOptions {
pub t_initial: f64,
pub t_final: f64,
pub dt_initial: f64,
pub error_control: ErrorControlOptions,
}
Expand description
Options to configure adaptive time-stepping.
Fields§
§t_initial: f64
Initial time for the solution.
t_final: f64
Final time for the solution.
dt_initial: f64
Length of first attempted time step.
error_control: ErrorControlOptions
Parameters that determine the error bounds used to accept or reject time steps.