pub struct ThresholdingResult {
pub x: Vec<f64>,
pub support: Vec<usize>,
pub residual_norm: f64,
pub iterations: usize,
}Expand description
Result of a thresholding-based solver.
Fields§
§x: Vec<f64>§support: Vec<usize>§residual_norm: f64§iterations: usizeTrait Implementations§
Source§impl Clone for ThresholdingResult
impl Clone for ThresholdingResult
Source§fn clone(&self) -> ThresholdingResult
fn clone(&self) -> ThresholdingResult
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 ThresholdingResult
impl RefUnwindSafe for ThresholdingResult
impl Send for ThresholdingResult
impl Sync for ThresholdingResult
impl Unpin for ThresholdingResult
impl UnsafeUnpin for ThresholdingResult
impl UnwindSafe for ThresholdingResult
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