summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/quantifiers_rewriter.cpp
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2014-03-12 10:51:55 -0500
committerAndrew Reynolds <andrew.j.reynolds@gmail.com>2014-03-12 10:52:03 -0500
commit15d36d99363b4ee20754498b566bd315150953fc (patch)
tree4d66fa6c51da82d0d5654bc2489838698a9aad83 /src/theory/quantifiers/quantifiers_rewriter.cpp
parentfbc733750e54713916870b4617cdff85f19a9dd8 (diff)
Minor fixes post-merge of RR.
Diffstat (limited to 'src/theory/quantifiers/quantifiers_rewriter.cpp')
-rw-r--r--src/theory/quantifiers/quantifiers_rewriter.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/theory/quantifiers/quantifiers_rewriter.cpp b/src/theory/quantifiers/quantifiers_rewriter.cpp
index db61b046f..a079dbaab 100644
--- a/src/theory/quantifiers/quantifiers_rewriter.cpp
+++ b/src/theory/quantifiers/quantifiers_rewriter.cpp
@@ -834,11 +834,11 @@ Node QuantifiersRewriter::computeMiniscoping( Node f, std::vector< Node >& args,
}
}
}
- if( body==f[1] ){
- return f;
- }else{
- return mkForAll( args, body, ipl );
- }
+ //if( body==f[1] ){
+ // return f;
+ //}else{
+ return mkForAll( args, body, ipl );
+ //}
}
Node QuantifiersRewriter::computeAggressiveMiniscoping( std::vector< Node >& args, Node body, bool isNested ){
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback