pub struct Rk45Config {
pub rtol: f64,
pub atol: f64,
pub h_init: f64,
pub h_min: f64,
pub h_max: f64,
pub max_steps: usize,
}Expand description
RK45 solver configuration.
Fields§
§rtol: f64Relative tolerance for adaptive step size.
atol: f64Absolute tolerance.
h_init: f64Initial step size.
h_min: f64Minimum step size.
h_max: f64Maximum step size.
max_steps: usizeMaximum number of steps.
Trait Implementations§
Source§impl Clone for Rk45Config
impl Clone for Rk45Config
Source§fn clone(&self) -> Rk45Config
fn clone(&self) -> Rk45Config
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Rk45Config
impl Debug for Rk45Config
Auto Trait Implementations§
impl Freeze for Rk45Config
impl RefUnwindSafe for Rk45Config
impl Send for Rk45Config
impl Sync for Rk45Config
impl Unpin for Rk45Config
impl UnwindSafe for Rk45Config
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