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

e0 instead of first?

This commit is contained in:
Jakob Rath 2023-01-05 16:44:45 +01:00
parent 6f18335604
commit a406e01fb8

View file

@ -744,10 +744,9 @@ namespace polysat {
return false;
entry const* e0 = e;
do {
entry const* n = e->next();
while (n != first) {
while (n != e0) {
entry const* n1 = n->next();
if (n1 == e)
break;