3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-03-02 19:56:54 +00:00

unsat core

This commit is contained in:
Jakob Rath 2022-03-18 15:49:44 +01:00
parent 509a007ed7
commit fd353bff17
3 changed files with 11 additions and 2 deletions

View file

@ -518,7 +518,7 @@ namespace polysat {
break;
case dd::find_t::empty:
m_free_pvars.unassign_var_eh(v);
// TODO: get unsat core from univariate solver
auto core = m_viable_fallback.unsat_core(v); // TODO: add constraints from unsat_core to conflict
set_conflict(v);
return;
}