mirror of
https://github.com/vale981/arb
synced 2025-03-06 09:51:39 -05:00
Merge pull request #60 from argriffing/flint-compat-gcd
MAINT: use n_gcd_full for FLINT 2.4 compatibility
This commit is contained in:
commit
c74fa112d1
1 changed files with 1 additions and 1 deletions
|
@ -126,7 +126,7 @@ acb_modular_hilbert_class_poly(fmpz_poly_t res, slong D)
|
|||
|
||||
do
|
||||
{
|
||||
if (ac % a == 0 && n_gcd(n_gcd(a, b), ac/a) == 1)
|
||||
if (ac % a == 0 && n_gcd_full(n_gcd(a, b), ac/a) == 1)
|
||||
{
|
||||
c = ac / a;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue