pub struct Brent { /* private fields */ }Expand description
Brent’s method for bracketed root-finding.
Trait Implementations§
Source§impl<F> FindBracketedRoot<F> for Brentwhere
F: Callback,
impl<F> FindBracketedRoot<F> for Brentwhere
F: Callback,
Source§fn find_in_bracket(
&self,
f: F,
bracket: (f64, f64),
) -> Result<f64, RootFinderError>
fn find_in_bracket( &self, f: F, bracket: (f64, f64), ) -> Result<f64, RootFinderError>
Finds a root of
f within the given bracket.impl Copy for Brent
impl StructuralPartialEq for Brent
Auto Trait Implementations§
impl Freeze for Brent
impl RefUnwindSafe for Brent
impl Send for Brent
impl Sync for Brent
impl Unpin for Brent
impl UnsafeUnpin for Brent
impl UnwindSafe for Brent
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