pub struct Diagnostics {
pub mags2_tau: Vec<f64>,
pub overlap2_tau: Vec<f64>,
pub equil_checkpoints: Vec<EquilCheckpoint>,
}Fields§
§mags2_tau: Vec<f64>Integrated autocorrelation time τ_int(m²) per temperature. Empty if autocorrelation_max_lag is None.
overlap2_tau: Vec<f64>Integrated autocorrelation time τ_int(q²) per temperature. Empty if autocorrelation_max_lag is None or n_replicas < 2.
equil_checkpoints: Vec<EquilCheckpoint>Equilibration diagnostic checkpoints (energy + link overlap running averages). Empty if equilibration_diagnostic is false.
Auto Trait Implementations§
impl Freeze for Diagnostics
impl RefUnwindSafe for Diagnostics
impl Send for Diagnostics
impl Sync for Diagnostics
impl Unpin for Diagnostics
impl UnsafeUnpin for Diagnostics
impl UnwindSafe for Diagnostics
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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