Struct optimization::FixedStepWidth [] [src]

pub struct FixedStepWidth { /* fields omitted */ }

Uses a fixed step width γ in each iteration instead of performing an actual line search.

Methods

impl FixedStepWidth
[src]

Creates a new FixedStepWidth given the static step width.

Trait Implementations

impl Debug for FixedStepWidth
[src]

Formats the value using the given formatter.

impl Copy for FixedStepWidth
[src]

impl Clone for FixedStepWidth
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl LineSearch for FixedStepWidth
[src]

Performs the actual line search given the current position x and a direction to go to. Returns the new position. Read more