pub struct ForAllVerdict {
pub system: StabilizedSystem,
pub by_residue: Vec<bool>,
pub validated: Vec<(usize, bool)>,
}Expand description
The ∀-scales verdict: the stabilized system plus its per-residue answers and the in-window differential validation record.
Fields§
§system: StabilizedSystem§by_residue: Vec<bool>For each residue r mod period: does an invariant witness exist at scales ≡ r,
≥ onset?
validated: Vec<(usize, bool)>Window validation: per scale, the fitted-system verdict — each asserted equal to the direct orbit-collapsed solver’s, with every positive lifted and re-checked.
Auto Trait Implementations§
impl Freeze for ForAllVerdict
impl RefUnwindSafe for ForAllVerdict
impl Send for ForAllVerdict
impl Sync for ForAllVerdict
impl Unpin for ForAllVerdict
impl UnsafeUnpin for ForAllVerdict
impl UnwindSafe for ForAllVerdict
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