pub enum Shadow {
Counting,
Parity,
CuttingPlanes,
}Expand description
Which certified shadow refutes a cover — the abstract class of its hardness.
Variants§
Counting
Counting / matching (pigeonhole, Hall) — resolution-hard, polynomial here.
Parity
Parity / Gaussian over GF(2) (Tseitin, XOR) — resolution-hard, polynomial here.
CuttingPlanes
Cutting planes / cardinality (Farkas hyperplane) — resolution-hard, polynomial here.
Trait Implementations§
impl Copy for Shadow
impl Eq for Shadow
impl StructuralPartialEq for Shadow
Auto Trait Implementations§
impl Freeze for Shadow
impl RefUnwindSafe for Shadow
impl Send for Shadow
impl Sync for Shadow
impl Unpin for Shadow
impl UnsafeUnpin for Shadow
impl UnwindSafe for Shadow
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