pub struct CombinationStep {
pub theory: TheoryId,
pub propagated_equalities: Vec<(TermId, TermId)>,
pub justification: Vec<ProofNodeId>,
}Expand description
One Nelson-Oppen combination step.
Fields§
§theory: TheoryIdTheory that propagated these equalities.
propagated_equalities: Vec<(TermId, TermId)>Interface equalities propagated at this step.
justification: Vec<ProofNodeId>Proof nodes justifying the propagation.
Trait Implementations§
Source§impl Clone for CombinationStep
impl Clone for CombinationStep
Source§fn clone(&self) -> CombinationStep
fn clone(&self) -> CombinationStep
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 moreSource§impl Debug for CombinationStep
impl Debug for CombinationStep
Source§impl PartialEq for CombinationStep
impl PartialEq for CombinationStep
Source§fn eq(&self, other: &CombinationStep) -> bool
fn eq(&self, other: &CombinationStep) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for CombinationStep
impl StructuralPartialEq for CombinationStep
Auto Trait Implementations§
impl Freeze for CombinationStep
impl RefUnwindSafe for CombinationStep
impl Send for CombinationStep
impl Sync for CombinationStep
impl Unpin for CombinationStep
impl UnsafeUnpin for CombinationStep
impl UnwindSafe for CombinationStep
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§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