pub enum UnsatOutcome {
Refuted,
Sat(Vec<(String, bool)>),
Unsupported,
}Expand description
The result of an unsatisfiability query — the shared primitive behind equivalence, bounded model checking, k-induction, and vacuity.
Variants§
Refuted
The formula is unsatisfiable — RUP-certified (the refutation replays to empty).
Sat(Vec<(String, bool)>)
The formula is satisfiable, with a witnessing model over its atoms.
Unsupported
Not a quantifier-free propositional formula, or the refutation could not be
certified — fail-closed (never a false Refuted).
Trait Implementations§
Source§impl Clone for UnsatOutcome
impl Clone for UnsatOutcome
Source§fn clone(&self) -> UnsatOutcome
fn clone(&self) -> UnsatOutcome
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 UnsatOutcome
impl Debug for UnsatOutcome
Source§impl PartialEq for UnsatOutcome
impl PartialEq for UnsatOutcome
Source§fn eq(&self, other: &UnsatOutcome) -> bool
fn eq(&self, other: &UnsatOutcome) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for UnsatOutcome
impl StructuralPartialEq for UnsatOutcome
Auto Trait Implementations§
impl Freeze for UnsatOutcome
impl RefUnwindSafe for UnsatOutcome
impl Send for UnsatOutcome
impl Sync for UnsatOutcome
impl Unpin for UnsatOutcome
impl UnsafeUnpin for UnsatOutcome
impl UnwindSafe for UnsatOutcome
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