pub struct GopRow {
pub sd: f64,
pub sd_raw: f64,
pub residual_frac: f64,
pub eff_strength: f64,
pub latched_off: bool,
}Expand description
One GOP’s gate inputs and its latch decision.
Fields§
§sd: f64Strength-invariant offset dispersion (the latch signal).
sd_raw: f64Raw RMS before normalisation (scales with mbtree_strength).
residual_frac: f641 - mean predictability; the back-off axis.
eff_strength: f64Effective strength after the back-off latch (0 = latched off).
latched_off: boolDid the differentiation latch ZERO this GOP’s offsets?
Trait Implementations§
Auto Trait Implementations§
impl Freeze for GopRow
impl RefUnwindSafe for GopRow
impl Send for GopRow
impl Sync for GopRow
impl Unpin for GopRow
impl UnsafeUnpin for GopRow
impl UnwindSafe for GopRow
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