pub enum Conclusion<Identifier, Int> {
Unsat,
DualBound(IntAtomic<Identifier, Int>),
}Expand description
The conclusion of the proof. This is the final line, and a proof without a conclusion can be considered incomplete. All steps after the conclusion can be ignored.
Variants§
Unsat
The problem is unsatisfiable.
DualBound(IntAtomic<Identifier, Int>)
The proof concludes the given dual bound.
Trait Implementations§
Source§impl<Identifier: Clone, Int: Clone> Clone for Conclusion<Identifier, Int>
impl<Identifier: Clone, Int: Clone> Clone for Conclusion<Identifier, Int>
Source§fn clone(&self) -> Conclusion<Identifier, Int>
fn clone(&self) -> Conclusion<Identifier, Int>
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 moreimpl<Identifier: Copy, Int: Copy> Copy for Conclusion<Identifier, Int>
impl<Identifier: Eq, Int: Eq> Eq for Conclusion<Identifier, Int>
impl<Identifier, Int> StructuralPartialEq for Conclusion<Identifier, Int>
Auto Trait Implementations§
impl<Identifier, Int> Freeze for Conclusion<Identifier, Int>
impl<Identifier, Int> RefUnwindSafe for Conclusion<Identifier, Int>where
Identifier: RefUnwindSafe,
Int: RefUnwindSafe,
impl<Identifier, Int> Send for Conclusion<Identifier, Int>
impl<Identifier, Int> Sync for Conclusion<Identifier, Int>
impl<Identifier, Int> Unpin for Conclusion<Identifier, Int>
impl<Identifier, Int> UnwindSafe for Conclusion<Identifier, Int>where
Identifier: UnwindSafe,
Int: UnwindSafe,
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.