summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/inst_match.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/quantifiers/inst_match.cpp')
-rw-r--r--src/theory/quantifiers/inst_match.cpp37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/theory/quantifiers/inst_match.cpp b/src/theory/quantifiers/inst_match.cpp
index a74c51a9a..096d0cab2 100644
--- a/src/theory/quantifiers/inst_match.cpp
+++ b/src/theory/quantifiers/inst_match.cpp
@@ -198,6 +198,24 @@ bool InstMatchTrie::addInstMatch( QuantifiersEngine* qe, Node f, std::vector< No
}
}
+void InstMatchTrie::print( const char * c, Node q, std::vector< Node >& terms ) const {
+ if( terms.size()==q[0].getNumChildren() ){
+ Trace(c) << " ( ";
+ for( unsigned i=0; i<terms.size(); i++ ){
+ if( i>0 ) Trace(c) << ", ";
+ Trace(c) << terms[i];
+ }
+ Trace(c) << " )" << std::endl;
+ }else{
+ for( std::map< Node, InstMatchTrie >::const_iterator it = d_data.begin(); it != d_data.end(); ++it ){
+ terms.push_back( it->first );
+ it->second.print( c, q, terms );
+ terms.pop_back();
+ }
+ }
+}
+
+
bool CDInstMatchTrie::addInstMatch( QuantifiersEngine* qe, Node f, std::vector< Node >& m,
context::Context* c, bool modEq, bool modInst, int index, bool onlyExist ){
bool reset = false;
@@ -264,6 +282,25 @@ bool CDInstMatchTrie::addInstMatch( QuantifiersEngine* qe, Node f, std::vector<
}
}
+void CDInstMatchTrie::print( const char * c, Node q, std::vector< Node >& terms ) const{
+ if( d_valid.get() ){
+ if( terms.size()==q[0].getNumChildren() ){
+ Trace(c) << " ( ";
+ for( unsigned i=0; i<terms.size(); i++ ){
+ if( i>0 ) Trace(c) << ", ";
+ Trace(c) << terms[i];
+ }
+ Trace(c) << " )" << std::endl;
+ }else{
+ for( std::map< Node, CDInstMatchTrie* >::const_iterator it = d_data.begin(); it != d_data.end(); ++it ){
+ terms.push_back( it->first );
+ it->second->print( c, q, terms );
+ terms.pop_back();
+ }
+ }
+ }
+}
+
}/* CVC4::theory::inst namespace */
}/* CVC4::theory namespace */
}/* CVC4 namespace */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback