3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-05-16 23:25:36 +00:00
This commit is contained in:
Copilot 2026-05-13 16:39:22 +02:00 committed by GitHub
commit c2ddd27765
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 528 additions and 698 deletions

View file

@ -35,6 +35,7 @@ Notes:
#include "util/ref_buffer.h"
#include "util/common_msgs.h"
#include <memory>
#include <numeric>
namespace polynomial {
@ -2687,7 +2688,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;
}