mirror of
https://github.com/Z3Prover/z3
synced 2025-04-07 09:55:19 +00:00
fixed possible undefined variable assigment (#6985)
This commit is contained in:
parent
0556059bdf
commit
aa9c7912dc
|
@ -5648,7 +5648,7 @@ namespace polynomial {
|
||||||
unsigned d0 = 0;
|
unsigned d0 = 0;
|
||||||
unsigned d1 = n1 - n2;
|
unsigned d1 = n1 - n2;
|
||||||
unsigned i = 1;
|
unsigned i = 1;
|
||||||
unsigned n3;
|
unsigned n3 = 0;
|
||||||
S.reset();
|
S.reset();
|
||||||
while (true) {
|
while (true) {
|
||||||
// Compute Gh_{i+2}
|
// Compute Gh_{i+2}
|
||||||
|
|
Loading…
Reference in a new issue