pub enum ProofSystem {
Resolution,
Frege,
ExtendedFrege,
HalfFrege,
CuttingPlanes,
Nullstellensatz,
SOS,
IPS,
}Expand description
A propositional proof system.
Variants§
Resolution
Resolution (Robinson 1965).
Frege
Frege / Hilbert-style propositional calculus.
ExtendedFrege
Extended Frege (with extension axioms).
HalfFrege
Half-Frege (bounded-depth Frege).
CuttingPlanes
Cutting Planes (LP relaxation cuts).
Nullstellensatz
Nullstellensatz proof system (algebraic).
SOS
Sum-of-Squares (Positivstellensatz).
IPS
Ideal Proof System (IPS).
Trait Implementations§
Source§impl Clone for ProofSystem
impl Clone for ProofSystem
Source§fn clone(&self) -> ProofSystem
fn clone(&self) -> ProofSystem
Returns a duplicate of the value. Read more
1.0.0 · 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 ProofSystem
impl Debug for ProofSystem
Source§impl Display for ProofSystem
impl Display for ProofSystem
Source§impl Hash for ProofSystem
impl Hash for ProofSystem
Source§impl PartialEq for ProofSystem
impl PartialEq for ProofSystem
impl Eq for ProofSystem
impl StructuralPartialEq for ProofSystem
Auto Trait Implementations§
impl Freeze for ProofSystem
impl RefUnwindSafe for ProofSystem
impl Send for ProofSystem
impl Sync for ProofSystem
impl Unpin for ProofSystem
impl UnsafeUnpin for ProofSystem
impl UnwindSafe for ProofSystem
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