3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-23 03:27:52 +00:00

remove mc printing from goals

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-03-02 18:06:23 -08:00
parent 8b720a0d66
commit ba79700096
2 changed files with 0 additions and 16 deletions

View file

@ -337,9 +337,6 @@ 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 {
@ -373,9 +370,6 @@ 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 {
@ -397,9 +391,6 @@ 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 {
@ -418,9 +409,6 @@ 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 {