summaryrefslogtreecommitdiff
path: root/src/theory/logic_info.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/logic_info.cpp')
-rw-r--r--src/theory/logic_info.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/theory/logic_info.cpp b/src/theory/logic_info.cpp
index ad3a010c0..335a87501 100644
--- a/src/theory/logic_info.cpp
+++ b/src/theory/logic_info.cpp
@@ -336,6 +336,10 @@ void LogicInfo::setLogicString(std::string logicString) throw(IllegalArgumentExc
} else if(!strcmp(p, "QF_SAT")) {
// propositional logic only; we're done.
p += 6;
+ } else if(!strcmp(p, "SAT")) {
+ // quantified Boolean formulas only; we're done.
+ enableQuantifiers();
+ p += 3;
} else if(!strcmp(p, "QF_ALL_SUPPORTED")) {
// the "all theories included" logic, no quantifiers
enableEverything();
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback