mirror of
https://github.com/Z3Prover/z3
synced 2026-05-16 15:15:35 +00:00
fixes
This commit is contained in:
parent
4a8aeb0050
commit
6db067ca67
5 changed files with 77 additions and 127 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue