summaryrefslogtreecommitdiff
path: root/src/theory/bv/bv_subtheory_eq.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/bv/bv_subtheory_eq.cpp')
-rw-r--r--src/theory/bv/bv_subtheory_eq.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/theory/bv/bv_subtheory_eq.cpp b/src/theory/bv/bv_subtheory_eq.cpp
index afb4a8b4a..cb08a1ad8 100644
--- a/src/theory/bv/bv_subtheory_eq.cpp
+++ b/src/theory/bv/bv_subtheory_eq.cpp
@@ -96,7 +96,7 @@ bool EqualitySolver::addAssertions(const std::vector<TNode>& assertions, Theory:
TNode fact = assertions[i];
// Notify the equality engine
- if (d_useEqualityEngine && !d_bv->inConflict() && !d_bv->propagatedBy(fact, TheoryBV::TheoryBV::SUB_EQUALITY) ) {
+ if (d_useEqualityEngine && !d_bv->inConflict() && !d_bv->propagatedBy(fact, SUB_EQUALITY) ) {
bool negated = fact.getKind() == kind::NOT;
TNode predicate = negated ? fact[0] : fact;
if (predicate.getKind() == kind::EQUAL) {
@@ -156,7 +156,7 @@ void EqualitySolver::NotifyClass::eqNotifyConstantTermMerge(TNode t1, TNode t2)
}
bool EqualitySolver::storePropagation(TNode literal) {
- return d_bv->storePropagation(literal, TheoryBV::SUB_EQUALITY);
+ return d_bv->storePropagation(literal, SUB_EQUALITY);
}
void EqualitySolver::conflict(TNode a, TNode b) {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback