pub struct DantzigConfig {
pub delta: f64,
pub max_iter: usize,
pub tol: f64,
}Expand description
Configuration for the lasso-module Dantzig selector (dantzig_selector).
Fields§
§delta: f64Noise tolerance δ: we seek ||Aᵀ(b − Ax)||_∞ ≤ delta.
max_iter: usizeMaximum number of ADMM iterations.
tol: f64Convergence tolerance for stopping criterion.
Trait Implementations§
Source§impl Clone for DantzigConfig
impl Clone for DantzigConfig
Source§fn clone(&self) -> DantzigConfig
fn clone(&self) -> DantzigConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for DantzigConfig
impl RefUnwindSafe for DantzigConfig
impl Send for DantzigConfig
impl Sync for DantzigConfig
impl Unpin for DantzigConfig
impl UnsafeUnpin for DantzigConfig
impl UnwindSafe for DantzigConfig
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