3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-22 16:45:31 +00:00

also normalize or_op

This commit is contained in:
Jakob Rath 2024-05-06 13:26:17 +02:00
parent c7a80eaf5d
commit 0a8879b505

View file

@ -28,7 +28,8 @@ namespace polysat {
vars().push_back(v);
switch (c) {
case code::and_op:
case code::and_op: Z3_fallthrough;
case code::or_op:
if (p.index() > q.index())
std::swap(p, q);
break;