pub enum Conclusion {
Conflict,
Assumptions,
Constraint,
}Available on
cadical_version=v2.0.0 only.Expand description
A conclusion for an incremental proof
Variants§
Conflict
The solver found a conflict of the input clauses
Assumptions
The solver found the input clauses to be unsatisfiable with the assumptions
Constraint
The solver found the input clauses to be unsatisfiable with the temporary constraint
Trait Implementations§
Source§impl Clone for Conclusion
impl Clone for Conclusion
Source§fn clone(&self) -> Conclusion
fn clone(&self) -> Conclusion
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 Conclusion
impl Debug for Conclusion
Source§impl PartialEq for Conclusion
impl PartialEq for Conclusion
impl Copy for Conclusion
impl Eq for Conclusion
impl StructuralPartialEq for Conclusion
Auto Trait Implementations§
impl Freeze for Conclusion
impl RefUnwindSafe for Conclusion
impl Send for Conclusion
impl Sync for Conclusion
impl Unpin for Conclusion
impl UnwindSafe for Conclusion
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more