pub struct NonlinearConjugateGradient<P, L, B, F> { /* private fields */ }
Expand description
Implementations§
Source§impl<P, L, B, F> NonlinearConjugateGradient<P, L, B, F>where
P: Default,
F: ArgminFloat,
impl<P, L, B, F> NonlinearConjugateGradient<P, L, B, F>where
P: Default,
F: ArgminFloat,
Sourcepub fn new(linesearch: L, beta_method: B) -> Result<Self, Error>
pub fn new(linesearch: L, beta_method: B) -> Result<Self, Error>
Constructor (Polak Ribiere Conjugate Gradient (PR-CG))
Sourcepub fn restart_iters(self, iters: u64) -> Self
pub fn restart_iters(self, iters: u64) -> Self
Specifiy the number of iterations after which a restart should be performed This allows the algorithm to “forget” previous information which may not be helpful anymore.
Sourcepub fn restart_orthogonality(self, v: F) -> Self
pub fn restart_orthogonality(self, v: F) -> Self
Set the value for the orthogonality measure. Setting this parameter leads to a restart of the algorithm (setting beta = 0) after two consecutive search directions are not orthogonal anymore. In other words, if this condition is met:
|\nabla f_k^T * \nabla f_{k-1}| / | \nabla f_k ||^2 >= v
A typical value for v
is 0.1.
Trait Implementations§
Source§impl<P: Clone, L: Clone, B: Clone, F: Clone> Clone for NonlinearConjugateGradient<P, L, B, F>
impl<P: Clone, L: Clone, B: Clone, F: Clone> Clone for NonlinearConjugateGradient<P, L, B, F>
Source§fn clone(&self) -> NonlinearConjugateGradient<P, L, B, F>
fn clone(&self) -> NonlinearConjugateGradient<P, L, B, F>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'de, P, L, B, F> Deserialize<'de> for NonlinearConjugateGradient<P, L, B, F>
impl<'de, P, L, B, F> Deserialize<'de> for NonlinearConjugateGradient<P, L, B, F>
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<P, L, B, F> Serialize for NonlinearConjugateGradient<P, L, B, F>
impl<P, L, B, F> Serialize for NonlinearConjugateGradient<P, L, B, F>
Source§impl<O, P, L, B, F> Solver<O> for NonlinearConjugateGradient<P, L, B, F>where
O: ArgminOp<Param = P, Output = F, Float = F>,
P: Clone + Default + Serialize + DeserializeOwned + ArgminSub<O::Param, O::Param> + ArgminDot<O::Param, O::Float> + ArgminScaledAdd<O::Param, O::Float, O::Param> + ArgminAdd<O::Param, O::Param> + ArgminMul<F, O::Param> + ArgminNorm<O::Float>,
O::Hessian: Default,
L: Clone + ArgminLineSearch<O::Param, O::Float> + Solver<OpWrapper<O>>,
B: ArgminNLCGBetaUpdate<O::Param, O::Float>,
F: ArgminFloat,
impl<O, P, L, B, F> Solver<O> for NonlinearConjugateGradient<P, L, B, F>where
O: ArgminOp<Param = P, Output = F, Float = F>,
P: Clone + Default + Serialize + DeserializeOwned + ArgminSub<O::Param, O::Param> + ArgminDot<O::Param, O::Float> + ArgminScaledAdd<O::Param, O::Float, O::Param> + ArgminAdd<O::Param, O::Param> + ArgminMul<F, O::Param> + ArgminNorm<O::Float>,
O::Hessian: Default,
L: Clone + ArgminLineSearch<O::Param, O::Float> + Solver<OpWrapper<O>>,
B: ArgminNLCGBetaUpdate<O::Param, O::Float>,
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<P, L, B, F> Freeze for NonlinearConjugateGradient<P, L, B, F>
impl<P, L, B, F> RefUnwindSafe for NonlinearConjugateGradient<P, L, B, F>
impl<P, L, B, F> Send for NonlinearConjugateGradient<P, L, B, F>
impl<P, L, B, F> Sync for NonlinearConjugateGradient<P, L, B, F>
impl<P, L, B, F> Unpin for NonlinearConjugateGradient<P, L, B, F>
impl<P, L, B, F> UnwindSafe for NonlinearConjugateGradient<P, L, B, F>
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