summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/conjecture_generator.cpp
diff options
context:
space:
mode:
authorajreynol <andrew.j.reynolds@gmail.com>2014-09-16 21:19:57 +0200
committerajreynol <andrew.j.reynolds@gmail.com>2014-09-16 21:19:57 +0200
commitfd058334d36acad14053388c750a81c82b5ac117 (patch)
treecb345d445ee794b01845ef434f41ab32b930743e /src/theory/quantifiers/conjecture_generator.cpp
parentbc3f6fdaf84da10f5fd5ad3a5f5700ec242dd082 (diff)
Bug fix variable triggers with --inst-max-level : use term in EQC with minimal instantiation level.
Diffstat (limited to 'src/theory/quantifiers/conjecture_generator.cpp')
-rwxr-xr-xsrc/theory/quantifiers/conjecture_generator.cpp10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/theory/quantifiers/conjecture_generator.cpp b/src/theory/quantifiers/conjecture_generator.cpp
index 018460466..9ee4aeb7c 100755
--- a/src/theory/quantifiers/conjecture_generator.cpp
+++ b/src/theory/quantifiers/conjecture_generator.cpp
@@ -1250,9 +1250,15 @@ void ConjectureGenerator::processCandidateConjecture( TNode lhs, TNode rhs, unsi
Trace("sg-conjecture-debug") << ", ";
}
Trace("sg-conjecture-debug") << it->first << " : " << it->second.size() << "/" << d_pattern_fun_id[lhs][it->first];
- if( it->second.size()==1 ){
- Trace("sg-conjecture-debug") << " (" << it->second[0] << ")";
+ //if( it->second.size()==1 ){
+ // Trace("sg-conjecture-debug") << " (" << it->second[0] << ")";
+ //}
+ Trace("sg-conjecture-debug2") << " (";
+ for( unsigned j=0; j<it->second.size(); j++ ){
+ if( j>0 ){ Trace("sg-conjecture-debug2") << " "; }
+ Trace("sg-conjecture-debug2") << it->second[j];
}
+ Trace("sg-conjecture-debug2") << ")";
firstTime = false;
}
Trace("sg-conjecture-debug") << std::endl;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback