summaryrefslogtreecommitdiff
path: root/src/smt/smt_engine.cpp
diff options
context:
space:
mode:
authorDejan Jovanović <dejan.jovanovic@gmail.com>2012-06-17 18:22:01 +0000
committerDejan Jovanović <dejan.jovanovic@gmail.com>2012-06-17 18:22:01 +0000
commitcee98d92b912c584f460882ea2f00de6d8e49586 (patch)
tree0032419dc2e90f046499ca75a9c4e1cf2539cde2 /src/smt/smt_engine.cpp
parent037134f3dd1311c5184d61d7e46315ea384a3eba (diff)
enabling theoryof=term for quantifiers with sharing
disableing one test case in equantifiers/decision that runs long
Diffstat (limited to 'src/smt/smt_engine.cpp')
-rw-r--r--src/smt/smt_engine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/smt/smt_engine.cpp b/src/smt/smt_engine.cpp
index e1d247521..6567a775b 100644
--- a/src/smt/smt_engine.cpp
+++ b/src/smt/smt_engine.cpp
@@ -458,7 +458,7 @@ void SmtEngine::setLogicInternal() throw(AssertionException) {
// Set the options for the theoryOf
if(!Options::current()->theoryOfModeSetByUser) {
- if(d_logic.isSharingEnabled() && !d_logic.isTheoryEnabled(THEORY_BV) && !d_logic.isQuantified()) {
+ if(d_logic.isSharingEnabled() && !d_logic.isTheoryEnabled(THEORY_BV)) {
Theory::setTheoryOfMode(theory::THEORY_OF_TERM_BASED);
} else {
Theory::setTheoryOfMode(theory::THEORY_OF_TYPE_BASED);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback