pub struct NewtonRaphsonSolver {
pub tol: f64,
pub max_iter: u32,
}Expand description
Newton–Raphson solver that also reports whether convergence was achieved.
Fields§
§tol: f64§max_iter: u32Implementations§
Auto Trait Implementations§
impl Freeze for NewtonRaphsonSolver
impl RefUnwindSafe for NewtonRaphsonSolver
impl Send for NewtonRaphsonSolver
impl Sync for NewtonRaphsonSolver
impl Unpin for NewtonRaphsonSolver
impl UnsafeUnpin for NewtonRaphsonSolver
impl UnwindSafe for NewtonRaphsonSolver
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