mirror of
https://github.com/Z3Prover/z3
synced 2025-06-19 04:13:38 +00:00
remove mc printing from goals
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
8b720a0d66
commit
ba79700096
2 changed files with 0 additions and 16 deletions
|
@ -188,10 +188,6 @@ lbool tactic2solver::check_sat_core2(unsigned num_assumptions, expr * const * as
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if (m_mc && md) {
|
|
||||||
// (*m_mc)(md);
|
|
||||||
|
|
||||||
}
|
|
||||||
TRACE("tactic",
|
TRACE("tactic",
|
||||||
if (m_mc) m_mc->display(tout << "mc:");
|
if (m_mc) m_mc->display(tout << "mc:");
|
||||||
if (g->mc()) g->mc()->display(tout << "g:");
|
if (g->mc()) g->mc()->display(tout << "g:");
|
||||||
|
|
|
@ -337,9 +337,6 @@ void goal::display(ast_printer & prn, std::ostream & out) const {
|
||||||
prn.display(out, form(i), 2);
|
prn.display(out, form(i), 2);
|
||||||
}
|
}
|
||||||
out << "\n :precision " << prec() << " :depth " << depth() << ")" << std::endl;
|
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 {
|
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 << ")";
|
||||||
}
|
}
|
||||||
out << "\n :precision " << prec() << " :depth " << depth() << ")" << std::endl;
|
out << "\n :precision " << prec() << " :depth " << depth() << ")" << std::endl;
|
||||||
if (m_mc) {
|
|
||||||
m_mc->display(out);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void goal::display_with_dependencies(std::ostream & out) const {
|
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 " << mk_ismt2_pp(form(i), m(), 2);
|
||||||
}
|
}
|
||||||
out << "\n :precision " << prec() << " :depth " << depth() << ")" << std::endl;
|
out << "\n :precision " << prec() << " :depth " << depth() << ")" << std::endl;
|
||||||
if (m_mc) {
|
|
||||||
m_mc->display(out);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void goal::display(ast_printer_context & ctx) const {
|
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 << mk_ismt2_pp(form(i), m(), 2);
|
||||||
}
|
}
|
||||||
out << ")" << std::endl;
|
out << ")" << std::endl;
|
||||||
if (m_mc) {
|
|
||||||
m_mc->display(out);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void goal::display_as_and(std::ostream & out) const {
|
void goal::display_as_and(std::ostream & out) const {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue