pub struct StiffSolver {
pub h: f64,
pub tol: f64,
}Expand description
Implicit solver for stiff ODEs using backward Euler (BDF-1) with Newton iteration.
Fields§
§h: f64Step size h
tol: f64Newton iteration tolerance
Implementations§
Auto Trait Implementations§
impl Freeze for StiffSolver
impl RefUnwindSafe for StiffSolver
impl Send for StiffSolver
impl Sync for StiffSolver
impl Unpin for StiffSolver
impl UnsafeUnpin for StiffSolver
impl UnwindSafe for StiffSolver
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