3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-07-19 19:02:02 +00:00

fix debug build

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2017-10-16 09:05:25 -07:00
parent 00a401260e
commit d9ccb3928e
3 changed files with 3 additions and 5 deletions

View file

@ -121,7 +121,6 @@ namespace sat{
bdd b = m.mk_exists(m_var2index[v], b0);
TRACE("elim_vars",
tout << "eliminate " << v << "\n";
tout << "clauses : " << clause_size << "\n";
for (watched const& w : simp.get_wlist(~pos_l)) {
if (w.is_binary_non_learned_clause()) {
tout << pos_l << " " << w.get_literal() << "\n";
@ -150,7 +149,7 @@ namespace sat{
m.display(tout, b4);
tout << "eliminated:\n";
tout << b << "\n";
tout << m.cnf_size(b) << "\n";
tout << b.cnf_size() << "\n";
);
return b;