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.
Auto Trait Implementations§
impl Freeze for AdaptiveOdeSolverOptions
impl RefUnwindSafe for AdaptiveOdeSolverOptions
impl Send for AdaptiveOdeSolverOptions
impl Sync for AdaptiveOdeSolverOptions
impl Unpin for AdaptiveOdeSolverOptions
impl UnwindSafe for AdaptiveOdeSolverOptions
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more