pub struct Brent<F> { /* private fields */ }
Expand description
Brent’s method
A root-finding algorithm combining the bisection method, the secant method and inverse quadratic interpolation. It has the reliability of bisection but it can be as quick as some of the less-reliable methods.
§References:
https://en.wikipedia.org/wiki/Brent%27s_method
Implementations§
Trait Implementations§
Source§impl<'de, F> Deserialize<'de> for Brent<F>where
F: Deserialize<'de>,
impl<'de, F> Deserialize<'de> for Brent<F>where
F: Deserialize<'de>,
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<O, F> Solver<O> for Brent<F>where
O: ArgminOp<Param = F, Output = F, Float = F>,
F: ArgminFloat,
impl<O, F> Solver<O> for Brent<F>where
O: ArgminOp<Param = F, Output = F, Float = F>,
F: ArgminFloat,
Source§fn init(
&mut self,
op: &mut OpWrapper<O>,
_state: &IterState<O>,
) -> Result<Option<ArgminIterData<O>>, Error>
fn init( &mut self, op: &mut OpWrapper<O>, _state: &IterState<O>, ) -> Result<Option<ArgminIterData<O>>, Error>
Initializes the algorithm Read more
Source§fn next_iter(
&mut self,
op: &mut OpWrapper<O>,
_state: &IterState<O>,
) -> Result<ArgminIterData<O>, Error>
fn next_iter( &mut self, op: &mut OpWrapper<O>, _state: &IterState<O>, ) -> Result<ArgminIterData<O>, Error>
Computes one iteration of the algorithm.
Source§fn terminate_internal(&mut self, state: &IterState<O>) -> TerminationReason
fn terminate_internal(&mut self, state: &IterState<O>) -> TerminationReason
Checks whether basic termination reasons apply. Read more
Source§fn terminate(&mut self, _state: &IterState<O>) -> TerminationReason
fn terminate(&mut self, _state: &IterState<O>) -> TerminationReason
Checks whether the algorithm must be terminated
Auto Trait Implementations§
impl<F> Freeze for Brent<F>where
F: Freeze,
impl<F> RefUnwindSafe for Brent<F>where
F: RefUnwindSafe,
impl<F> Send for Brent<F>where
F: Send,
impl<F> Sync for Brent<F>where
F: Sync,
impl<F> Unpin for Brent<F>where
F: Unpin,
impl<F> UnwindSafe for Brent<F>where
F: UnwindSafe,
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