3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-09-03 08:38:06 +00:00

Parity bug fix

Moved div_monotonicity to extra lemma
This commit is contained in:
Clemens Eisenhofer 2023-03-06 10:12:32 +01:00
parent d80f9f83dc
commit e343a3ecd3
4 changed files with 53 additions and 10 deletions

View file

@ -111,6 +111,7 @@ namespace polysat {
out() << hline() << "\nViable (part):\n";
for (pvar v : m_used_vars)
out_indent() << "v" << std::setw(3) << std::left << v << ": " << viable::var_pp(s.m_viable, v) << "\n";
out() << "End CONFLICT #" << m_num_conflicts << "\n";
out().flush();
LOG("End CONFLICT #" << m_num_conflicts);
}