3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-05 17:14:07 +00:00

Merge pull request #4325 from mtrberzi/issue4322

ignore true/false/null literals during theory case split propagation
This commit is contained in:
Murphy Berzish 2020-05-15 20:42:33 -05:00 committed by GitHub
commit ce07138008
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3018,7 +3018,8 @@ namespace smt {
literal l2 = *set_it;
if (l2 != l) {
b_justification js(l);
TRACE("theory_case_split", tout << "case split literal "; l2.display(tout, m, m_bool_var2expr.c_ptr()););
TRACE("theory_case_split", tout << "case split literal "; l2.display(tout, m, m_bool_var2expr.c_ptr()); tout << std::endl;);
if (l2 == true_literal || l2 == false_literal || l2 == null_literal) continue;
assign(~l2, js);
if (inconsistent()) {
TRACE("theory_case_split", tout << "conflict detected!" << std::endl;);