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 (const: unstable) · 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>
Source§impl<Identifier: PartialEq, Int: PartialEq> PartialEq for Conclusion<Identifier, Int>
impl<Identifier: PartialEq, Int: PartialEq> PartialEq for Conclusion<Identifier, Int>
Source§fn eq(&self, other: &Conclusion<Identifier, Int>) -> bool
fn eq(&self, other: &Conclusion<Identifier, Int>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<Identifier: PartialEq, Int: PartialEq> 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> UnsafeUnpin for Conclusion<Identifier, Int>where
Identifier: UnsafeUnpin,
Int: UnsafeUnpin,
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