3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-04-26 05:43:33 +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

@ -1788,7 +1788,7 @@ namespace smt {
g = static_cast<unsigned>(coeff);
}
else {
g = u_gcd(g, static_cast<unsigned>(coeff));
g = std::gcd(g, static_cast<unsigned>(coeff));
}
}
if (g >= 2) {