mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 01:24:08 +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 d1 = n1 - n2;
|
||||
unsigned i = 1;
|
||||
unsigned n3;
|
||||
unsigned n3 = 0;
|
||||
S.reset();
|
||||
while (true) {
|
||||
// Compute Gh_{i+2}
|
||||
|
|
Loading…
Reference in a new issue