summaryrefslogtreecommitdiff
path: root/src/theory/theory_engine.cpp
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2011-03-10 07:28:32 +0000
committerMorgan Deters <mdeters@gmail.com>2011-03-10 07:28:32 +0000
commit9be1d8fe09cdc0e5b5b3478f7dab16a218802ec1 (patch)
tree848c3ba4952650219fdfdf6d29b49559a2d9e110 /src/theory/theory_engine.cpp
parent5fbb341a673ec5fa42f260bb137f423ac2aea324 (diff)
ITE removal in TheoryEngine was not properly handling PARAMETERIZED kinds. Fixed and added bug regression. Thanks Andrew Reynolds for the bug report!
Diffstat (limited to 'src/theory/theory_engine.cpp')
-rw-r--r--src/theory/theory_engine.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/theory/theory_engine.cpp b/src/theory/theory_engine.cpp
index 3c59b43e4..f8eece3df 100644
--- a/src/theory/theory_engine.cpp
+++ b/src/theory/theory_engine.cpp
@@ -310,6 +310,12 @@ Node TheoryEngine::removeITEs(TNode node) {
}
vector<Node> newChildren;
bool somethingChanged = false;
+ if(node.getMetaKind() == kind::metakind::PARAMETERIZED) {
+ // Make sure to push operator or it will be missing in new
+ // (reformed) node. This was crashing on the very simple input
+ // "(f (ite c 0 1))"
+ newChildren.push_back(node.getOperator());
+ }
for(TNode::const_iterator it = node.begin(), end = node.end();
it != end;
++it) {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback