summaryrefslogtreecommitdiff
path: root/src/theory/sets
diff options
context:
space:
mode:
authorKshitij Bansal <kshitij@cs.nyu.edu>2014-06-11 12:09:39 -0400
committerKshitij Bansal <kshitij@cs.nyu.edu>2014-06-11 14:35:58 -0400
commitdcd621fb9e54cc60d9fab354312fe04e4aab5d93 (patch)
tree20bf333d38286133596954eadb86f1b258fdd43c /src/theory/sets
parentba2fb207c5c8b3c9ba0331ad114855b35dad7d16 (diff)
fix in sets rewriter
Diffstat (limited to 'src/theory/sets')
-rw-r--r--src/theory/sets/theory_sets_rewriter.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/theory/sets/theory_sets_rewriter.cpp b/src/theory/sets/theory_sets_rewriter.cpp
index bcfbc46ae..7b02c1bfb 100644
--- a/src/theory/sets/theory_sets_rewriter.cpp
+++ b/src/theory/sets/theory_sets_rewriter.cpp
@@ -117,10 +117,6 @@ RewriteResponse TheorySetsRewriter::postRewrite(TNode node) {
node[1].getKind() == kind::EMPTYSET) {
Trace("sets-postrewrite") << "Sets::postRewrite returning " << node[0] << std::endl;
return RewriteResponse(REWRITE_DONE, node[0]);
- } else if (node[0] > node[1]) {
- Node newNode = nm->mkNode(node.getKind(), node[1], node[0]);
- Trace("sets-postrewrite") << "Sets::postRewrite returning " << newNode << std::endl;
- return RewriteResponse(REWRITE_DONE, newNode);
}
break;
}//kind::INTERSECION
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback