mirror of
https://github.com/Z3Prover/z3
synced 2026-04-02 09:58:59 +00:00
Fix TRACE macro: use unquoted tag identifier (purify_arith not "purify_arith")
Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>
This commit is contained in:
parent
af6f89217c
commit
8c0ea9f0e7
1 changed files with 2 additions and 2 deletions
|
|
@ -174,7 +174,7 @@ class purify_arith_simplifier : public dependent_expr_simplifier {
|
|||
|
||||
void push_cnstr(expr * cnstr) {
|
||||
m_new_cnstrs.push_back(cnstr);
|
||||
TRACE("purify_arith", tout << mk_pp(cnstr, m()) << "\n";);
|
||||
TRACE(purify_arith, tout << mk_pp(cnstr, m()) << "\n";);
|
||||
}
|
||||
|
||||
void cache_result(app * t, expr * r, proof * pr) {
|
||||
|
|
@ -540,7 +540,7 @@ class purify_arith_simplifier : public dependent_expr_simplifier {
|
|||
expr_ref new_body(m());
|
||||
proof_ref new_body_pr(m());
|
||||
r(q->get_expr(), new_body, new_body_pr);
|
||||
TRACE("purify_arith",
|
||||
TRACE(purify_arith,
|
||||
tout << "body: " << mk_ismt2_pp(q->get_expr(), m()) << "\nnew_body: " << new_body << "\n";);
|
||||
result = m().update_quantifier(q, new_body);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue