3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-26 13:06:05 +00:00

Keep value_propagate for now

This commit is contained in:
Jakob Rath 2022-12-12 13:57:30 +01:00
parent 759d8f2a94
commit 587e77648a
2 changed files with 4 additions and 3 deletions

View file

@ -142,7 +142,8 @@ namespace polysat {
return;
if (value_propagate) {
#if 0 // this should be already done with insert_eval when constructing the clause (maybe not for non-redundant clauses?)
#if 1 // this should be already done with insert_eval when constructing the clause (maybe not for non-redundant clauses?)
// (this loop also masks the mistake of calling clause_builder::insert instead of clause_builder::insert_eval)
for (sat::literal lit : cl) {
if (s.m_bvars.is_false(lit))
continue;