summaryrefslogtreecommitdiff
path: root/src/theory/bv/theory_bv.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/bv/theory_bv.cpp')
-rw-r--r--src/theory/bv/theory_bv.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/theory/bv/theory_bv.cpp b/src/theory/bv/theory_bv.cpp
index 26452e5e8..79ab955aa 100644
--- a/src/theory/bv/theory_bv.cpp
+++ b/src/theory/bv/theory_bv.cpp
@@ -296,6 +296,11 @@ EqualityStatus TheoryBV::getEqualityStatus(TNode a, TNode b)
return EQUALITY_UNKNOWN;
}
- return d_equalitySolver.getEqualityStatus(a, b);
+ EqualityStatus status = d_equalitySolver.getEqualityStatus(a, b);
+ if (status == EQUALITY_UNKNOWN) {
+ status = d_bitblastSolver.getEqualityStatus(a, b);
+ }
+
+ return status;
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback