3
0
Fork 0
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:
EyalBrilling 2023-11-10 12:36:24 +02:00 committed by GitHub
parent 0556059bdf
commit aa9c7912dc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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}