pub struct IterationRecord {
pub iteration: usize,
pub loss: f64,
pub elapsed_seconds: f64,
pub admm_primal_residual_rms: Option<f64>,
pub admm_dual_residual_rms: Option<f64>,
}Fields§
§iteration: usize§loss: f64§elapsed_seconds: f64§admm_primal_residual_rms: Option<f64>RMS ADMM consensus residual A x - z; absent for other algorithms.
admm_dual_residual_rms: Option<f64>RMS ADMM dual residual rho (z_k - z_{k-1}); absent for other algorithms.
Trait Implementations§
Source§impl Clone for IterationRecord
impl Clone for IterationRecord
Source§fn clone(&self) -> IterationRecord
fn clone(&self) -> IterationRecord
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 moreSource§impl Debug for IterationRecord
impl Debug for IterationRecord
Source§impl<'de> Deserialize<'de> for IterationRecord
impl<'de> Deserialize<'de> for IterationRecord
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for IterationRecord
impl RefUnwindSafe for IterationRecord
impl Send for IterationRecord
impl Sync for IterationRecord
impl Unpin for IterationRecord
impl UnsafeUnpin for IterationRecord
impl UnwindSafe for IterationRecord
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