mirror of
https://github.com/Z3Prover/z3
synced 2025-08-23 11:37:54 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
c4d168205a
commit
8b720a0d66
8 changed files with 34 additions and 11 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue