summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/macros.cpp
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2013-11-26 19:02:21 -0600
committerAndrew Reynolds <andrew.j.reynolds@gmail.com>2013-11-26 19:02:32 -0600
commitdd7e0c66cab285c154f59ff27132059c34e09e23 (patch)
tree73d61f763801d0c115dfe2e2849abdd771918944 /src/theory/quantifiers/macros.cpp
parente45b3b0ff2ffc9bee6f090a4744f6d5eb6da8b72 (diff)
Bug fix for E-matching select terms, minor fix for bounded integers, bug fix to improve performance of quantifiers rewriter
Diffstat (limited to 'src/theory/quantifiers/macros.cpp')
-rw-r--r--src/theory/quantifiers/macros.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/quantifiers/macros.cpp b/src/theory/quantifiers/macros.cpp
index 8e1083b7b..9cd12fbfb 100644
--- a/src/theory/quantifiers/macros.cpp
+++ b/src/theory/quantifiers/macros.cpp
@@ -119,7 +119,7 @@ bool QuantifierMacros::containsBadOp( Node n, Node n_op ){
}
bool QuantifierMacros::isMacroLiteral( Node n, bool pol ){
- return pol && n.getKind()==EQUAL;//( n.getKind()==EQUAL || n.getKind()==IFF );
+ return pol && ( n.getKind()==EQUAL || n.getKind()==IFF );
}
void QuantifierMacros::getMacroCandidates( Node n, std::vector< Node >& candidates ){
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback