3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-12-15 08:48:58 +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

@ -120,8 +120,8 @@ namespace polysat {
SASSERT(bound * p.val() > max);
SASSERT((bound - 1) * p.val() <= max);
clause_builder cb(s);
cb.insert(~sc);
cb.insert(~premise);
cb.insert_eval(~sc);
cb.insert_eval(~premise);
cb.insert(conseq);
clause_ref just = cb.build();
SASSERT(just);