pub struct MultistepMethod {
pub h: f64,
pub k: usize,
}Expand description
Adams-Bashforth / Adams-Moulton multistep method (2-step as reference).
Fields§
§h: f64Step size h
k: usizeNumber of steps k (currently supports 2)
Implementations§
Auto Trait Implementations§
impl Freeze for MultistepMethod
impl RefUnwindSafe for MultistepMethod
impl Send for MultistepMethod
impl Sync for MultistepMethod
impl Unpin for MultistepMethod
impl UnsafeUnpin for MultistepMethod
impl UnwindSafe for MultistepMethod
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