3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-05-16 15:15:35 +00:00
This commit is contained in:
Nuno Lopes 2026-02-17 14:11:41 +00:00
parent 4a8aeb0050
commit 6db067ca67
5 changed files with 77 additions and 127 deletions

View file

@ -2687,7 +2687,7 @@ namespace polynomial {
}
if (j == 1 || j == -1)
return;
g = u_gcd(abs(j), g);
g = std::gcd(abs(j), g);
if (g == 1)
return;
}