[][src]Struct argmin::solver::gaussnewton::gaussnewton_linesearch::GaussNewtonLS

pub struct GaussNewtonLS<L> { /* fields omitted */ }

Gauss-Newton method with linesearch

Example

References:

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

Methods

impl<L> GaussNewtonLS<L>[src]

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

Constructor

Trait Implementations

impl<O, L> Solver<O> for GaussNewtonLS<L> where
    O: ArgminOp,
    O::Param: Default + Debug + ArgminScaledSub<O::Param, f64, O::Param> + ArgminSub<O::Param, O::Param> + ArgminMul<f64, O::Param>,
    O::Output: ArgminNorm<f64>,
    O::Jacobian: ArgminTranspose + ArgminInv<O::Jacobian> + ArgminDot<O::Jacobian, O::Jacobian> + ArgminDot<O::Output, O::Param> + ArgminDot<O::Param, O::Param>,
    O::Hessian: Default,
    L: Clone + ArgminLineSearch<O::Param> + Solver<OpWrapper<LineSearchOP<O>>>, 
[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, L> Deserialize<'de> for GaussNewtonLS<L> where
    L: Deserialize<'de>, 
[src]

impl<L> Serialize for GaussNewtonLS<L> where
    L: Serialize
[src]

Auto Trait Implementations

impl<L> Send for GaussNewtonLS<L> where
    L: Send

impl<L> Unpin for GaussNewtonLS<L> where
    L: Unpin

impl<L> Sync for GaussNewtonLS<L> where
    L: Sync

impl<L> UnwindSafe for GaussNewtonLS<L> where
    L: UnwindSafe

impl<L> RefUnwindSafe for GaussNewtonLS<L> where
    L: RefUnwindSafe

Blanket Implementations

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

impl<T, U> Into<U> for T where
    U: From<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