summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/term_database.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/quantifiers/term_database.cpp')
-rw-r--r--src/theory/quantifiers/term_database.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/theory/quantifiers/term_database.cpp b/src/theory/quantifiers/term_database.cpp
index 5dc8bb384..a95de086a 100644
--- a/src/theory/quantifiers/term_database.cpp
+++ b/src/theory/quantifiers/term_database.cpp
@@ -398,9 +398,11 @@ void TermDb::reset( Theory::Effort effort ){
if( !it->second.empty() ){
for( unsigned i=0; i<it->second.size(); i++ ){
Node n = it->second[i];
- computeModelBasisArgAttribute( n );
if( hasTermCurrent( n ) ){
if( !n.getAttribute(NoMatchAttribute()) ){
+ if( options::finiteModelFind() ){
+ computeModelBasisArgAttribute( n );
+ }
computeArgReps( n );
if( !d_func_map_trie[ it->first ].addTerm( n, d_arg_reps[n] ) ){
NoMatchAttribute nma;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback