3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-23 11:37:54 +00:00

fix #3115 fix #3116 regressions from #3111 etc

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-03-02 16:38:33 -08:00
parent c4d168205a
commit 8b720a0d66
8 changed files with 34 additions and 11 deletions

View file

@ -337,6 +337,9 @@ void goal::display(ast_printer & prn, std::ostream & out) const {
prn.display(out, form(i), 2);
}
out << "\n :precision " << prec() << " :depth " << depth() << ")" << std::endl;
if (m_mc) {
m_mc->display(out);
}
}
void goal::display_with_dependencies(ast_printer & prn, std::ostream & out) const {
@ -370,6 +373,9 @@ void goal::display_with_dependencies(ast_printer & prn, std::ostream & out) cons
out << ")";
}
out << "\n :precision " << prec() << " :depth " << depth() << ")" << std::endl;
if (m_mc) {
m_mc->display(out);
}
}
void goal::display_with_dependencies(std::ostream & out) const {
@ -391,6 +397,9 @@ void goal::display_with_dependencies(std::ostream & out) const {
out << "\n " << mk_ismt2_pp(form(i), m(), 2);
}
out << "\n :precision " << prec() << " :depth " << depth() << ")" << std::endl;
if (m_mc) {
m_mc->display(out);
}
}
void goal::display(ast_printer_context & ctx) const {
@ -409,6 +418,9 @@ void goal::display(std::ostream & out) const {
out << mk_ismt2_pp(form(i), m(), 2);
}
out << ")" << std::endl;
if (m_mc) {
m_mc->display(out);
}
}
void goal::display_as_and(std::ostream & out) const {