pub enum SATResult {
SAT = 10,
UNSAT = 20,
UNKNOWN = 0,
}Expand description
求解器常量定义。
SATResult 数值遵循 SAT Competition 习惯:
SAT = 10UNSAT = 20UNKNOWN = 0
Variants§
Trait Implementations§
impl Copy for SATResult
impl Eq for SATResult
impl StructuralPartialEq for SATResult
Auto Trait Implementations§
impl Freeze for SATResult
impl RefUnwindSafe for SATResult
impl Send for SATResult
impl Sync for SATResult
impl Unpin for SATResult
impl UnsafeUnpin for SATResult
impl UnwindSafe for SATResult
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,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.