mirror of
https://github.com/Z3Prover/z3
synced 2025-04-11 03:33:35 +00:00
Merge branch 'working' of https://z3-1/gw/git/z3 into working
This commit is contained in:
commit
95fbf073f8
|
@ -1130,3 +1130,11 @@ std::ostream& operator<<(std::ostream& out, mk_ismt2_pp const & p) {
|
|||
return out;
|
||||
}
|
||||
|
||||
#ifdef Z3DEBUG
|
||||
void pp(expr const * n, ast_manager & m) {
|
||||
std::cout << mk_ismt2_pp(const_cast<expr*>(n), m) << std::endl;
|
||||
}
|
||||
void pp(expr_ref const & n) {
|
||||
std::cout << mk_ismt2_pp(n.get(), n.m()) << std::endl;
|
||||
}
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue