pub enum Refusal {
OverBudgetGaussian {
dim: usize,
cap: usize,
},
NoLinearStructure,
}Expand description
Why a lower-bound certificate was not issued — the documented refusal that makes the Chaitin ceiling operational. A refusal is never a claim that no bound exists; it is an honest “this is beyond what I can re-check within budget.”
Variants§
OverBudgetGaussian
The GF(2) system exceeds the budget’s variable cap (par32-scale needs the incremental engine).
NoLinearStructure
There is no linear (parity) structure in the formula to certify rigid.
Trait Implementations§
impl Eq for Refusal
impl StructuralPartialEq for Refusal
Auto Trait Implementations§
impl Freeze for Refusal
impl RefUnwindSafe for Refusal
impl Send for Refusal
impl Sync for Refusal
impl Unpin for Refusal
impl UnsafeUnpin for Refusal
impl UnwindSafe for Refusal
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