pub enum Answer {
Unsat,
Sat(String),
Unknown,
}Expand description
What the solver said about one query.
Variants§
Unsat
No model exists, which is the answer a discharged rule gets: nothing makes the claim false.
Sat(String)
A model exists, and here is what the solver printed of it. The rule is wrong.
Unknown
The solver gave up, usually on time. Not a failure of the rule and not a pass either.
Trait Implementations§
impl Eq for Answer
impl StructuralPartialEq for Answer
Auto Trait Implementations§
impl Freeze for Answer
impl RefUnwindSafe for Answer
impl Send for Answer
impl Sync for Answer
impl Unpin for Answer
impl UnsafeUnpin for Answer
impl UnwindSafe for Answer
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