[][src]Struct argmin::solver::quasinewton::bfgs::BFGS

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

BFGS method

Example

References:

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

Methods

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

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

Constructor

Trait Implementations

impl<O, L, H> Solver<O> for BFGS<L, H> where
    O: ArgminOp<Output = f64, Hessian = H>,
    O::Param: Debug + Default + 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>,
    O::Hessian: Clone + Default + Debug + 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 BFGS<L, H> where
    L: Deserialize<'de>,
    H: Deserialize<'de>, 
[src]

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

Auto Trait Implementations

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

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

Blanket Implementations

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

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