summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/rewrite_engine.cpp
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2014-05-25 09:18:42 -0500
committerAndrew Reynolds <andrew.j.reynolds@gmail.com>2014-05-25 09:18:55 -0500
commit9d3f97ea91ffbf9ceea5814281a4d434d8e09a53 (patch)
treef1f9fccd3eb09b3d9333506b85ab09587e985b05 /src/theory/quantifiers/rewrite_engine.cpp
parent363b838e4a0b799da537d60632fe844c5c5e4686 (diff)
Improve quantifier instantiation: always use original terms when matching (was missing for simple triggers). Minor updates to scripts.
Diffstat (limited to 'src/theory/quantifiers/rewrite_engine.cpp')
-rw-r--r--src/theory/quantifiers/rewrite_engine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/quantifiers/rewrite_engine.cpp b/src/theory/quantifiers/rewrite_engine.cpp
index 75f54d7d9..f0c2de6da 100644
--- a/src/theory/quantifiers/rewrite_engine.cpp
+++ b/src/theory/quantifiers/rewrite_engine.cpp
@@ -153,7 +153,7 @@ int RewriteEngine::checkRewriteRule( Node f, Theory::Effort e ) {
if( inst.size()>f[0].getNumChildren() ){
inst.resize( f[0].getNumChildren() );
}
- if( d_quantEngine->addInstantiation( f, inst ) ){
+ if( d_quantEngine->addInstantiation( f, inst, false ) ){
addedLemmas++;
tempAddedLemmas++;
/*
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback