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 89b0f054a..6ac1c5e32 100644
--- a/src/theory/logic_info.cpp
+++ b/src/theory/logic_info.cpp
@@ -442,6 +442,10 @@ void LogicInfo::setLogicString(std::string logicString) throw(IllegalArgumentExc
enableTheory(THEORY_SETS);
p += 2;
}
+ if(!strncmp(p, "SEP", 3)) {
+ enableTheory(THEORY_SEP);
+ p += 3;
+ }
}
}
if(*p != '\0') {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback