summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/quantifiers_rewriter.cpp
diff options
context:
space:
mode:
authorajreynol <andrew.j.reynolds@gmail.com>2015-06-09 11:45:14 +0200
committerajreynol <andrew.j.reynolds@gmail.com>2015-06-09 11:45:14 +0200
commit3fbe87912dbffe70cf01fdf0b4652960998ea480 (patch)
tree252c48277f8d2946823d80610c2065148fc8422e /src/theory/quantifiers/quantifiers_rewriter.cpp
parent591649f4631e348b65b61d3f1f4ccfe1f6baf7cc (diff)
Bug fix instantiations for fmf-bound-int. Disable nested pre-skolemization for non-UF logics. Update SMT COMP scripts accordingly.
Diffstat (limited to 'src/theory/quantifiers/quantifiers_rewriter.cpp')
-rw-r--r--src/theory/quantifiers/quantifiers_rewriter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/quantifiers/quantifiers_rewriter.cpp b/src/theory/quantifiers/quantifiers_rewriter.cpp
index 991043157..0afdece82 100644
--- a/src/theory/quantifiers/quantifiers_rewriter.cpp
+++ b/src/theory/quantifiers/quantifiers_rewriter.cpp
@@ -1210,7 +1210,7 @@ Node QuantifiersRewriter::preSkolemizeQuantifiers( Node n, bool polarity, std::v
return nn.negate();
}else if( n.getKind()==kind::FORALL ){
if( polarity ){
- if( options::preSkolemQuant() && ( options::preSkolemQuantNested() || fvs.empty() ) ){
+ if( options::preSkolemQuant() && options::preSkolemQuantNested() ){
vector< Node > children;
children.push_back( n[0] );
//add children to current scope
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback