mirror of
https://github.com/Z3Prover/z3
synced 2025-06-27 08:28:44 +00:00
e0 instead of first?
This commit is contained in:
parent
6f18335604
commit
a406e01fb8
1 changed files with 1 additions and 2 deletions
|
@ -744,10 +744,9 @@ namespace polysat {
|
||||||
return false;
|
return false;
|
||||||
entry const* e0 = e;
|
entry const* e0 = e;
|
||||||
|
|
||||||
|
|
||||||
do {
|
do {
|
||||||
entry const* n = e->next();
|
entry const* n = e->next();
|
||||||
while (n != first) {
|
while (n != e0) {
|
||||||
entry const* n1 = n->next();
|
entry const* n1 = n->next();
|
||||||
if (n1 == e)
|
if (n1 == e)
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue