pub struct NelderMead<P, F> { /* private fields */ }
Expand description
Nelder-Mead method
The Nelder-Mead method a heuristic search method for nonlinear optimization problems which does not require derivatives.
The method is based on simplices which consist of n+1 vertices for an optimization problem with n dimensions. The function to be optimized is evaluated at all vertices. Based on these cost function values the behaviour of the cost function is extrapolated in order to find the next point to be evaluated.
The following actions are possible:
- Reflection: (Parameter
alpha
, default1
) - Expansion: (Parameter
gamma
, default2
) - Contraction: (Parameter
rho
, default0.5
) - Shrink: (Parameter
sigma
, default0.5
)
§References:
Implementations§
Source§impl<P, F> NelderMead<P, F>
impl<P, F> NelderMead<P, F>
Sourcepub fn with_initial_params(self, params: Vec<P>) -> Self
pub fn with_initial_params(self, params: Vec<P>) -> Self
Add initial parameters
Sourcepub fn sd_tolerance(self, tol: F) -> Self
pub fn sd_tolerance(self, tol: F) -> Self
Set Sample standard deviation tolerance
Trait Implementations§
Source§impl<P: Clone, F: Clone> Clone for NelderMead<P, F>
impl<P: Clone, F: Clone> Clone for NelderMead<P, F>
Source§fn clone(&self) -> NelderMead<P, F>
fn clone(&self) -> NelderMead<P, 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<P, F> Default for NelderMead<P, F>
impl<P, F> Default for NelderMead<P, F>
Source§fn default() -> NelderMead<P, F>
fn default() -> NelderMead<P, F>
Returns the “default value” for a type. Read more
Source§impl<'de, P, F> Deserialize<'de> for NelderMead<P, F>where
P: Deserialize<'de>,
F: Deserialize<'de>,
impl<'de, P, F> Deserialize<'de> for NelderMead<P, F>where
P: Deserialize<'de>,
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<P, F> Serialize for NelderMead<P, F>
impl<P, F> Serialize for NelderMead<P, F>
Source§impl<O, P, F> Solver<O> for NelderMead<P, F>
impl<O, P, F> Solver<O> for NelderMead<P, F>
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(&mut self, _state: &IterState<O>) -> TerminationReason
fn terminate(&mut self, _state: &IterState<O>) -> TerminationReason
Checks whether the algorithm must be terminated
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
Auto Trait Implementations§
impl<P, F> Freeze for NelderMead<P, F>where
F: Freeze,
impl<P, F> RefUnwindSafe for NelderMead<P, F>where
F: RefUnwindSafe,
P: RefUnwindSafe,
impl<P, F> Send for NelderMead<P, F>
impl<P, F> Sync for NelderMead<P, F>
impl<P, F> Unpin for NelderMead<P, F>
impl<P, F> UnwindSafe for NelderMead<P, F>where
F: UnwindSafe,
P: 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