mirror of
https://github.com/Z3Prover/z3
synced 2026-05-16 23:25:36 +00:00
Merge e6607df831 into 2f7ff62173
This commit is contained in:
commit
c2ddd27765
9 changed files with 528 additions and 698 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue