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

Optimizer using the PANOC algorithm

Implementations§

source§

impl<'a, GradientType, ConstraintType, CostType> PANOCOptimizer<'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 PANOCCache ) -> Self

Constructor of PANOCOptimizer

§Arguments
  • problem: definition of optimization problem
  • cache: cache object constructed once
§Panic

Does not panic

source

pub fn with_tolerance(self, tolerance: f64) -> Self

Sets the tolerance on the norm of the fixed-point residual

The algorithm will exit if the form of gamma*FPR drops below this tolerance

§Panics

The method panics if the specified tolerance is not positive

source

pub fn with_akkt_tolerance(self, akkt_tolerance: f64) -> Self

Specify the tolerance $\epsilon$ related to the AKKT condition

$$ \Vert{}\gamma^{-1}(u-u^+) + \nabla f(u) - \nabla f(u^+){}\Vert \leq \epsilon $$

§Arguments
  • akkt_tolerance: the AKKT-specific tolerance
§Returns

Returns the current mutable and updated instance of the provided object

§Panics

The method panics if the provided value of the AKKT-specific tolerance is not positive.

source

pub fn with_max_iter(self, max_iter: usize) -> Self

Sets the maximum number of iterations

§Panics

Panics if the provided number of iterations is equal to zero

source

pub fn with_max_duration(self, max_duation: Duration) -> Self

Sets the maximum solution time, useful in real-time applications

Trait Implementations§

source§

impl<'life, GradientType, ConstraintType, CostType> Optimizer for PANOCOptimizer<'life, GradientType, ConstraintType, CostType>
where GradientType: Fn(&[f64], &mut [f64]) -> FunctionCallResult + 'life, CostType: Fn(&[f64], &mut f64) -> FunctionCallResult, 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 PANOCOptimizer<'a, GradientType, ConstraintType, CostType>
where CostType: Freeze, GradientType: Freeze,

§

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

§

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

§

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

§

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

§

impl<'a, GradientType, ConstraintType, CostType> !UnwindSafe for PANOCOptimizer<'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