mirror of
https://github.com/Z3Prover/z3
synced 2025-04-27 02:45:51 +00:00
some fixes
This commit is contained in:
parent
cf80225fee
commit
e5289f84a0
5 changed files with 13 additions and 8 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue