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

remove propagate_bool_at, it is technically not propagating but assigning

This commit is contained in:
Nikolaj Bjorner 2021-09-19 08:47:14 -04:00
parent 16d48c17dd
commit 58c66ffee8
4 changed files with 43 additions and 49 deletions

View file

@ -124,7 +124,7 @@ namespace polysat {
if (first)
s.set_conflict(cl);
else
s.propagate_bool_at(s.level(cl), cl[0], &cl);
s.assign_bool(s.level(cl), cl[0], &cl, nullptr);
}
void constraint_manager::unwatch(clause& cl) {