summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/smt/smt_engine.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/smt/smt_engine.cpp b/src/smt/smt_engine.cpp
index 8e6fcccb8..92a339a45 100644
--- a/src/smt/smt_engine.cpp
+++ b/src/smt/smt_engine.cpp
@@ -963,7 +963,9 @@ void SmtEngine::setLogicInternal() throw() {
}
// may need to force BV on to handle Boolean terms
- if(!d_logic.isPure(theory::THEORY_ARITH)) {
+ // except in pure arith and QF_SAT
+ if(!d_logic.isPure(theory::THEORY_ARITH) &&
+ !d_logic.isPure(theory::THEORY_BOOL)) {
d_logic = d_logic.getUnlockedCopy();
d_logic.enableTheory(theory::THEORY_BV);
d_logic.lock();
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback