[][src]Struct optimization_engine::core::fbs::FBSOptimizer

pub struct FBSOptimizer<'a, GradientType, ConstraintType, CostType> where
    GradientType: Fn(&[f64], &mut [f64]) -> i32,
    CostType: Fn(&[f64], &mut f64) -> i32,
    ConstraintType: Constraint
{ /* fields omitted */ }

Optimiser using forward-backward splitting iterations (projected gradient)

Note that an FBSOptimizer holds a reference to an instance of FBSEngine which needs to be created externally. A mutable reference to that FBSEgnine is provided to the optimizer.

The FBSEngine is supposed to be updated whenever you need to solve a different optimization problem.

Methods

impl<'a, GradientType, ConstraintType, CostType> FBSOptimizer<'a, GradientType, ConstraintType, CostType> where
    GradientType: Fn(&[f64], &mut [f64]) -> i32,
    CostType: Fn(&[f64], &mut f64) -> i32,
    ConstraintType: Constraint
[src]

pub fn new(
    fbs_engine: &'a mut FBSEngine<'a, GradientType, ConstraintType, CostType>
) -> FBSOptimizer<'a, GradientType, ConstraintType, CostType>
[src]

pub fn with_tolerance(
    &mut self,
    tolerance: f64
) -> &mut FBSOptimizer<'a, GradientType, ConstraintType, CostType>
[src]

Sets the tolerance

Panics

The method panics if the specified tolerance is not positive

pub fn with_max_iter(
    &mut self,
    max_iter: usize
) -> &mut FBSOptimizer<'a, GradientType, ConstraintType, CostType>
[src]

Sets the maximum number of iterations

Trait Implementations

impl<'life, GradientType, ConstraintType, CostType> Optimizer for FBSOptimizer<'life, GradientType, ConstraintType, CostType> where
    GradientType: Fn(&[f64], &mut [f64]) -> i32 + 'life,
    CostType: Fn(&[f64], &mut f64) -> i32,
    ConstraintType: Constraint + 'life, 
[src]

Auto Trait Implementations

impl<'a, GradientType, ConstraintType, CostType> Send for FBSOptimizer<'a, GradientType, ConstraintType, CostType> where
    ConstraintType: Send,
    CostType: Send,
    GradientType: Send

impl<'a, GradientType, ConstraintType, CostType> Sync for FBSOptimizer<'a, GradientType, ConstraintType, CostType> where
    ConstraintType: Sync,
    CostType: Sync,
    GradientType: 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> 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> Any for T where
    T: 'static + ?Sized
[src]