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

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

DFP method

Example

References:

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

Methods

impl<L, H> DFP<L, H>[src]

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

Constructor

Trait Implementations

impl<O, L, H> Solver<O> for DFP<L, H> where
    O: ArgminOp<Output = f64, Hessian = H>,
    O::Param: Clone + Default + Serialize + ArgminSub<O::Param, O::Param> + ArgminDot<O::Param, f64> + ArgminDot<O::Param, O::Hessian> + ArgminScaledAdd<O::Param, f64, O::Param> + ArgminNorm<f64> + ArgminMul<f64, O::Param> + ArgminTranspose,
    O::Hessian: 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<f64, O::Hessian> + ArgminTranspose + ArgminEye,
    L: Clone + ArgminLineSearch<O::Param> + Solver<OpWrapper<O>>, 
[src]

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

Checks whether basic termination reasons apply. Read more

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

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

Auto Trait Implementations

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

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

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

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

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

Blanket Implementations

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

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

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

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

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