Skip to main content

AdmmSolver

Struct AdmmSolver 

Source
pub struct AdmmSolver { /* private fields */ }
Expand description

ADMM solver using Clarabel for subproblems

Implementations§

Source§

impl AdmmSolver

Source

pub fn new() -> Self

Create a new ADMM solver

Source

pub fn with_params(params: AdmmParams) -> Self

Create ADMM solver with custom parameters

Source

pub fn solve_qp_admm<F>( &mut self, p: &DMatrix<f64>, q: &DVector<f64>, a: &DMatrix<f64>, b: &DMatrix<f64>, c: &DVector<f64>, z_update: F, ) -> SolverResult<Solution>
where F: Fn(&DVector<f64>, &DVector<f64>, f64) -> DVector<f64>,

Solve quadratic programming with equality constraints using ADMM

minimize (1/2) x^T P x + q^T x + g(z) subject to Ax + Bz = c

where g(z) is handled by the z-update (e.g., indicator functions, norms)

Source

pub fn solve_lasso( &mut self, a: &DMatrix<f64>, b: &DVector<f64>, lambda: f64, ) -> SolverResult<Solution>

Solve LASSO problem: minimize ||Ax - b||² + λ||x||₁

Source

pub fn solve_basis_pursuit( &mut self, a: &DMatrix<f64>, b: &DVector<f64>, ) -> SolverResult<Solution>

Solve basis pursuit: minimize ||x||₁ subject to Ax = b

Trait Implementations§

Source§

impl Debug for AdmmSolver

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for AdmmSolver

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl OptimizationProblem for AdmmSolver

Source§

fn dimension(&self) -> usize

Get the problem dimension
Source§

fn solve(&self) -> SolverResult<Solution>

Solve the optimization problem using argmin

Auto Trait Implementations§

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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<SS, SP> SupersetOf<SS> for SP
where SS: SubsetOf<SP>,

Source§

fn to_subset(&self) -> Option<SS>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
Source§

fn is_in_subset(&self) -> bool

Checks if self is actually part of its subset T (and can be converted to it).
Source§

fn to_subset_unchecked(&self) -> SS

Use with care! Same as self.to_subset but without any property checks. Always succeeds.
Source§

fn from_subset(element: &SS) -> SP

The inclusion map: converts self to the equivalent element of its superset.
Source§

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

Source§

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>,

Source§

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.