summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKshitij Bansal <kshitij@cs.nyu.edu>2014-06-30 10:53:52 -0400
committerKshitij Bansal <kshitij@cs.nyu.edu>2014-06-30 10:53:52 -0400
commitfa53ae111cd314f455456a884f1247bb9b8e2c7b (patch)
tree2eb9d36e5e20d2160c7d49b6f89f162b54a20d64 /src
parentf4d031742d969c689d38c0756a5026a434ef89b3 (diff)
Use FS as the set-logic string for theory of sets
Diffstat (limited to 'src')
-rw-r--r--src/theory/logic_info.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/theory/logic_info.cpp b/src/theory/logic_info.cpp
index 78f4996b8..bc2f1286b 100644
--- a/src/theory/logic_info.cpp
+++ b/src/theory/logic_info.cpp
@@ -129,7 +129,7 @@ std::string LogicInfo::getLogicString() const {
++seen;
}
if(d_theories[THEORY_SETS]) {
- ss << "_SETS";
+ ss << "FS";
++seen;
}
@@ -272,9 +272,9 @@ void LogicInfo::setLogicString(std::string logicString) throw(IllegalArgumentExc
arithNonLinear();
p += 4;
}
- if(!strncmp(p, "_SETS", 5)) {
+ if(!strncmp(p, "FS", 2)) {
enableTheory(THEORY_SETS);
- p += 5;
+ p += 2;
}
}
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback