diff --git a/src/qe/mbp/mbp_arith.cpp b/src/qe/mbp/mbp_arith.cpp index 31329b3dd..a2101e2d1 100644 --- a/src/qe/mbp/mbp_arith.cpp +++ b/src/qe/mbp/mbp_arith.cpp @@ -47,7 +47,6 @@ namespace mbp { ~imp() {} void insert_mul(expr* x, rational const& v, obj_map& 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; }