mirror of
https://github.com/Z3Prover/z3
synced 2025-04-10 19:27:06 +00:00
change debug output
This commit is contained in:
parent
7e705c4854
commit
2f49094d49
|
@ -47,7 +47,6 @@ namespace mbp {
|
|||
~imp() {}
|
||||
|
||||
void insert_mul(expr* x, rational const& v, obj_map<expr, rational>& ts) {
|
||||
// TRACE("qe", tout << "Adding variable " << mk_pp(x, m) << " " << v << "\n";);
|
||||
rational w;
|
||||
if (ts.find(x, w))
|
||||
ts.insert(x, w + v);
|
||||
|
@ -362,6 +361,10 @@ namespace mbp {
|
|||
optdefs2mbpdef(defs, index2expr, real_vars, result);
|
||||
if (m_apply_projection)
|
||||
apply_projection(result, fmls);
|
||||
TRACE("qe",
|
||||
for (auto [v, t] : result)
|
||||
tout << v << " := " << t << "\n";
|
||||
tout << "fmls:" << fmls << "\n";);
|
||||
return result;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue