pub struct BisectionSolver {
pub tol: f64,
pub max_iter: u32,
}Expand description
Bisection root-finder with configurable tolerance and iteration limit.
Fields§
§tol: f64§max_iter: u32Implementations§
Auto Trait Implementations§
impl Freeze for BisectionSolver
impl RefUnwindSafe for BisectionSolver
impl Send for BisectionSolver
impl Sync for BisectionSolver
impl Unpin for BisectionSolver
impl UnsafeUnpin for BisectionSolver
impl UnwindSafe for BisectionSolver
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