3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-22 16:45:31 +00:00

disable the assert that can fire because of the cube heuristic

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2019-06-27 13:16:48 -07:00
parent 902a223b34
commit 8d318e81b9

View file

@ -1405,11 +1405,9 @@ std::ostream& core::print_terms(std::ostream& out) const {
print_term(t, out) << std::endl;
lpvar j = m_lar_solver.external_to_local(ext);
SASSERT(j + 1);
SASSERT(value(t) == val(j));
print_var(j, out);
out << "term again "; print_term(t, out) << std::endl;
auto e = mk_expr(t);
out << "e= " << e << "\n";
print_var(j, out);
}
return out;
}