summaryrefslogtreecommitdiff
path: root/src/theory/logic_info.cpp
diff options
context:
space:
mode:
authorajreynol <andrew.j.reynolds@gmail.com>2016-06-18 10:49:21 -0500
committerajreynol <andrew.j.reynolds@gmail.com>2016-06-18 10:49:21 -0500
commitdc27675a9b9aa0346122390afdb28280f4495e9c (patch)
treeea6f33c6f0d9956dc5a5efa753d65469eac2802b /src/theory/logic_info.cpp
parentf5ed28fe24f6b887630a48dcf476c462c0c227a1 (diff)
Fix unit test.
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