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

All constraints have bvars now

This commit is contained in:
Jakob Rath 2022-11-07 14:14:36 +01:00
parent 586ffdf402
commit 89acd96a89
3 changed files with 4 additions and 8 deletions

View file

@ -60,7 +60,6 @@ namespace polysat {
void clause_builder::push(signed_constraint c) {
SASSERT(c);
SASSERT(c->has_bvar());
if (c.is_always_false()) // filter out trivial constraints such as "4 < 2"
return;
if (c.is_always_true()) {