Skip to main content

OrbitRecord

Struct OrbitRecord 

Source
pub struct OrbitRecord {
Show 14 fields pub n: usize, pub rep: Cover, pub num_clauses: usize, pub orbit_size: usize, pub stabilizer_order: usize, pub face_vector: BTreeMap<usize, usize>, pub min_res_width: usize, pub rung: ProofRung, pub shadow: Option<Shadow>, pub route: Route, pub discovered_rule_orbits: usize, pub full_rule_orbits: usize, pub affine_explained: bool, pub modp_routed: bool,
}
Expand description

One Bₙ-orbit of minimal UNSAT formulas over n variables, with every invariant the solver can compute about it. The raw measurements; the audit flags (OrbitRecord::router_beats_ladder, OrbitRecord::finder_is_incomplete) are derived from them.

Fields§

§n: usize§rep: Cover

A canonical representative cover of the orbit.

§num_clauses: usize§orbit_size: usize

Number of distinct covers in the Bₙ orbit.

§stabilizer_order: usize

|Stab| = |Bₙ| / orbit_size — how symmetric this formula is.

§face_vector: BTreeMap<usize, usize>

Blockers per face dimension — a geometric invariant of the cover.

§min_res_width: usize

Minimum width of any resolution refutation.

§rung: ProofRung

The weakest certified cut on the proof-complexity ladder (GF(2) Nullstellensatz at the top).

§shadow: Option<Shadow>

The single-label certified shadow the diagnoser reads off (Counting/Parity/CuttingPlanes).

§route: Route

Which engine the full structured router actually decides it with.

§discovered_rule_orbits: usize

Self-driving rule-symmetry: how many essentially-distinct clauses the discovered automorphisms leave (the production symmetry breaker, symmetry_detect::find_generators, used in the cascade).

§full_rule_orbits: usize

The same count under the cover’s full Bₙ stabilizer (every geometric automorphism, computed exhaustively from the group). This is the strongest symmetry break achievable. When discovered_rule_orbits > full_rule_orbits, the production breaker is leaving symmetry unbroken — a case the solver could collapse further but currently does not.

§affine_explained: bool

Is the UNSAT explained by an inconsistent GF(2) linear system (the parity shadow)?

§modp_routed: bool

Did the structured router crush it with the polynomial mod-p (GF(p)) engine?

Implementations§

Source§

impl OrbitRecord

Source

pub fn router_beats_ladder(&self) -> bool

Gap signal. The full router crushed this cover with a polynomial specialist the certified proof-complexity ladder has no rung for — the router sees structure the certified cascade can only reach by an expensive general proof. The clearest case: a mod-p germ routed to ModP while the ladder reports a (GF(2)) Nullstellensatz height. This is the unification gap, per orbit.

Source

pub fn symmetry_underbroken(&self) -> bool

Symmetry left on the table. The production breaker discovered strictly fewer rule-merges than the cover’s full geometric stabilizer admits — so the symmetry-breaking predicate it injects is weaker than achievable, and a scaled-up member of this family will cost the solver search it could have avoided. Every such orbit is a concrete “break more symmetry → solve more cases” target.

Trait Implementations§

Source§

impl Clone for OrbitRecord

Source§

fn clone(&self) -> OrbitRecord

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for OrbitRecord

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.