3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-27 02:45:51 +00:00

some fixes

This commit is contained in:
Jakob Rath 2021-09-13 15:09:50 +02:00
parent cf80225fee
commit e5289f84a0
5 changed files with 13 additions and 8 deletions

View file

@ -210,14 +210,14 @@ namespace polysat {
}
void solver::propagate(sat::literal lit) {
LOG_H2("Propagate boolean literal " << lit);
LOG_H2("Propagate bool " << lit);
signed_constraint c = m_constraints.lookup(lit);
SASSERT(c);
activate_constraint(c);
}
void solver::propagate(pvar v) {
LOG_H2("Propagate pvar " << v);
LOG_H2("Propagate v" << v);
auto& wlist = m_watch[v];
unsigned i = 0, j = 0, sz = wlist.size();
for (; i < sz && !is_conflict(); ++i)