summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers_engine.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/quantifiers_engine.cpp')
-rw-r--r--src/theory/quantifiers_engine.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/theory/quantifiers_engine.cpp b/src/theory/quantifiers_engine.cpp
index da8233fc1..2975d2e70 100644
--- a/src/theory/quantifiers_engine.cpp
+++ b/src/theory/quantifiers_engine.cpp
@@ -1340,21 +1340,21 @@ void QuantifiersEngine::printInstantiations( std::ostream& out ) {
for( BoolMap::iterator it = d_skolemized.begin(); it != d_skolemized.end(); ++it ){
Node q = (*it).first;
printed = true;
- out << "Skolem constants of " << q << " : " << std::endl;
+ out << "(skolem " << q << std::endl;
out << " ( ";
for( unsigned i=0; i<d_term_db->d_skolem_constants[q].size(); i++ ){
- if( i>0 ){ out << ", "; }
+ if( i>0 ){ out << " "; }
out << d_term_db->d_skolem_constants[q][i];
}
out << " )" << std::endl;
- out << std::endl;
+ out << ")" << std::endl;
}
if( options::incrementalSolving() ){
for( std::map< Node, inst::CDInstMatchTrie* >::iterator it = d_c_inst_match_trie.begin(); it != d_c_inst_match_trie.end(); ++it ){
bool firstTime = true;
it->second->print( out, it->first, firstTime, useUnsatCore, active_lemmas );
if( !firstTime ){
- out << std::endl;
+ out << ")" << std::endl;
}
printed = printed || !firstTime;
}
@@ -1363,13 +1363,13 @@ void QuantifiersEngine::printInstantiations( std::ostream& out ) {
bool firstTime = true;
it->second.print( out, it->first, firstTime, useUnsatCore, active_lemmas );
if( !firstTime ){
- out << std::endl;
+ out << ")" << std::endl;
}
printed = printed || !firstTime;
}
}
if( !printed ){
- out << "No instantiations." << std::endl;
+ out << "No instantiations" << std::endl;
}
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback