pub struct ADMM {
pub rho: f64,
pub max_iter: usize,
pub tol: f64,
}Expand description
Alternating Direction Method of Multipliers (consensus form).
Fields§
§rho: f64Penalty parameter ρ > 0.
max_iter: usizeMaximum number of iterations.
tol: f64Convergence tolerance.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ADMM
impl RefUnwindSafe for ADMM
impl Send for ADMM
impl Sync for ADMM
impl Unpin for ADMM
impl UnsafeUnpin for ADMM
impl UnwindSafe for ADMM
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more