summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/term_database.cpp
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2012-10-17 02:59:07 +0000
committerAndrew Reynolds <andrew.j.reynolds@gmail.com>2012-10-17 02:59:07 +0000
commit7f10c78f572debd0ddf717bfb9f9453a42c015cb (patch)
tree37313c73fc7b3f37f956ae1eb5802eb221392955 /src/theory/quantifiers/term_database.cpp
parentd9d71e0d7885d32ef44fbd08d47b3cccd35ff6f7 (diff)
first working version of new inst-gen-style quantifier instantiation technique for fmf (--fmf-new-inst-gen), minor cleanup
Diffstat (limited to 'src/theory/quantifiers/term_database.cpp')
-rw-r--r--src/theory/quantifiers/term_database.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/quantifiers/term_database.cpp b/src/theory/quantifiers/term_database.cpp
index c8c884974..3b2778061 100644
--- a/src/theory/quantifiers/term_database.cpp
+++ b/src/theory/quantifiers/term_database.cpp
@@ -216,7 +216,7 @@ void TermDb::addTerm( Node n, std::set< Node >& added, bool withinQuant ){
Node TermDb::getModelBasisTerm( TypeNode tn, int i ){
if( d_model_basis_term.find( tn )==d_model_basis_term.end() ){
Node mbt;
- if( d_type_map[ tn ].empty() || options::fmfNewInstGen() ){
+ if( d_type_map[ tn ].empty() ){
std::stringstream ss;
ss << Expr::setlanguage(options::outputLanguage());
ss << "e_" << tn;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback