pub struct ProofLog { /* private fields */ }Expand description
A proof log which logs the proof steps necessary to prove unsatisfiability or optimality. We allow the following types of proofs:
- A CP proof log - This can be created using
ProofLog::cp. - A DIMACS proof log - This can be created using
ProofLog::dimacs.
When a proof log should not be generated, use the implementation of Default.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ProofLog
impl RefUnwindSafe for ProofLog
impl Send for ProofLog
impl Sync for ProofLog
impl Unpin for ProofLog
impl UnwindSafe for ProofLog
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> 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