summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/term_database.cpp
diff options
context:
space:
mode:
authorajreynol <andrew.j.reynolds@gmail.com>2016-09-15 16:10:20 -0500
committerajreynol <andrew.j.reynolds@gmail.com>2016-09-15 16:10:20 -0500
commit1cb5f852ba17c13cc39a9c75e5bc0019c80223e8 (patch)
tree087879d07b352dd644009ecef24fe0392a90f3d7 /src/theory/quantifiers/term_database.cpp
parent60687e672ea8f485b4071e485b7b0cabc034fd00 (diff)
Begin refactoring of cbqi, remove a few dead options. Pre-skolemize by default in EPR mode.
Diffstat (limited to 'src/theory/quantifiers/term_database.cpp')
-rw-r--r--src/theory/quantifiers/term_database.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/theory/quantifiers/term_database.cpp b/src/theory/quantifiers/term_database.cpp
index a34ad116a..dee4952bd 100644
--- a/src/theory/quantifiers/term_database.cpp
+++ b/src/theory/quantifiers/term_database.cpp
@@ -175,17 +175,6 @@ void TermDb::addTerm( Node n, std::set< Node >& added, bool withinQuant, bool wi
if( d_sygus_tdb ){
d_sygus_tdb->registerEvalTerm( n );
}
-
- if( options::eagerInstQuant() ){
- for( unsigned i=0; i<n.getNumChildren(); i++ ){
- if( !n.hasAttribute(InstLevelAttribute()) && n.getAttribute(InstLevelAttribute())==0 ){
- int addedLemmas = 0;
- for( unsigned i=0; i<d_op_triggers[op].size(); i++ ){
- addedLemmas += d_op_triggers[op][i]->addTerm( n );
- }
- }
- }
- }
}
}else{
setTermInactive( n );
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback