Struct argmin::solver::quasinewton::dfp::DFP[][src]

pub struct DFP<L, H, F> { /* fields omitted */ }

DFP method

Example

References:

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

Implementations

impl<L, H, F: ArgminFloat> DFP<L, H, F>[src]

pub fn new(init_inverse_hessian: H, linesearch: L) -> Self[src]

Constructor

pub fn with_tol_grad(self, tol_grad: F) -> Self[src]

Sets tolerance for the stopping criterion based on the change of the norm on the gradient

Trait Implementations

impl<L: Clone, H: Clone, F: Clone> Clone for DFP<L, H, F>[src]

impl<'de, L, H, F> Deserialize<'de> for DFP<L, H, F> where
    L: Deserialize<'de>,
    H: Deserialize<'de>,
    F: Deserialize<'de>, 
[src]

impl<L, H, F> Serialize for DFP<L, H, F> where
    L: Serialize,
    H: Serialize,
    F: Serialize
[src]

impl<O, L, H, F> Solver<O> for DFP<L, H, F> where
    O: ArgminOp<Output = F, Hessian = H, Float = F>,
    O::Param: Clone + Default + Serialize + ArgminSub<O::Param, O::Param> + ArgminDot<O::Param, O::Float> + ArgminDot<O::Param, O::Hessian> + ArgminScaledAdd<O::Param, F, O::Param> + ArgminNorm<O::Float> + ArgminMul<O::Float, O::Param> + ArgminTranspose<O::Param>,
    H: Clone + Default + Serialize + DeserializeOwned + ArgminSub<O::Hessian, O::Hessian> + ArgminDot<O::Param, O::Param> + ArgminDot<O::Hessian, O::Hessian> + ArgminAdd<O::Hessian, O::Hessian> + ArgminMul<F, O::Hessian> + ArgminTranspose<O::Hessian> + ArgminEye,
    L: Clone + ArgminLineSearch<O::Param, O::Float> + Solver<OpWrapper<O>>,
    F: ArgminFloat
[src]

Auto Trait Implementations

impl<L, H, F> RefUnwindSafe for DFP<L, H, F> where
    F: RefUnwindSafe,
    H: RefUnwindSafe,
    L: RefUnwindSafe

impl<L, H, F> Send for DFP<L, H, F> where
    F: Send,
    H: Send,
    L: Send

impl<L, H, F> Sync for DFP<L, H, F> where
    F: Sync,
    H: Sync,
    L: Sync

impl<L, H, F> Unpin for DFP<L, H, F> where
    F: Unpin,
    H: Unpin,
    L: Unpin

impl<L, H, F> UnwindSafe for DFP<L, H, F> where
    F: UnwindSafe,
    H: UnwindSafe,
    L: UnwindSafe

Blanket Implementations

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

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

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

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

impl<T> From<T> for T[src]

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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<V, T> VZip<V> for T where
    V: MultiLane<T>,