[][src]Struct argmin::solver::quasinewton::sr1::SR1

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

SR1 method (broken!)

Example

References:

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

Methods

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

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

Constructor

pub fn r(self, r: f64) -> Result<Self, Error>[src]

Set r

Trait Implementations

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

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

Auto Trait Implementations

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

impl<L, H> Sync for SR1<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