[][src]Struct argmin::solver::trustregion::cauchypoint::CauchyPoint

pub struct CauchyPoint { /* fields omitted */ }

The Cauchy point is the minimum of the quadratic approximation of the cost function within the trust region along the direction given by the first derivative.

References:

[0] Jorge Nocedal and Stephen J. Wright (2006). Numerical Optimization. Springer. ISBN 0-387-30303-0.

Methods

impl CauchyPoint[src]

pub fn new() -> Self[src]

Constructor

Trait Implementations

impl PartialOrd<CauchyPoint> for CauchyPoint[src]

impl Copy for CauchyPoint[src]

impl PartialEq<CauchyPoint> for CauchyPoint[src]

impl Default for CauchyPoint[src]

impl Clone for CauchyPoint[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for CauchyPoint[src]

impl<O> Solver<O> for CauchyPoint where
    O: ArgminOp<Output = f64>,
    O::Param: Debug + Clone + Serialize + ArgminMul<f64, O::Param> + ArgminWeightedDot<O::Param, f64, O::Hessian> + ArgminNorm<f64>,
    O::Hessian: Clone + Serialize
[src]

fn init(
    &mut self,
    _op: &mut OpWrapper<O>,
    _state: &IterState<O>
) -> Result<Option<ArgminIterData<O>>, Error>
[src]

Initializes the algorithm Read more

fn terminate_internal(&mut self, state: &IterState<O>) -> TerminationReason[src]

Checks whether basic termination reasons apply. Read more

impl<'de> Deserialize<'de> for CauchyPoint[src]

impl Serialize for CauchyPoint[src]

impl ArgminTrustRegion for CauchyPoint[src]

Auto Trait Implementations

impl Send for CauchyPoint

impl Sync for CauchyPoint

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized