[][src]Struct argmin::solver::linesearch::morethuente::MoreThuenteLineSearch

pub struct MoreThuenteLineSearch<P, F> { /* fields omitted */ }

The More-Thuente line search is a method to find a step length which obeys the strong Wolfe conditions.

Example

References

This implementation follows the excellent MATLAB implementation of Dianne P. O'Leary at http://www.cs.umd.edu/users/oleary/software/

[0] Jorge J. More and David J. Thuente. "Line search algorithms with guaranteed sufficient decrease." ACM Trans. Math. Softw. 20, 3 (September 1994), 286-307. DOI: https://doi.org/10.1145/192115.192132

Implementations

impl<P: Default, F: ArgminFloat> MoreThuenteLineSearch<P, F>[src]

pub fn new() -> Self[src]

Constructor

pub fn c(self, c1: F, c2: F) -> Result<Self, Error>[src]

Set c1 and c2 where 0 < c1 < c2 < 1.

pub fn alpha(self, alpha_min: F, alpha_max: F) -> Result<Self, Error>[src]

set alpha limits

Trait Implementations

impl<P, F> ArgminLineSearch<P, F> for MoreThuenteLineSearch<P, F> where
    P: Clone + Serialize + ArgminSub<P, P> + ArgminDot<P, F> + ArgminScaledAdd<P, F, P>,
    F: ArgminFloat
[src]

fn set_search_direction(&mut self, search_direction: P)[src]

Set search direction

fn set_init_alpha(&mut self, alpha: F) -> Result<(), Error>[src]

Set initial alpha value

impl<P: Clone, F: Clone> Clone for MoreThuenteLineSearch<P, F>[src]

impl<P: Default, F: ArgminFloat> Default for MoreThuenteLineSearch<P, F>[src]

impl<'de, P, F> Deserialize<'de> for MoreThuenteLineSearch<P, F> where
    P: Deserialize<'de>,
    F: Deserialize<'de>, 
[src]

impl<P, F> Serialize for MoreThuenteLineSearch<P, F> where
    P: Serialize,
    F: Serialize
[src]

impl<P, O, F> Solver<O> for MoreThuenteLineSearch<P, F> where
    O: ArgminOp<Param = P, Output = F, Float = F>,
    P: Clone + Serialize + DeserializeOwned + ArgminSub<P, P> + ArgminDot<P, F> + ArgminScaledAdd<P, F, P>,
    F: ArgminFloat
[src]

Auto Trait Implementations

impl<P, F> RefUnwindSafe for MoreThuenteLineSearch<P, F> where
    F: RefUnwindSafe,
    P: RefUnwindSafe

impl<P, F> Send for MoreThuenteLineSearch<P, F> where
    F: Send,
    P: Send

impl<P, F> Sync for MoreThuenteLineSearch<P, F> where
    F: Sync,
    P: Sync

impl<P, F> Unpin for MoreThuenteLineSearch<P, F> where
    F: Unpin,
    P: Unpin

impl<P, F> UnwindSafe for MoreThuenteLineSearch<P, F> where
    F: UnwindSafe,
    P: 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>,