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

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.

Implementations§

source§

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

source

pub fn new( problem: Problem<'a, GradientType, ConstraintType, CostType>, cache: &'a mut FBSCache ) -> Self

Constructs a new instance of FBSOptimizer

§Arguments
  • problem: problem definition
  • cache: instance of FBSCache
source

pub fn with_tolerance( self, tolerance: f64 ) -> FBSOptimizer<'a, GradientType, ConstraintType, CostType>

Sets the tolerance

§Panics

The method panics if the specified tolerance is not positive

source

pub fn with_max_iter( self, max_iter: usize ) -> FBSOptimizer<'a, GradientType, ConstraintType, CostType>

Sets the maximum number of iterations

source

pub fn with_max_duration( self, max_duration: Duration ) -> FBSOptimizer<'a, GradientType, ConstraintType, CostType>

Sets the maximum number of iterations

Trait Implementations§

source§

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

source§

fn solve(&mut self, u: &mut [f64]) -> Result<SolverStatus, SolverError>

solves a given problem and updates the initial estimate u with the solution Read more

Auto Trait Implementations§

§

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

§

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

§

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

§

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

§

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

§

impl<'a, GradientType, ConstraintType, CostType> !UnwindSafe for FBSOptimizer<'a, GradientType, ConstraintType, CostType>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V