3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-27 08:28:44 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2017-07-04 11:13:05 -07:00
parent 4132c44f8d
commit 5262248823
5 changed files with 501 additions and 240 deletions

View file

@ -1170,10 +1170,10 @@ namespace sat {
break;
}
case watched::EXT_CONSTRAINT: {
bool keep = true;
SASSERT(m_s.m_ext);
m_s.m_ext->propagate(l, it->get_ext_constraint_idx(), keep);
bool keep = m_s.m_ext->propagate(l, it->get_ext_constraint_idx());
if (m_inconsistent) {
if (!keep) ++it;
set_conflict();
}
else if (keep) {