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