[][src]Struct optimization::ExactLineSearch

pub struct ExactLineSearch { /* fields omitted */ }

Brute-force line search minimizing the objective function over a set of step width candidates, also known as exact line search.

Methods

impl ExactLineSearch[src]

pub fn new(
    start_step_width: f64,
    stop_step_width: f64,
    increase_factor: f64
) -> ExactLineSearch
[src]

Creates a new ExactLineSearch given the start_step_width, the stop_step_width and the increase_factor. The set of evaluated step widths γ is specified as { γ | γ = start_step_width · increase_factorⁱ, i ∈ N, γ <= stop_step_width }, assuming that start_step_width < stop_step_width and increase_factor > 1.

Trait Implementations

impl Clone for ExactLineSearch[src]

impl Copy for ExactLineSearch[src]

impl Debug for ExactLineSearch[src]

impl LineSearch for ExactLineSearch[src]

Auto Trait Implementations

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> From<T> for T[src]

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