pub enum OdeMethod {
Euler,
Rk4,
Rk45,
ImplicitEuler,
Bdf2,
}Expand description
Integration method selector.
Variants§
Euler
Forward Euler (first order, explicit).
Rk4
Classical fourth-order Runge-Kutta.
Rk45
Dormand-Prince 4(5) with adaptive step-size control.
ImplicitEuler
Backward Euler (first order, implicit — for stiff systems).
Bdf2
Second-order backward differentiation formula (for stiff systems).
Trait Implementations§
impl Copy for OdeMethod
impl Eq for OdeMethod
impl StructuralPartialEq for OdeMethod
Auto Trait Implementations§
impl Freeze for OdeMethod
impl RefUnwindSafe for OdeMethod
impl Send for OdeMethod
impl Sync for OdeMethod
impl Unpin for OdeMethod
impl UnsafeUnpin for OdeMethod
impl UnwindSafe for OdeMethod
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