pub struct OrderingCert {
pub n: usize,
pub edge: Vec<u32>,
}Expand description
A re-checkable ordering-principle refutation: the recovered element/edge identification of a complete
GT(n) core. edge[i * n + j] is the comparison variable x_ij (“i < j”) for the ordered pair
(i, j); diagonal entries (i == j) are u32::MAX and unused. Given this map a checker
re-verifies that every totality, antisymmetry, transitivity, and no-maximum clause is present — the
whole certificate, no trust in the recognizer.
Fields§
§n: usizeThe number of ordered elements.
edge: Vec<u32>The comparison variable x_ij at flat index i * n + j (diagonal = u32::MAX).
Implementations§
Trait Implementations§
Source§impl Clone for OrderingCert
impl Clone for OrderingCert
Source§fn clone(&self) -> OrderingCert
fn clone(&self) -> OrderingCert
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 OrderingCert
impl Debug for OrderingCert
Source§impl PartialEq for OrderingCert
impl PartialEq for OrderingCert
Source§fn eq(&self, other: &OrderingCert) -> bool
fn eq(&self, other: &OrderingCert) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for OrderingCert
impl StructuralPartialEq for OrderingCert
Auto Trait Implementations§
impl Freeze for OrderingCert
impl RefUnwindSafe for OrderingCert
impl Send for OrderingCert
impl Sync for OrderingCert
impl Unpin for OrderingCert
impl UnsafeUnpin for OrderingCert
impl UnwindSafe for OrderingCert
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