Code coverage tests

This page documents the degree to which the PARI/GP source code is tested by our public test suite, distributed with the source distribution in directory src/test/. This is measured by the gcov utility; we then process gcov output using the lcov frond-end.

We test a few variants depending on Configure flags on the pari.math.u-bordeaux.fr machine (x86_64 architecture), and agregate them in the final report:

The target is to exceed 90% coverage for all mathematical modules (given that branches depending on DEBUGLEVEL or DEBUGMEM are not covered). This script is run to produce the results below.

LCOV - code coverage report
Current view: top level - basemath - polarit2.c (source / functions) Hit Total Coverage
Test: PARI/GP v2.18.1 lcov report (development 29873-a0b27995a4) Lines: 2241 2480 90.4 %
Date: 2025-01-14 09:09:31 Functions: 210 220 95.5 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* Copyright (C) 2000  The PARI group.
       2             : 
       3             : This file is part of the PARI/GP package.
       4             : 
       5             : PARI/GP is free software; you can redistribute it and/or modify it under the
       6             : terms of the GNU General Public License as published by the Free Software
       7             : Foundation; either version 2 of the License, or (at your option) any later
       8             : version. It is distributed in the hope that it will be useful, but WITHOUT
       9             : ANY WARRANTY WHATSOEVER.
      10             : 
      11             : Check the License for details. You should have received a copy of it, along
      12             : with the package; see the file 'COPYING'. If not, write to the Free Software
      13             : Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */
      14             : 
      15             : /***********************************************************************/
      16             : /**                                                                   **/
      17             : /**               ARITHMETIC OPERATIONS ON POLYNOMIALS                **/
      18             : /**                         (second part)                             **/
      19             : /**                                                                   **/
      20             : /***********************************************************************/
      21             : #include "pari.h"
      22             : #include "paripriv.h"
      23             : 
      24             : #define DEBUGLEVEL DEBUGLEVEL_pol
      25             : 
      26             : /* compute Newton sums S_1(P), ... , S_n(P). S_k(P) = sum a_j^k, a_j root of P
      27             :  * If N != NULL, assume p-adic roots and compute mod N [assume integer coeffs]
      28             :  * If T != NULL, compute mod (T,N) [assume integer coeffs if N != NULL]
      29             :  * If y0!= NULL, precomputed i-th powers, i=1..m, m = length(y0).
      30             :  * Not memory clean in the latter case */
      31             : GEN
      32      130706 : polsym_gen(GEN P, GEN y0, long n, GEN T, GEN N)
      33             : {
      34      130706 :   long dP=degpol(P), i, k, m;
      35             :   pari_sp av1, av2;
      36             :   GEN s,y,P_lead;
      37             : 
      38      130706 :   if (n<0) pari_err_IMPL("polsym of a negative n");
      39      130706 :   if (typ(P) != t_POL) pari_err_TYPE("polsym",P);
      40      130706 :   if (!signe(P)) pari_err_ROOTS0("polsym");
      41      130706 :   y = cgetg(n+2,t_COL);
      42      130706 :   if (y0)
      43             :   {
      44       13237 :     if (typ(y0) != t_COL) pari_err_TYPE("polsym_gen",y0);
      45       13237 :     m = lg(y0)-1;
      46       63987 :     for (i=1; i<=m; i++) gel(y,i) = gel(y0,i); /* not memory clean */
      47             :   }
      48             :   else
      49             :   {
      50      117469 :     m = 1;
      51      117469 :     gel(y,1) = stoi(dP);
      52             :   }
      53      130705 :   P += 2; /* strip codewords */
      54             : 
      55      130705 :   P_lead = gel(P,dP); if (gequal1(P_lead)) P_lead = NULL;
      56      130704 :   if (P_lead)
      57             :   {
      58           7 :     if (N) P_lead = Fq_inv(P_lead,T,N);
      59           7 :     else if (T) P_lead = QXQ_inv(P_lead,T);
      60             :   }
      61      388149 :   for (k=m; k<=n; k++)
      62             :   {
      63      257444 :     av1 = avma; s = (dP>=k)? gmulsg(k,gel(P,dP-k)): gen_0;
      64      744892 :     for (i=1; i<k && i<=dP; i++)
      65      487455 :       s = gadd(s, gmul(gel(y,k-i+1),gel(P,dP-i)));
      66      257437 :     if (N)
      67             :     {
      68       18760 :       s = Fq_red(s, T, N);
      69       18760 :       if (P_lead) s = Fq_mul(s, P_lead, T, N);
      70             :     }
      71      238677 :     else if (T)
      72             :     {
      73           0 :       s = grem(s, T);
      74           0 :       if (P_lead) s = grem(gmul(s, P_lead), T);
      75             :     }
      76             :     else
      77      238677 :       if (P_lead) s = gdiv(s, P_lead);
      78      257437 :     av2 = avma; gel(y,k+1) = gerepile(av1,av2, gneg(s));
      79             :   }
      80      130705 :   return y;
      81             : }
      82             : 
      83             : GEN
      84      113290 : polsym(GEN x, long n)
      85             : {
      86      113290 :   return polsym_gen(x, NULL, n, NULL,NULL);
      87             : }
      88             : 
      89             : /* centered residue x mod p. po2 = shifti(p, -1) or NULL (euclidean residue) */
      90             : GEN
      91    87828721 : centermodii(GEN x, GEN p, GEN po2)
      92             : {
      93    87828721 :   GEN y = remii(x, p);
      94    87905415 :   switch(signe(y))
      95             :   {
      96    10622142 :     case 0: break;
      97    54440718 :     case 1: if (po2 && abscmpii(y,po2) > 0) y = subii(y, p);
      98    54248198 :       break;
      99    23227775 :     case -1: if (!po2 || abscmpii(y,po2) > 0) y = addii(y, p);
     100    22985351 :       break;
     101             :   }
     102    87470471 :   return y;
     103             : }
     104             : 
     105             : static long
     106           0 : s_centermod(long x, ulong pp, ulong pps2)
     107             : {
     108           0 :   long y = x % (long)pp;
     109           0 :   if (y < 0) y += pp;
     110           0 :   return Fl_center(y, pp,pps2);
     111             : }
     112             : 
     113             : /* for internal use */
     114             : GEN
     115    14471778 : centermod_i(GEN x, GEN p, GEN ps2)
     116             : {
     117             :   long i, lx;
     118             :   pari_sp av;
     119             :   GEN y;
     120             : 
     121    14471778 :   if (!ps2) ps2 = shifti(p,-1);
     122    14471350 :   switch(typ(x))
     123             :   {
     124     1416888 :     case t_INT: return centermodii(x,p,ps2);
     125             : 
     126     6095128 :     case t_POL: lx = lg(x);
     127     6095128 :       y = cgetg(lx,t_POL); y[1] = x[1];
     128    42031116 :       for (i=2; i<lx; i++)
     129             :       {
     130    35934848 :         av = avma;
     131    35934848 :         gel(y,i) = gerepileuptoint(av, centermodii(gel(x,i),p,ps2));
     132             :       }
     133     6096268 :       return normalizepol_lg(y, lx);
     134             : 
     135    29636490 :     case t_COL: pari_APPLY_same(centermodii(gel(x,i),p,ps2));
     136       13531 :     case t_MAT: pari_APPLY_same(centermod_i(gel(x,i),p,ps2));
     137             : 
     138           0 :     case t_VECSMALL: lx = lg(x);
     139             :     {
     140           0 :       ulong pp = itou(p), pps2 = itou(ps2);
     141           0 :       pari_APPLY_long(s_centermod(x[i], pp, pps2));
     142             :     }
     143             :   }
     144           0 :   return x;
     145             : }
     146             : 
     147             : GEN
     148    10958256 : centermod(GEN x, GEN p) { return centermod_i(x,p,NULL); }
     149             : 
     150             : static GEN
     151         343 : RgX_Frobenius_deflate(GEN S, ulong p)
     152             : {
     153         343 :   if (degpol(S)%p)
     154           0 :     return NULL;
     155             :   else
     156             :   {
     157         343 :     GEN F = RgX_deflate(S, p);
     158         343 :     long i, l = lg(F);
     159        1043 :     for (i=2; i<l; i++)
     160             :     {
     161         721 :       GEN Fi = gel(F,i), R;
     162         721 :       if (typ(Fi)==t_POL)
     163             :       {
     164         259 :         if (signe(RgX_deriv(Fi))==0)
     165         238 :           gel(F,i) = RgX_Frobenius_deflate(gel(F, i), p);
     166          21 :         else return NULL;
     167             :       }
     168         462 :       else if (ispower(Fi, utoi(p), &R))
     169         462 :         gel(F,i) = R;
     170           0 :       else return NULL;
     171             :     }
     172         322 :     return F;
     173             :   }
     174             : }
     175             : 
     176             : static GEN
     177         245 : RgXY_squff(GEN f)
     178             : {
     179         245 :   long i, q, n = degpol(f);
     180         245 :   ulong p = itos_or_0(characteristic(f));
     181         245 :   GEN u = const_vec(n+1, pol_1(varn(f)));
     182         245 :   for(q = 1;;q *= p)
     183          84 :   {
     184         329 :     GEN t, v, tv, r = RgX_gcd(f, RgX_deriv(f));
     185         329 :     if (degpol(r) == 0) { gel(u, q) = f; break; }
     186         126 :     t = RgX_div(f, r);
     187         126 :     if (degpol(t) > 0)
     188             :     {
     189             :       long j;
     190          28 :       for(j = 1;;j++)
     191             :       {
     192         140 :         v = RgX_gcd(r, t);
     193         140 :         tv = RgX_div(t, v);
     194         140 :         if (degpol(tv) > 0) gel(u, j*q) = tv;
     195         140 :         if (degpol(v) <= 0) break;
     196         112 :         r = RgX_div(r, v);
     197         112 :         t = v;
     198             :       }
     199          28 :       if (degpol(r) == 0) break;
     200             :     }
     201         105 :     if (!p) break;
     202         105 :     f = RgX_Frobenius_deflate(r, p);
     203         105 :     if (!f) { gel(u, q) = r; break; }
     204             :   }
     205         931 :   for (i = n; i; i--)
     206         931 :     if (degpol(gel(u,i))) break;
     207         245 :   setlg(u,i+1); return u;
     208             : }
     209             : 
     210             : /* Lmod contains modular factors of *F (NULL codes an empty slot: used factor)
     211             :  * Lfac accumulates irreducible factors as they are found.
     212             :  * p is a product of modular factors in Lmod[1..i-1] (NULL for p = 1), not
     213             :  * a rational factor of *F
     214             :  * Find an irreducible factor of *F divisible by p (by including
     215             :  * exhaustively further factors from Lmod[i..]); return 0 on failure, else 1.
     216             :  * Update Lmod, Lfac and *F */
     217             : static int
     218        6475 : RgX_cmbf(GEN p, long i, GEN BLOC, GEN Lmod, GEN Lfac, GEN *F)
     219             : {
     220             :   pari_sp av;
     221             :   GEN q;
     222        6475 :   if (i == lg(Lmod)) return 0;
     223        3388 :   if (RgX_cmbf(p, i+1, BLOC, Lmod, Lfac, F) && p) return 1;
     224        3206 :   if (!gel(Lmod,i)) return 0;
     225        3157 :   p = p? RgX_mul(p, gel(Lmod,i)): gel(Lmod,i);
     226        3157 :   av = avma;
     227        3157 :   q = RgV_to_RgX(RgX_digits(p, BLOC), varn(*F));
     228        3157 :   if (degpol(q))
     229             :   {
     230        2779 :     GEN R, Q = RgX_divrem(*F, q, &R);
     231        2779 :     if (signe(R)==0) { vectrunc_append(Lfac, q); *F = Q; return 1; }
     232             :   }
     233        2828 :   set_avma(av);
     234        2828 :   if (RgX_cmbf(p, i+1, BLOC, Lmod, Lfac, F)) { gel(Lmod,i) = NULL; return 1; }
     235        2569 :   return 0;
     236             : }
     237             : 
     238             : static GEN factor_domain(GEN x, GEN flag);
     239             : 
     240             : static GEN
     241         434 : ok_bloc(GEN f, GEN BLOC, ulong c)
     242             : {
     243         434 :   GEN F = poleval(f, BLOC);
     244         434 :   return issquarefree(c ? gmul(F,mkintmodu(1,c)): F)? F: NULL;
     245             : }
     246             : static GEN
     247         112 : random_FpX_monic(long n, long v, GEN p)
     248             : {
     249         112 :   long i, d = n + 2;
     250         112 :   GEN y = cgetg(d + 1, t_POL); y[1] = evalsigne(1) | evalvarn(v);
     251         364 :   for (i = 2; i < d; i++) gel(y,i) = randomi(p);
     252         112 :   gel(y,i) = gen_1; return y;
     253             : }
     254             : static GEN
     255         273 : RgXY_factor_squarefree(GEN f, GEN dom)
     256             : {
     257         273 :   pari_sp av = avma;
     258         273 :   ulong i, c = itou_or_0(residual_characteristic(f));
     259         273 :   long vy = gvar2(f), val = RgX_valrem(f, &f), n = RgXY_degreex(f);
     260         273 :   GEN y, Lmod, F = NULL, BLOC = NULL, Lfac = coltrunc_init(degpol(f)+2);
     261         273 :   GEN gc = c? utoipos(c): NULL;
     262         273 :   if (val)
     263             :   {
     264          35 :     GEN x = pol_x(varn(f));
     265          35 :     if (dom)
     266             :     {
     267          14 :       GEN one = Rg_get_1(dom);
     268          14 :       if (typ(one) != t_INT) x = RgX_Rg_mul(x, one);
     269             :     }
     270          35 :     vectrunc_append(Lfac, x); if (!degpol(f)) return Lfac;
     271             :   }
     272         259 :   y = pol_x(vy);
     273             :   for(;;)
     274             :   {
     275         322 :     for (i = 0; !c || i < c; i++)
     276             :     {
     277         322 :       BLOC = gpowgs(gaddgs(y, i), n+1);
     278         322 :       if ((F = ok_bloc(f, BLOC, c))) break;
     279         147 :       if (c)
     280             :       {
     281         112 :         BLOC = random_FpX_monic(n, vy, gc);
     282         112 :         if ((F = ok_bloc(f, BLOC, c))) break;
     283             :       }
     284             :     }
     285         259 :     if (!c || i < c) break;
     286           0 :     n++;
     287             :   }
     288         259 :   if (DEBUGLEVEL >= 2)
     289           0 :     err_printf("bifactor: bloc:(x+%ld)^%ld, deg f=%ld\n",i,n,RgXY_degreex(f));
     290         259 :   Lmod = gel(factor_domain(F,dom),1);
     291         259 :   if (DEBUGLEVEL >= 2)
     292           0 :     err_printf("bifactor: %ld local factors\n",lg(Lmod)-1);
     293         259 :   (void)RgX_cmbf(NULL, 1, BLOC, Lmod, Lfac, &f);
     294         259 :   if (degpol(f)) vectrunc_append(Lfac, f);
     295         259 :   return gerepilecopy(av, Lfac);
     296             : }
     297             : 
     298             : static GEN
     299         245 : FE_matconcat(GEN F, GEN E, long l)
     300             : {
     301         245 :   setlg(E,l); E = shallowconcat1(E);
     302         245 :   setlg(F,l); F = shallowconcat1(F); return mkmat2(F,E);
     303             : }
     304             : 
     305             : static int
     306         385 : gen_cmp_RgXY(void *data, GEN x, GEN y)
     307             : {
     308         385 :   long vx = varn(x), vy = varn(y);
     309         385 :   return (vx == vy)? gen_cmp_RgX(data, x, y): -varncmp(vx, vy);
     310             : }
     311             : static GEN
     312         245 : RgXY_factor(GEN f, GEN dom)
     313             : {
     314         245 :   pari_sp av = avma;
     315             :   GEN C, F, E, cf, V;
     316             :   long i, j, l;
     317         245 :   if (dom) { GEN c = Rg_get_1(dom); if (typ(c) != t_INT) f = RgX_Rg_mul(f,c); }
     318         245 :   cf = content(f);
     319         245 :   V = RgXY_squff(gdiv(f, cf)); l = lg(V);
     320         245 :   C = factor_domain(cf, dom);
     321         245 :   F = cgetg(l+1, t_VEC); gel(F,1) = gel(C,1);
     322         245 :   E = cgetg(l+1, t_VEC); gel(E,1) = gel(C,2);
     323         756 :   for (i=1, j=2; i < l; i++)
     324             :   {
     325         511 :     GEN v = gel(V,i);
     326         511 :     if (degpol(v))
     327             :     {
     328         273 :       gel(F,j) = v = RgXY_factor_squarefree(v, dom);
     329         273 :       gel(E,j) = const_col(lg(v)-1, utoipos(i));
     330         273 :       j++;
     331             :     }
     332             :   }
     333         245 :   f = FE_matconcat(F,E,j);
     334         245 :   (void)sort_factor(f,(void*)cmp_universal, &gen_cmp_RgXY);
     335         245 :   return gerepilecopy(av, f);
     336             : }
     337             : 
     338             : /***********************************************************************/
     339             : /**                                                                   **/
     340             : /**                          FACTORIZATION                            **/
     341             : /**                                                                   **/
     342             : /***********************************************************************/
     343             : static long RgX_settype(GEN x, long *t, GEN *p, GEN *pol, long *pa, GEN *ff, long *t2, long *var);
     344             : #define assign_or_fail(x,y) { GEN __x = x;\
     345             :   if (!*y) *y=__x; else if (!gequal(__x,*y)) return 0;\
     346             : }
     347             : #define update_prec(x,y) { long __x = x; if (__x < *y) *y=__x; }
     348             : 
     349             : static const long tsh = 6;
     350             : #define code(t1,t2) ((t1 << 6) | t2)
     351             : void
     352    11687198 : RgX_type_decode(long x, long *t1, long *t2)
     353             : {
     354    11687198 :   *t1 = x >> tsh;
     355    11687198 :   *t2 = (x & ((1L<<tsh)-1));
     356    11687198 : }
     357             : int
     358   163299789 : RgX_type_is_composite(long t) { return t >= tsh; }
     359             : 
     360             : static int
     361  3150353974 : settype(GEN c, long *t, GEN *p, GEN *pol, long *pa, GEN *ff, long *t2, long *var)
     362             : {
     363             :   long j;
     364  3150353974 :   switch(typ(c))
     365             :   {
     366  2411414893 :     case t_INT:
     367  2411414893 :       break;
     368    32421629 :     case t_FRAC:
     369    32421629 :       t[1]=1; break;
     370             :       break;
     371   292742474 :     case t_REAL:
     372   292742474 :       update_prec(precision(c), pa);
     373   292742128 :       t[2]=1; break;
     374    30653201 :     case t_INTMOD:
     375    30653201 :       assign_or_fail(gel(c,1),p);
     376    30653201 :       t[3]=1; break;
     377     1915493 :     case t_FFELT:
     378     1915493 :       if (!*ff) *ff=c; else if (!FF_samefield(c,*ff)) return 0;
     379     1915493 :       assign_or_fail(FF_p_i(c),p);
     380     1915493 :       t[5]=1; break;
     381   324185264 :     case t_COMPLEX:
     382   972552725 :       for (j=1; j<=2; j++)
     383             :       {
     384   648367774 :         GEN d = gel(c,j);
     385   648367774 :         switch(typ(d))
     386             :         {
     387     2343621 :           case t_INT: case t_FRAC:
     388     2343621 :             if (!*t2) *t2 = t_COMPLEX;
     389     2343621 :             t[1]=1; break;
     390   646024118 :           case t_REAL:
     391   646024118 :             update_prec(precision(d), pa);
     392   646023812 :             if (!*t2) *t2 = t_COMPLEX;
     393   646023812 :             t[2]=1; break;
     394          14 :           case t_INTMOD:
     395          14 :             assign_or_fail(gel(d,1),p);
     396          14 :             if (!signe(*p) || mod4(*p) != 3) return 0;
     397           7 :             if (!*t2) *t2 = t_COMPLEX;
     398           7 :             t[3]=1; break;
     399          21 :           case t_PADIC:
     400          21 :             update_prec(precp(d)+valp(d), pa);
     401          21 :             assign_or_fail(gel(d,2),p);
     402          21 :             if (!*t2) *t2 = t_COMPLEX;
     403          21 :             t[7]=1; break;
     404           0 :           default: return 0;
     405             :         }
     406             :       }
     407   324184951 :       if (!t[2]) assign_or_fail(mkpoln(3, gen_1,gen_0,gen_1), pol); /*x^2+1*/
     408   324184951 :       break;
     409     2333005 :     case t_PADIC:
     410     2333005 :       update_prec(precp(c)+valp(c), pa);
     411     2333005 :       assign_or_fail(gel(c,2),p);
     412     2333005 :       t[7]=1; break;
     413        1960 :     case t_QUAD:
     414        1960 :       assign_or_fail(gel(c,1),pol);
     415        5880 :       for (j=2; j<=3; j++)
     416             :       {
     417        3920 :         GEN d = gel(c,j);
     418        3920 :         switch(typ(d))
     419             :         {
     420        3885 :           case t_INT: case t_FRAC:
     421        3885 :             t[8]=1; break;
     422          28 :           case t_INTMOD:
     423          28 :             assign_or_fail(gel(d,1),p);
     424          28 :             if (*t2 != t_POLMOD) *t2 = t_QUAD;
     425          28 :             t[3]=1; break;
     426           7 :           case t_PADIC:
     427           7 :             update_prec(precp(d)+valp(d), pa);
     428           7 :             assign_or_fail(gel(d,2),p);
     429           7 :             if (*t2 != t_POLMOD) *t2 = t_QUAD;
     430           7 :             t[7]=1; break;
     431           0 :           default: return 0;
     432             :         }
     433             :       }
     434        1960 :       break;
     435     4027568 :     case t_POLMOD:
     436     4027568 :       assign_or_fail(gel(c,1),pol);
     437     4027358 :       if (typ(gel(c,2))==t_POL && varn(gel(c,2))!=varn(gel(c,1))) return 0;
     438    12075281 :       for (j=1; j<=2; j++)
     439             :       {
     440             :         GEN pbis, polbis;
     441             :         long pabis;
     442     8052000 :         *t2 = t_POLMOD;
     443     8052000 :         switch(Rg_type(gel(c,j),&pbis,&polbis,&pabis))
     444             :         {
     445     4507221 :           case t_INT: break;
     446      957541 :           case t_FRAC:   t[1]=1; break;
     447     2583161 :           case t_INTMOD: t[3]=1; break;
     448           7 :           case t_PADIC:  t[7]=1; update_prec(pabis,pa); break;
     449        4081 :           default: return 0;
     450             :         }
     451     8047930 :         if (pbis) assign_or_fail(pbis,p);
     452     8047930 :         if (polbis) assign_or_fail(polbis,pol);
     453             :       }
     454     4023281 :       break;
     455     6772171 :     case t_RFRAC: t[10] = 1;
     456     6772171 :       if (!settype(gel(c,1),t,p,pol,pa,ff,t2,var)) return 0;
     457     6772171 :       c = gel(c,2); /* fall through */
     458    50656471 :     case t_POL: t[10] = 1;
     459    50656471 :       if (!RgX_settype(c,t,p,pol,pa,ff,t2,var)) return 0;
     460    50680497 :       if (*var == NO_VARIABLE) { *var = varn(c); break; }
     461             :       /* if more than one free var, ensure varn() == *var fails. FIXME: should
     462             :        * keep the list of all variables, later t_POLMOD may cancel them */
     463    30477902 :       if (*var != varn(c)) *var = MAXVARN+1;
     464    30477902 :       break;
     465        2016 :     default: return 0;
     466             :   }
     467  3150371038 :   return 1;
     468             : }
     469             : /* t[0] unused. Other values, if set, indicate a coefficient of type
     470             :  * t[1] : t_FRAC
     471             :  * t[2] : t_REAL
     472             :  * t[3] : t_INTMOD
     473             :  * t[4] : Unused
     474             :  * t[5] : t_FFELT
     475             :  * t[6] : Unused
     476             :  * t[7] : t_PADIC
     477             :  * t[8] : t_QUAD of rationals (t_INT/t_FRAC)
     478             :  * t[9]:  Unused
     479             :  * t[10]: t_POL (recursive factorisation) */
     480             : /* if t2 != 0: t_POLMOD/t_QUAD/t_COMPLEX of modular (t_INTMOD/t_PADIC,
     481             :  * given by t) */
     482             : static long
     483   322639014 : choosetype(long *t, long t2, GEN ff, GEN *pol, long var)
     484             : {
     485   322639014 :   if (t[10] && (!*pol || var!=varn(*pol))) return t_POL;
     486   302451540 :   if (t2) /* polmod/quad/complex of intmod/padic */
     487             :   {
     488    22063052 :     if (t[2] && (t[3]||t[7])) return 0;
     489    22063052 :     if (t[3]) return code(t2,t_INTMOD);
     490    22033218 :     if (t[7]) return code(t2,t_PADIC);
     491    22033169 :     if (t[2]) return t_COMPLEX;
     492      615061 :     if (t[1]) return code(t2,t_FRAC);
     493      232676 :     return code(t2,t_INT);
     494             :   }
     495   280388488 :   if (t[5]) /* ffelt */
     496             :   {
     497      225905 :     if (t[2]||t[8]||t[9]) return 0;
     498      225905 :     *pol=ff; return t_FFELT;
     499             :   }
     500   280162583 :   if (t[2]) /* inexact, real */
     501             :   {
     502    43568673 :     if (t[3]||t[7]||t[9]) return 0;
     503    43568675 :     return t_REAL;
     504             :   }
     505   236593910 :   if (t[10]) return t_POL;
     506   236593910 :   if (t[8]) return code(t_QUAD,t_INT);
     507   236593077 :   if (t[3]) return t_INTMOD;
     508   232383943 :   if (t[7]) return t_PADIC;
     509   232006035 :   if (t[1]) return t_FRAC;
     510   224500858 :   return t_INT;
     511             : }
     512             : 
     513             : static long
     514   386227587 : RgX_settype(GEN x, long *t, GEN *p, GEN *pol, long *pa, GEN *ff, long *t2, long *var)
     515             : {
     516   386227587 :   long i, lx = lg(x);
     517  1396608546 :   for (i=2; i<lx; i++)
     518  1010383568 :     if (!settype(gel(x,i),t,p,pol,pa,ff,t2,var)) return 0;
     519   386224978 :   return 1;
     520             : }
     521             : 
     522             : static long
     523   269003166 : RgC_settype(GEN x, long *t, GEN *p, GEN *pol, long *pa, GEN *ff, long *t2, long *var)
     524             : {
     525   269003166 :   long i, l = lg(x);
     526  2347064506 :   for (i = 1; i<l; i++)
     527  2078064343 :     if (!settype(gel(x,i),t,p,pol,pa,ff,t2,var)) return 0;
     528   269000163 :   return 1;
     529             : }
     530             : 
     531             : static long
     532    48252504 : RgM_settype(GEN x, long *t, GEN *p, GEN *pol, long *pa, GEN *ff, long *t2, long *var)
     533             : {
     534    48252504 :   long i, l = lg(x);
     535   284127818 :   for (i = 1; i < l; i++)
     536   235877596 :     if (!RgC_settype(gel(x,i),t,p,pol,pa,ff,t2,var)) return 0;
     537    48250222 :   return 1;
     538             : }
     539             : 
     540             : long
     541   171351807 : Rg_type(GEN x, GEN *p, GEN *pol, long *pa)
     542             : {
     543   171351807 :   long t[] = {0,0,0,0,0,0,0,0,0,0,0};
     544   171351807 :   long t2 = 0, var = NO_VARIABLE;
     545   171351807 :   GEN ff = NULL;
     546   171351807 :   *p = *pol = NULL; *pa = LONG_MAX;
     547   171351807 :   switch(typ(x))
     548             :   {
     549    55138200 :     case t_INT: case t_REAL: case t_INTMOD: case t_FRAC: case t_FFELT:
     550             :     case t_COMPLEX: case t_PADIC: case t_QUAD:
     551    55138200 :       if (!settype(x,t,p,pol,pa,&ff,&t2,&var)) return 0;
     552    55138199 :       break;
     553   115672439 :     case t_POL: case t_SER:
     554   115672439 :       if (!RgX_settype(x,t,p,pol,pa,&ff,&t2,&var)) return 0;
     555   115672163 :       break;
     556          21 :     case t_VEC: case t_COL:
     557          21 :       if(!RgC_settype(x, t, p, pol, pa, &ff, &t2, &var)) return 0;
     558          21 :       break;
     559         126 :     case t_MAT:
     560         126 :       if(!RgM_settype(x, t, p, pol, pa, &ff, &t2, &var)) return 0;
     561         126 :       break;
     562      541021 :     default: return 0;
     563             :   }
     564   170810509 :   return choosetype(t,t2,ff,pol,var);
     565             : }
     566             : 
     567             : long
     568     2504972 : RgX_type(GEN x, GEN *p, GEN *pol, long *pa)
     569             : {
     570     2504972 :   long t[] = {0,0,0,0,0,0,0,0,0,0,0,0};
     571     2504972 :   long t2 = 0, var = NO_VARIABLE;
     572     2504972 :   GEN ff = NULL;
     573     2504972 :   *p = *pol = NULL; *pa = LONG_MAX;
     574     2504972 :   if (!RgX_settype(x,t,p,pol,pa,&ff,&t2,&var)) return 0;
     575     2504925 :   return choosetype(t,t2,ff,pol,var);
     576             : }
     577             : 
     578             : long
     579         294 : RgX_Rg_type(GEN x, GEN y, GEN *p, GEN *pol, long *pa)
     580             : {
     581         294 :   long t[] = {0,0,0,0,0,0,0,0,0,0,0,0};
     582         294 :   long t2 = 0, var = NO_VARIABLE;
     583         294 :   GEN ff = NULL;
     584         294 :   *p = *pol = NULL; *pa = LONG_MAX;
     585         294 :   if (!RgX_settype(x,t,p,pol,pa,&ff,&t2,&var)) return 0;
     586         294 :   if (!settype(y,t,p,pol,pa,&ff,&t2,&var)) return 0;
     587         294 :   return choosetype(t,t2,ff,pol,var);
     588             : }
     589             : 
     590             : long
     591   106394526 : RgX_type2(GEN x, GEN y, GEN *p, GEN *pol, long *pa)
     592             : {
     593   106394526 :   long t[] = {0,0,0,0,0,0,0,0,0,0,0,0};
     594   106394526 :   long t2 = 0, var = NO_VARIABLE;
     595   106394526 :   GEN ff = NULL;
     596   106394526 :   *p = *pol = NULL; *pa = LONG_MAX;
     597   212786652 :   if (!RgX_settype(x,t,p,pol,pa,&ff,&t2,&var) ||
     598   106395239 :       !RgX_settype(y,t,p,pol,pa,&ff,&t2,&var)) return 0;
     599   106392007 :   return choosetype(t,t2,ff,pol,var);
     600             : }
     601             : 
     602             : long
     603     1527764 : RgX_type3(GEN x, GEN y, GEN z, GEN *p, GEN *pol, long *pa)
     604             : {
     605     1527764 :   long t[] = {0,0,0,0,0,0,0,0,0,0,0,0};
     606     1527764 :   long t2 = 0, var = NO_VARIABLE;
     607     1527764 :   GEN ff = NULL;
     608     1527764 :   *p = *pol = NULL; *pa = LONG_MAX;
     609     3055528 :   if (!RgX_settype(x,t,p,pol,pa,&ff,&t2,&var) ||
     610     3055529 :       !RgX_settype(y,t,p,pol,pa,&ff,&t2,&var) ||
     611     1527764 :       !RgX_settype(z,t,p,pol,pa,&ff,&t2,&var)) return 0;
     612     1527764 :   return choosetype(t,t2,ff,pol,var);
     613             : }
     614             : 
     615             : long
     616      659802 : RgM_type(GEN x, GEN *p, GEN *pol, long *pa)
     617             : {
     618      659802 :   long t[] = {0,0,0,0,0,0,0,0,0,0,0,0};
     619      659802 :   long t2 = 0, var = NO_VARIABLE;
     620      659802 :   GEN ff = NULL;
     621      659802 :   *p = *pol = NULL; *pa = LONG_MAX;
     622      659802 :   if (!RgM_settype(x,t,p,pol,pa,&ff,&t2,&var)) return 0;
     623      658753 :   return choosetype(t,t2,ff,pol,var);
     624             : }
     625             : 
     626             : long
     627      774303 : RgV_type(GEN x, GEN *p, GEN *pol, long *pa)
     628             : {
     629      774303 :   long t[] = {0,0,0,0,0,0,0,0,0,0,0,0};
     630      774303 :   long t2 = 0, var = NO_VARIABLE;
     631      774303 :   GEN ff = NULL;
     632      774303 :   *p = *pol = NULL; *pa = LONG_MAX;
     633      774303 :   if (!RgC_settype(x,t,p,pol,pa,&ff,&t2,&var)) return 0;
     634      774303 :   return choosetype(t,t2,ff,pol,var);
     635             : }
     636             : 
     637             : long
     638         203 : RgV_type2(GEN x, GEN y, GEN *p, GEN *pol, long *pa)
     639             : {
     640         203 :   long t[] = {0,0,0,0,0,0,0,0,0,0,0,0};
     641         203 :   long t2 = 0, var = NO_VARIABLE;
     642         203 :   GEN ff = NULL;
     643         203 :   *p = *pol = NULL; *pa = LONG_MAX;
     644         406 :   if (!RgC_settype(x,t,p,pol,pa,&ff,&t2,&var) ||
     645         203 :       !RgC_settype(y,t,p,pol,pa,&ff,&t2,&var)) return 0;
     646         203 :   return choosetype(t,t2,ff,pol,var);
     647             : }
     648             : 
     649             : long
     650    32351778 : RgM_RgC_type(GEN x, GEN y, GEN *p, GEN *pol, long *pa)
     651             : {
     652    32351778 :   long t[] = {0,0,0,0,0,0,0,0,0,0,0,0};
     653    32351778 :   long t2 = 0, var = NO_VARIABLE;
     654    32351778 :   GEN ff = NULL;
     655    32351778 :   *p = *pol = NULL; *pa = LONG_MAX;
     656    64703291 :   if (!RgM_settype(x,t,p,pol,pa,&ff,&t2,&var) ||
     657    32352692 :       !RgC_settype(y,t,p,pol,pa,&ff,&t2,&var)) return 0;
     658    32350712 :   return choosetype(t,t2,ff,pol,var);
     659             : }
     660             : 
     661             : long
     662     7620614 : RgM_type2(GEN x, GEN y, GEN *p, GEN *pol, long *pa)
     663             : {
     664     7620614 :   long t[] = {0,0,0,0,0,0,0,0,0,0,0,0};
     665     7620614 :   long t2 = 0, var = NO_VARIABLE;
     666     7620614 :   GEN ff = NULL;
     667     7620614 :   *p = *pol = NULL; *pa = LONG_MAX;
     668    15240804 :   if (!RgM_settype(x,t,p,pol,pa,&ff,&t2,&var) ||
     669     7620781 :       !RgM_settype(y,t,p,pol,pa,&ff,&t2,&var)) return 0;
     670     7620085 :   return choosetype(t,t2,ff,pol,var);
     671             : }
     672             : 
     673             : GEN
     674       59375 : factor0(GEN x, GEN flag)
     675             : {
     676             :   ulong B;
     677       59375 :   long tx = typ(x);
     678       59375 :   if (!flag) return factor(x);
     679         259 :   if ((tx != t_INT && tx!=t_FRAC) || typ(flag) != t_INT)
     680         175 :     return factor_domain(x, flag);
     681          84 :   if (signe(flag) < 0) pari_err_FLAG("factor");
     682          84 :   switch(lgefint(flag))
     683             :   {
     684          14 :     case 2: B = 0; break;
     685          70 :     case 3: B = flag[2]; break;
     686           0 :     default: pari_err_OVERFLOW("factor [large prime bound]");
     687             :              return NULL; /*LCOV_EXCL_LINE*/
     688             :   }
     689          84 :   return boundfact(x, B);
     690             : }
     691             : 
     692             : GEN
     693      156910 : deg1_from_roots(GEN L, long v)
     694             : {
     695      156910 :   long i, l = lg(L);
     696      156910 :   GEN z = cgetg(l,t_COL);
     697      462663 :   for (i=1; i<l; i++)
     698      305752 :     gel(z,i) = deg1pol_shallow(gen_1, gneg(gel(L,i)), v);
     699      156911 :   return z;
     700             : }
     701             : GEN
     702       63894 : roots_from_deg1(GEN x)
     703             : {
     704       63894 :   long i,l = lg(x);
     705       63894 :   GEN r = cgetg(l,t_VEC);
     706      392941 :   for (i=1; i<l; i++) { GEN P = gel(x,i); gel(r,i) = gneg(gel(P,2)); }
     707       63889 :   return r;
     708             : }
     709             : 
     710             : static GEN
     711          42 : Qi_factor_p(GEN p)
     712             : {
     713          42 :   GEN a, b; (void)cornacchia(gen_1, p, &a,&b);
     714          42 :   return mkcomplex(a, b);
     715             : }
     716             : 
     717             : static GEN
     718          49 : Qi_primpart(GEN x, GEN *c)
     719             : {
     720          49 :   GEN a = real_i(x), b = imag_i(x), n = gcdii(a, b);
     721          49 :   *c = n; if (n == gen_1) return x;
     722          49 :   retmkcomplex(diviiexact(a,n), diviiexact(b,n));
     723             : }
     724             : 
     725             : static GEN
     726          70 : Qi_primpart_try(GEN x, GEN c)
     727             : {
     728             :   GEN r, y;
     729          70 :   if (typ(x) == t_INT)
     730             :   {
     731          42 :     y = dvmdii(x, c, &r); if (r != gen_0) return NULL;
     732             :   }
     733             :   else
     734             :   {
     735          28 :     GEN a = gel(x,1), b = gel(x,2); y = cgetg(3, t_COMPLEX);
     736          28 :     gel(y,1) = dvmdii(a, c, &r); if (r != gen_0) return NULL;
     737          14 :     gel(y,2) = dvmdii(b, c, &r); if (r != gen_0) return NULL;
     738             :   }
     739          56 :   return y;
     740             : }
     741             : 
     742             : static int
     743          91 : Qi_cmp(GEN x, GEN y)
     744             : {
     745             :   int v;
     746          91 :   if (typ(x) != t_COMPLEX)
     747           0 :     return (typ(y) == t_COMPLEX)? -1: gcmp(x, y);
     748          91 :   if (typ(y) != t_COMPLEX) return 1;
     749          63 :   v = cmpii(gel(x,2), gel(y,2));
     750          63 :   if (v) return v;
     751          28 :   return gcmp(gel(x,1), gel(y,1));
     752             : }
     753             : 
     754             : /* 0 or canonical representative in Z[i]^* / <i> (impose imag(x) >= 0) */
     755             : static GEN
     756         469 : Qi_normal(GEN x)
     757             : {
     758         469 :   if (typ(x) != t_COMPLEX) return absi_shallow(x);
     759         469 :   if (signe(gel(x,1)) < 0) x = gneg(x);
     760         469 :   if (signe(gel(x,2)) < 0) x = mulcxI(x);
     761         469 :   return x;
     762             : }
     763             : 
     764             : static GEN
     765          49 : Qi_factor(GEN x)
     766             : {
     767          49 :   pari_sp av = avma;
     768          49 :   GEN a = real_i(x), b = imag_i(x), d = gen_1, n, y, fa, P, E, P2, E2;
     769          49 :   long t1 = typ(a);
     770          49 :   long t2 = typ(b), i, j, l, exp = 0;
     771          49 :   if (t1 == t_FRAC) d = gel(a,2);
     772          49 :   if (t2 == t_FRAC) d = lcmii(d, gel(b,2));
     773          49 :   if (d == gen_1) y = x;
     774             :   else
     775             :   {
     776          21 :     y = gmul(x, d);
     777          21 :     a = real_i(y); t1 = typ(a);
     778          21 :     b = imag_i(y); t2 = typ(b);
     779             :   }
     780          49 :   if (t1 != t_INT || t2 != t_INT) return NULL;
     781          49 :   y = Qi_primpart(y, &n);
     782          49 :   fa = factor(cxnorm(y));
     783          49 :   P = gel(fa,1);
     784          49 :   E = gel(fa,2); l = lg(P);
     785          49 :   P2 = cgetg(l, t_COL);
     786          49 :   E2 = cgetg(l, t_COL);
     787         105 :   for (j = 1, i = l-1; i > 0; i--) /* remove largest factors first */
     788             :   { /* either p = 2 (ramified) or those factors split in Q(i) */
     789          56 :     GEN p = gel(P,i), w, w2, t, we, pe;
     790          56 :     long v, e = itos(gel(E,i));
     791          56 :     int is2 = absequaliu(p, 2);
     792          56 :     w = is2? mkcomplex(gen_1,gen_1): Qi_factor_p(p);
     793          56 :     w2 = Qi_normal( conj_i(w) );
     794             :     /* w * w2 * I^3 = p, w2 = conj(w) * I */
     795          56 :     pe = powiu(p, e);
     796          56 :     we = gpowgs(w, e);
     797          56 :     t = Qi_primpart_try( gmul(y, conj_i(we)), pe );
     798          56 :     if (t) y = t; /* y /= w^e */
     799             :     else {
     800             :       /* y /= conj(w)^e, should be y /= w2^e */
     801          14 :       y = Qi_primpart_try( gmul(y, we), pe );
     802          14 :       swap(w, w2); exp -= e; /* += 3*e mod 4 */
     803             :     }
     804          56 :     gel(P,i) = w;
     805          56 :     v = Z_pvalrem(n, p, &n);
     806          56 :     if (v) {
     807           7 :       exp -= v; /* += 3*v mod 4 */
     808           7 :       if (is2) v <<= 1; /* 2 = w^2 I^3 */
     809             :       else {
     810           0 :         gel(P2,j) = w2;
     811           0 :         gel(E2,j) = utoipos(v); j++;
     812             :       }
     813           7 :       gel(E,i) = stoi(e + v);
     814             :     }
     815          56 :     v = Z_pvalrem(d, p, &d);
     816          56 :     if (v) {
     817           7 :       exp += v; /* -= 3*v mod 4 */
     818           7 :       if (is2) v <<= 1; /* 2 is ramified */
     819             :       else {
     820           7 :         gel(P2,j) = w2;
     821           7 :         gel(E2,j) = utoineg(v); j++;
     822             :       }
     823           7 :       gel(E,i) = stoi(e - v);
     824             :     }
     825          56 :     exp &= 3;
     826             :   }
     827          49 :   if (j > 1) {
     828           7 :     long k = 1;
     829           7 :     GEN P1 = cgetg(l, t_COL);
     830           7 :     GEN E1 = cgetg(l, t_COL);
     831             :     /* remove factors with exponent 0 */
     832          14 :     for (i = 1; i < l; i++)
     833           7 :       if (signe(gel(E,i)))
     834             :       {
     835           0 :         gel(P1,k) = gel(P,i);
     836           0 :         gel(E1,k) = gel(E,i);
     837           0 :         k++;
     838             :       }
     839           7 :     setlg(P1, k); setlg(E1, k);
     840           7 :     setlg(P2, j); setlg(E2, j);
     841           7 :     fa = famat_mul_shallow(mkmat2(P1,E1), mkmat2(P2,E2));
     842             :   }
     843          49 :   if (!equali1(n) || !equali1(d))
     844             :   {
     845          28 :     GEN Fa = factor(Qdivii(n, d));
     846          28 :     P = gel(Fa,1); l = lg(P);
     847          28 :     E = gel(Fa,2);
     848          70 :     for (i = 1; i < l; i++)
     849             :     {
     850          42 :       GEN w, p = gel(P,i);
     851             :       long e;
     852             :       int is2;
     853          42 :       switch(mod4(p))
     854             :       {
     855          14 :         case 3: continue;
     856          14 :         case 2: is2 = 1; break;
     857          14 :         default:is2 = 0; break;
     858             :       }
     859          28 :       e = itos(gel(E,i));
     860          28 :       w = is2? mkcomplex(gen_1,gen_1): Qi_factor_p(p);
     861          28 :       gel(P,i) = w;
     862          28 :       if (is2)
     863          14 :         gel(E,i) = stoi(2*e);
     864             :       else
     865             :       {
     866          14 :         P = vec_append(P, Qi_normal( conj_i(w) ));
     867          14 :         E = vec_append(E, gel(E,i));
     868             :       }
     869          28 :       exp -= e; /* += 3*e mod 4 */
     870          28 :       exp &= 3;
     871             :     }
     872          28 :     gel(Fa,1) = P;
     873          28 :     gel(Fa,2) = E;
     874          28 :     fa = famat_mul_shallow(fa, Fa);
     875             :   }
     876          49 :   fa = sort_factor(fa, (void*)&Qi_cmp, &cmp_nodata);
     877             : 
     878          49 :   y = gmul(y, powIs(exp));
     879          49 :   if (!gequal1(y)) {
     880          35 :     gel(fa,1) = vec_prepend(gel(fa,1), y);
     881          35 :     gel(fa,2) = vec_prepend(gel(fa,2), gen_1);
     882             :   }
     883          49 :   return gerepilecopy(av, fa);
     884             : }
     885             : 
     886             : GEN
     887        9770 : Q_factor_limit(GEN x, ulong lim)
     888             : {
     889        9770 :   pari_sp av = avma;
     890             :   GEN a, b;
     891        9770 :   if (typ(x) == t_INT) return Z_factor_limit(x, lim);
     892        5235 :   a = Z_factor_limit(gel(x,1), lim);
     893        5235 :   b = Z_factor_limit(gel(x,2), lim); gel(b,2) = ZC_neg(gel(b,2));
     894        5235 :   return gerepilecopy(av, ZM_merge_factor(a,b));
     895             : }
     896             : GEN
     897       21421 : Q_factor(GEN x)
     898             : {
     899       21421 :   pari_sp av = avma;
     900             :   GEN a, b;
     901       21421 :   if (typ(x) == t_INT) return Z_factor(x);
     902          35 :   a = Z_factor(gel(x,1));
     903          35 :   b = Z_factor(gel(x,2)); gel(b,2) = ZC_neg(gel(b,2));
     904          35 :   return gerepilecopy(av, ZM_merge_factor(a,b));
     905             : }
     906             : 
     907             : /* replace quadratic number over Fp or Q by t_POL in v */
     908             : static GEN
     909         420 : quadratic_to_RgX(GEN z, long v)
     910             : {
     911             :   GEN a, b;
     912         420 :   switch(typ(z))
     913             :   {
     914         343 :     case t_INT: case t_FRAC: case t_INTMOD: return z;
     915          35 :     case t_COMPLEX: a = gel(z,2); b = gel(z,1); break;
     916          42 :     case t_QUAD: a = gel(z,3); b = gel(z,2); break;
     917           0 :     default: pari_err_IMPL("factor for general polynomials"); /* paranoia */
     918             :              return NULL; /* LCOV_EXCL_LINE */
     919             :   }
     920          77 :   return deg1pol_shallow(a, b, v);
     921             : }
     922             : /* replace t_QUAD/t_COMPLEX [of rationals] coeffs by t_POL in v */
     923             : static GEN
     924          98 : RgX_fix_quadratic(GEN x, long v)
     925         518 : { pari_APPLY_pol_normalized(quadratic_to_RgX(gel(x,i), v)); }
     926             : static GEN
     927         252 : RgXQ_factor_i(GEN x, GEN T, GEN p, long t1, long t2, long *pv)
     928             : {
     929         252 :   *pv = -1;
     930         252 :   if (t2 == t_PADIC) return NULL;
     931         217 :   if (t2 == t_INTMOD)
     932             :   {
     933          56 :     T = RgX_to_FpX(T,p);
     934          56 :     if (!FpX_is_irred(T,p)) return NULL;
     935             :   }
     936         196 :   if (t1 != t_POLMOD)
     937             :   { /* replace w in x by t_POL */
     938          98 :     if (t2 != t_INTMOD) T = leafcopy(T);
     939          98 :     *pv = fetch_var(); setvarn(T, *pv);
     940          98 :     x = RgX_fix_quadratic(x, *pv);
     941             :   }
     942         196 :   if (t2 == t_INTMOD) return factmod(x, mkvec2(p,T));
     943         161 :   return nffactor(T, x);
     944             : }
     945             : static GEN
     946         252 : RgXQ_factor(GEN x, GEN T, GEN p, long tx)
     947             : {
     948         252 :   pari_sp av = avma;
     949             :   long t1, t2, v;
     950             :   GEN w, y;
     951         252 :   RgX_type_decode(tx, &t1, &t2);
     952         252 :   y = RgXQ_factor_i(x, T, p, t1, t2, &v);
     953         252 :   if (!y) pari_err_IMPL("factor for general polynomials");
     954         196 :   if (v < 0) return gerepileupto(av, y);
     955             :   /* substitute back w */
     956          98 :   w = (t1 == t_COMPLEX)? gen_I(): mkquad(T,gen_0,gen_1);
     957          98 :   gel(y,1) = gsubst(liftpol_shallow(gel(y,1)), v, w);
     958          98 :   (void)delete_var(); return gerepilecopy(av, y);
     959             : }
     960             : 
     961             : static GEN
     962          28 : RX_factor(GEN x, long prec)
     963             : {
     964          28 :   GEN y = cgetg(3,t_MAT), R, P;
     965          28 :   pari_sp av = avma;
     966          28 :   long v = varn(x), i, l, r1;
     967             : 
     968          28 :   R = cleanroots(x, prec); l = lg(R);
     969          70 :   for (r1 = 1; r1 < l; r1++)
     970          49 :     if (typ(gel(R,r1)) == t_COMPLEX) break;
     971          28 :   l = (r1+l)>>1; P = cgetg(l,t_COL);
     972          70 :   for (i = 1; i < r1; i++)
     973          42 :     gel(P,i) = deg1pol_shallow(gen_1, negr(gel(R,i)), v);
     974          35 :   for (   ; i < l; i++)
     975             :   {
     976           7 :     GEN a = gel(R,2*i-r1), t;
     977           7 :     t = gmul2n(gel(a,1), 1); togglesign(t);
     978           7 :     gel(P,i) = deg2pol_shallow(gen_1, t, gnorm(a), v);
     979             :   }
     980          28 :   gel(y,1) = gerepileupto(av, P);
     981          28 :   gel(y,2) = const_col(l-1, gen_1); return y;
     982             : }
     983             : static GEN
     984          21 : CX_factor(GEN x, long prec)
     985             : {
     986          21 :   GEN y = cgetg(3,t_MAT), R;
     987          21 :   pari_sp av = avma;
     988          21 :   long v = varn(x);
     989             : 
     990          21 :   R = roots(x, prec);
     991          21 :   gel(y,1) = gerepileupto(av, deg1_from_roots(R, v));
     992          21 :   gel(y,2) = const_col(degpol(x), gen_1); return y;
     993             : }
     994             : 
     995             : static GEN
     996       13811 : RgX_factor(GEN x, GEN dom)
     997             : {
     998             :   GEN  p, T;
     999       13811 :   long pa, tx = dom ? RgX_Rg_type(x,dom,&p,&T,&pa): RgX_type(x,&p,&T,&pa);
    1000       13811 :   switch(tx)
    1001             :   {
    1002           7 :     case 0: pari_err_IMPL("factor for general polynomials");
    1003         245 :     case t_POL: return RgXY_factor(x, dom);
    1004       12782 :     case t_INT: return ZX_factor(x);
    1005           7 :     case t_FRAC: return QX_factor(x);
    1006         329 :     case t_INTMOD: return factmod(x, p);
    1007          42 :     case t_PADIC: return factorpadic(x, p, pa);
    1008          98 :     case t_FFELT: return FFX_factor(x, T);
    1009          21 :     case t_COMPLEX: return CX_factor(x, pa);
    1010          28 :     case t_REAL: return RX_factor(x, pa);
    1011             :   }
    1012         252 :   return RgXQ_factor(x, T, p, tx);
    1013             : }
    1014             : 
    1015             : static GEN
    1016       63015 : factor_domain(GEN x, GEN dom)
    1017             : {
    1018       63015 :   long tx = typ(x), tdom = dom ? typ(dom): 0;
    1019             :   pari_sp av;
    1020             : 
    1021       63015 :   if (gequal0(x))
    1022          63 :     switch(tx)
    1023             :     {
    1024          63 :       case t_INT:
    1025             :       case t_COMPLEX:
    1026             :       case t_POL:
    1027          63 :       case t_RFRAC: return prime_fact(x);
    1028           0 :       default: pari_err_TYPE("factor",x);
    1029             :     }
    1030       62952 :   av = avma;
    1031       62952 :   switch(tx)
    1032             :   {
    1033        2611 :     case t_POL: return RgX_factor(x, dom);
    1034          35 :     case t_RFRAC: {
    1035          35 :       GEN a = gel(x,1), b = gel(x,2);
    1036          35 :       GEN y = famat_inv_shallow(RgX_factor(b, dom));
    1037          35 :       if (typ(a)==t_POL) y = famat_mul_shallow(RgX_factor(a, dom), y);
    1038          35 :       return gerepilecopy(av, sort_factor_pol(y, cmp_universal));
    1039             :     }
    1040       60236 :     case t_INT:  if (tdom==0 || tdom==t_INT) return Z_factor(x);
    1041          28 :     case t_FRAC: if (tdom==0 || tdom==t_INT) return Q_factor(x);
    1042             :     case t_COMPLEX: /* fall through */
    1043          49 :       if (tdom==0 || tdom==t_COMPLEX)
    1044          49 :       { GEN y = Qi_factor(x); if (y) return y; }
    1045             :       /* fall through */
    1046             :   }
    1047           0 :   pari_err_TYPE("factor",x);
    1048             :   return NULL; /* LCOV_EXCL_LINE */
    1049             : }
    1050             : 
    1051             : GEN
    1052       62336 : factor(GEN x) { return factor_domain(x, NULL); }
    1053             : 
    1054             : /*******************************************************************/
    1055             : /*                                                                 */
    1056             : /*                     ROOTS --> MONIC POLYNOMIAL                  */
    1057             : /*                                                                 */
    1058             : /*******************************************************************/
    1059             : static GEN
    1060     1718730 : normalized_mul(void *E, GEN x, GEN y)
    1061             : {
    1062     1718730 :   long a = gel(x,1)[1], b = gel(y,1)[1];
    1063             :   (void) E;
    1064     1718724 :   return mkvec2(mkvecsmall(a + b),
    1065     1718730 :                 RgX_mul_normalized(gel(x,2),a, gel(y,2),b));
    1066             : }
    1067             : /* L = [Vecsmall([a]), A], with a > 0, A an RgX, deg(A) < a; return X^a + A */
    1068             : static GEN
    1069     1038821 : normalized_to_RgX(GEN L)
    1070             : {
    1071     1038821 :   long i, a = gel(L,1)[1];
    1072     1038821 :   GEN A = gel(L,2);
    1073     1038821 :   GEN z = cgetg(a + 3, t_POL);
    1074     1038821 :   z[1] = evalsigne(1) | evalvarn(varn(A));
    1075     5784923 :   for (i = 2; i < lg(A); i++) gel(z,i) = gcopy(gel(A,i));
    1076     1043973 :   for (     ; i < a+2;   i++) gel(z,i) = gen_0;
    1077     1038821 :   gel(z,i) = gen_1; return z;
    1078             : }
    1079             : 
    1080             : static GEN
    1081          14 : roots_to_pol_FpV(GEN x, long v, GEN p)
    1082             : {
    1083          14 :   pari_sp av = avma;
    1084             :   GEN r;
    1085          14 :   if (lgefint(p) == 3)
    1086             :   {
    1087          14 :     ulong pp = uel(p, 2);
    1088          14 :     r = Flx_to_ZX_inplace(Flv_roots_to_pol(RgV_to_Flv(x, pp), pp, v<<VARNSHIFT));
    1089             :   }
    1090             :   else
    1091           0 :     r = FpV_roots_to_pol(RgV_to_FpV(x, p), p, v);
    1092          14 :   return gerepileupto(av, FpX_to_mod(r, p));
    1093             : }
    1094             : 
    1095             : static GEN
    1096           7 : roots_to_pol_FqV(GEN x, long v, GEN pol, GEN p)
    1097             : {
    1098           7 :   pari_sp av = avma;
    1099           7 :   GEN r, T = RgX_to_FpX(pol, p);
    1100           7 :   if (signe(T)==0) pari_err_OP("/", x, pol);
    1101           7 :   r = FqV_roots_to_pol(RgC_to_FqC(x, T, p), T, p, v);
    1102           7 :   return gerepileupto(av, FpXQX_to_mod(r, T, p));
    1103             : }
    1104             : 
    1105             : static GEN
    1106      774219 : roots_to_pol_fast(GEN x, long v)
    1107             : {
    1108             :   GEN p, pol;
    1109             :   long pa;
    1110      774219 :   long t = RgV_type(x, &p,&pol,&pa);
    1111      774219 :   switch(t)
    1112             :   {
    1113          14 :     case t_INTMOD: return roots_to_pol_FpV(x, v, p);
    1114          14 :     case t_FFELT:  return FFV_roots_to_pol(x, pol, v);
    1115           7 :     case code(t_POLMOD, t_INTMOD):
    1116           7 :                    return roots_to_pol_FqV(x, v, pol, p);
    1117      774184 :     default:       return NULL;
    1118             :   }
    1119             : }
    1120             : 
    1121             : /* compute prod (x - a[i]) */
    1122             : GEN
    1123      774293 : roots_to_pol(GEN a, long v)
    1124             : {
    1125      774293 :   pari_sp av = avma;
    1126      774293 :   long i, k, lx = lg(a);
    1127             :   GEN L;
    1128      774293 :   if (lx == 1) return pol_1(v);
    1129      774219 :   L = roots_to_pol_fast(a, v);
    1130      774219 :   if (L) return L;
    1131      774184 :   L = cgetg(lx, t_VEC);
    1132     1660357 :   for (k=1,i=1; i<lx-1; i+=2)
    1133             :   {
    1134      886173 :     GEN s = gel(a,i), t = gel(a,i+1);
    1135      886173 :     GEN x0 = gmul(s,t);
    1136      886173 :     GEN x1 = gneg(gadd(s,t));
    1137      886173 :     gel(L,k++) = mkvec2(mkvecsmall(2), deg1pol_shallow(x1,x0,v));
    1138             :   }
    1139     1465916 :   if (i < lx) gel(L,k++) = mkvec2(mkvecsmall(1),
    1140      691732 :                                   scalarpol_shallow(gneg(gel(a,i)), v));
    1141      774184 :   setlg(L, k); L = gen_product(L, NULL, normalized_mul);
    1142      774184 :   return gerepileupto(av, normalized_to_RgX(L));
    1143             : }
    1144             : 
    1145             : /* prod_{i=1..r1} (x - a[i]) prod_{i=1..r2} (x - a[i])(x - conj(a[i]))*/
    1146             : GEN
    1147      264634 : roots_to_pol_r1(GEN a, long v, long r1)
    1148             : {
    1149      264634 :   pari_sp av = avma;
    1150      264634 :   long i, k, lx = lg(a);
    1151             :   GEN L;
    1152      264634 :   if (lx == 1) return pol_1(v);
    1153      264634 :   L = cgetg(lx, t_VEC);
    1154      711110 :   for (k=1,i=1; i<r1; i+=2)
    1155             :   {
    1156      446475 :     GEN s = gel(a,i), t = gel(a,i+1);
    1157      446475 :     GEN x0 = gmul(s,t);
    1158      446473 :     GEN x1 = gneg(gadd(s,t));
    1159      446472 :     gel(L,k++) = mkvec2(mkvecsmall(2), deg1pol_shallow(x1,x0,v));
    1160             :   }
    1161      336759 :   if (i < r1+1) gel(L,k++) = mkvec2(mkvecsmall(1),
    1162       72124 :                                     scalarpol_shallow(gneg(gel(a,i)), v));
    1163      925671 :   for (i=r1+1; i<lx; i++)
    1164             :   {
    1165      661036 :     GEN s = gel(a,i);
    1166      661036 :     GEN x0 = gnorm(s);
    1167      661024 :     GEN x1 = gneg(gtrace(s));
    1168      661032 :     gel(L,k++) = mkvec2(mkvecsmall(2), deg1pol_shallow(x1,x0,v));
    1169             :   }
    1170      264635 :   setlg(L, k); L = gen_product(L, NULL, normalized_mul);
    1171      264637 :   return gerepileupto(av, normalized_to_RgX(L));
    1172             : }
    1173             : 
    1174             : GEN
    1175          56 : polfromroots(GEN a, long v)
    1176             : {
    1177          56 :   if (!is_vec_t(typ(a)))
    1178           0 :     pari_err_TYPE("polfromroots",a);
    1179          56 :   if (v < 0) v = 0;
    1180          56 :   if (varncmp(gvar(a), v) <= 0) pari_err_PRIORITY("polfromroots",a,"<=",v);
    1181          49 :   return roots_to_pol(a, v);
    1182             : }
    1183             : 
    1184             : /*******************************************************************/
    1185             : /*                                                                 */
    1186             : /*                          FACTORBACK                             */
    1187             : /*                                                                 */
    1188             : /*******************************************************************/
    1189             : static GEN
    1190    54633353 : mul(void *a, GEN x, GEN y) { (void)a; return gmul(x,y);}
    1191             : static GEN
    1192    79109736 : powi(void *a, GEN x, GEN y) { (void)a; return powgi(x,y);}
    1193             : static GEN
    1194    28644011 : Fpmul(void *a, GEN x, GEN y) { return Fp_mul(x,y,(GEN)a); }
    1195             : static GEN
    1196      244383 : Fppow(void *a, GEN x, GEN n) { return Fp_pow(x,n,(GEN)a); }
    1197             : 
    1198             : /* [L,e] = [fa, NULL] or [elts, NULL] or [elts, exponents] */
    1199             : GEN
    1200    33735305 : gen_factorback(GEN L, GEN e, void *data, GEN (*_mul)(void*,GEN,GEN),
    1201             :                GEN (*_pow)(void*,GEN,GEN), GEN (*_one)(void*))
    1202             : {
    1203    33735305 :   pari_sp av = avma;
    1204             :   long k, l, lx;
    1205             :   GEN p,x;
    1206             : 
    1207    33735305 :   if (e) /* supplied vector of exponents */
    1208     1415702 :     p = L;
    1209             :   else
    1210             :   {
    1211    32319603 :     switch(typ(L)) {
    1212     8360662 :       case t_VEC:
    1213             :       case t_COL: /* product of the L[i] */
    1214     8360662 :         if (lg(L)==1) return _one? _one(data): gen_1;
    1215     8284130 :         return gerepileupto(av, gen_product(L, data, _mul));
    1216    23958956 :       case t_MAT: /* genuine factorization */
    1217    23958956 :         l = lg(L);
    1218    23958956 :         if (l == 3) break;
    1219             :         /*fall through*/
    1220             :       default:
    1221           6 :         pari_err_TYPE("factorback [not a factorization]", L);
    1222             :     }
    1223    23958950 :     p = gel(L,1);
    1224    23958950 :     e = gel(L,2);
    1225             :   }
    1226    25374652 :   if (!is_vec_t(typ(p))) pari_err_TYPE("factorback [not a vector]", p);
    1227             :   /* p = elts, e = expo */
    1228    25374638 :   lx = lg(p);
    1229             :   /* check whether e is an integral vector of correct length */
    1230    25374638 :   switch(typ(e))
    1231             :   {
    1232      122797 :     case t_VECSMALL:
    1233      122797 :       if (lx != lg(e))
    1234           0 :         pari_err_TYPE("factorback [not an exponent vector]", e);
    1235      122797 :       if (lx == 1) return _one? _one(data): gen_1;
    1236      122538 :       x = cgetg(lx,t_VEC);
    1237     1250460 :       for (l=1,k=1; k<lx; k++)
    1238     1127922 :         if (e[k]) gel(x,l++) = _pow(data, gel(p,k), stoi(e[k]));
    1239      122538 :       break;
    1240    25251834 :     case t_VEC: case t_COL:
    1241    25251834 :       if (lx != lg(e) || !RgV_is_ZV(e))
    1242          14 :         pari_err_TYPE("factorback [not an exponent vector]", e);
    1243    25251820 :       if (lx == 1) return _one? _one(data): gen_1;
    1244    25142226 :       x = cgetg(lx,t_VEC);
    1245   105168585 :       for (l=1,k=1; k<lx; k++)
    1246    80026358 :         if (signe(gel(e,k))) gel(x,l++) = _pow(data, gel(p,k), gel(e,k));
    1247    25142227 :       break;
    1248           7 :     default:
    1249           7 :       pari_err_TYPE("factorback [not an exponent vector]", e);
    1250             :       return NULL;/*LCOV_EXCL_LINE*/
    1251             :   }
    1252    25264765 :   if (l==1) return gerepileupto(av, _one? _one(data): gen_1);
    1253    25204039 :   x[0] = evaltyp(t_VEC) | _evallg(l);
    1254    25204039 :   return gerepileupto(av, gen_product(x, data, _mul));
    1255             : }
    1256             : 
    1257             : GEN
    1258     8468429 : FpV_factorback(GEN L, GEN e, GEN p)
    1259     8468429 : { return gen_factorback(L, e, (void*)p, &Fpmul, &Fppow, NULL); }
    1260             : 
    1261             : ulong
    1262      108623 : Flv_factorback(GEN L, GEN e, ulong p)
    1263             : {
    1264      108623 :   long i, l = lg(e);
    1265      108623 :   ulong r = 1UL, ri = 1UL;
    1266      529663 :   for (i = 1; i < l; i++)
    1267             :   {
    1268      421040 :     long c = e[i];
    1269      421040 :     if (!c) continue;
    1270      178632 :     if (c < 0)
    1271           0 :       ri = Fl_mul(ri, Fl_powu(L[i],-c,p), p);
    1272             :     else
    1273      178632 :       r = Fl_mul(r, Fl_powu(L[i],c,p), p);
    1274             :   }
    1275      108623 :   if (ri != 1UL) r = Fl_div(r, ri, p);
    1276      108623 :   return r;
    1277             : }
    1278             : GEN
    1279        2499 : FlxqV_factorback(GEN L, GEN e, GEN Tp, ulong p)
    1280             : {
    1281        2499 :   pari_sp av = avma;
    1282        2499 :   GEN Hi = NULL, H = NULL;
    1283        2499 :   long i, l = lg(L), v = get_Flx_var(Tp);
    1284      168169 :   for (i = 1; i < l; i++)
    1285             :   {
    1286      165613 :     GEN x, ei = gel(e,i);
    1287      165613 :     long s = signe(ei);
    1288      165613 :     if (!s) continue;
    1289      157593 :     x = Flxq_pow(gel(L,i), s > 0? ei: negi(ei), Tp, p);
    1290      157585 :     if (s > 0)
    1291       79405 :       H = H? Flxq_mul(H, x, Tp, p): x;
    1292             :     else
    1293       78180 :       Hi = Hi? Flxq_mul(Hi, x, Tp, p): x;
    1294             :   }
    1295        2556 :   if (!Hi)
    1296             :   {
    1297           0 :     if (!H) { set_avma(av); return mkvecsmall2(v,1); }
    1298           0 :     return gerepileuptoleaf(av, H);
    1299             :   }
    1300        2556 :   Hi = Flxq_inv(Hi, Tp, p);
    1301        2499 :   return gerepileuptoleaf(av, H? Flxq_mul(H,Hi,Tp,p): Hi);
    1302             : }
    1303             : GEN
    1304          14 : FqV_factorback(GEN L, GEN e, GEN Tp, GEN p)
    1305             : {
    1306          14 :   pari_sp av = avma;
    1307          14 :   GEN Hi = NULL, H = NULL;
    1308          14 :   long i, l = lg(L), small = typ(e) == t_VECSMALL;
    1309        1554 :   for (i = 1; i < l; i++)
    1310             :   {
    1311             :     GEN x;
    1312             :     long s;
    1313        1540 :     if (small)
    1314             :     {
    1315           0 :       s = e[i]; if (!s) continue;
    1316           0 :       x = Fq_powu(gel(L,i), labs(s), Tp, p);
    1317             :     }
    1318             :     else
    1319             :     {
    1320        1540 :       GEN ei = gel(e,i);
    1321        1540 :       s = signe(ei); if (!s) continue;
    1322        1540 :       x = Fq_pow(gel(L,i), s > 0? ei: negi(ei), Tp, p);
    1323             :     }
    1324        1540 :     if (s > 0)
    1325         819 :       H = H? Fq_mul(H, x, Tp, p): x;
    1326             :     else
    1327         721 :       Hi = Hi? Fq_mul(Hi, x, Tp, p): x;
    1328             :   }
    1329          14 :   if (Hi)
    1330             :   {
    1331           7 :     Hi = Fq_inv(Hi, Tp, p);
    1332           7 :     H = H? Fq_mul(H,Hi,Tp,p): Hi;
    1333             :   }
    1334           7 :   else if (!H) return gc_const(av, gen_1);
    1335          14 :   return gerepileupto(av, H);
    1336             : }
    1337             : 
    1338             : GEN
    1339    24935472 : factorback2(GEN L, GEN e) { return gen_factorback(L, e, NULL, &mul, &powi, NULL); }
    1340             : GEN
    1341     1400821 : factorback(GEN fa) { return factorback2(fa, NULL); }
    1342             : 
    1343             : GEN
    1344       10003 : vecprod(GEN v)
    1345             : {
    1346       10003 :   pari_sp av = avma;
    1347       10003 :   if (!is_vec_t(typ(v)))
    1348           0 :     pari_err_TYPE("vecprod", v);
    1349       10003 :   if (lg(v) == 1) return gen_1;
    1350        9226 :   return gerepilecopy(av, gen_product(v, NULL, mul));
    1351             : }
    1352             : 
    1353             : static int
    1354       11165 : RgX_is_irred_i(GEN x)
    1355             : {
    1356             :   GEN y, p, pol;
    1357       11165 :   long l = lg(x), pa;
    1358             : 
    1359       11165 :   if (!signe(x) || l <= 3) return 0;
    1360       11165 :   switch(RgX_type(x,&p,&pol,&pa))
    1361             :   {
    1362          21 :     case t_INTMOD: return FpX_is_irred(RgX_to_FpX(x,p), p);
    1363           0 :     case t_COMPLEX: return l == 4;
    1364           0 :     case t_REAL:
    1365           0 :       if (l == 4) return 1;
    1366           0 :       if (l > 5) return 0;
    1367           0 :       return gsigne(RgX_disc(x)) > 0;
    1368             :   }
    1369       11144 :   y = RgX_factor(x, NULL);
    1370       11144 :   return (lg(gcoeff(y,1,1))==l);
    1371             : }
    1372             : static int
    1373       11165 : RgX_is_irred(GEN x)
    1374       11165 : { pari_sp av = avma; return gc_bool(av, RgX_is_irred_i(x)); }
    1375             : long
    1376       11165 : polisirreducible(GEN x)
    1377             : {
    1378       11165 :   long tx = typ(x);
    1379       11165 :   if (tx == t_POL) return RgX_is_irred(x);
    1380           0 :   if (!is_scalar_t(tx)) pari_err_TYPE("polisirreducible",x);
    1381           0 :   return 0;
    1382             : }
    1383             : 
    1384             : /*******************************************************************/
    1385             : /*                                                                 */
    1386             : /*                         GENERIC GCD                             */
    1387             : /*                                                                 */
    1388             : /*******************************************************************/
    1389             : /* x is a COMPLEX or a QUAD */
    1390             : static GEN
    1391        2555 : triv_cont_gcd(GEN x, GEN y)
    1392             : {
    1393        2555 :   pari_sp av = avma;
    1394             :   GEN c;
    1395        2555 :   if (typ(x)==t_COMPLEX)
    1396             :   {
    1397        2233 :     GEN a = gel(x,1), b = gel(x,2);
    1398        2233 :     if (typ(a) == t_REAL || typ(b) == t_REAL) return gen_1;
    1399          21 :     c = ggcd(a,b);
    1400             :   }
    1401             :   else
    1402         322 :     c = ggcd(gel(x,2),gel(x,3));
    1403         343 :   return gerepileupto(av, ggcd(c,y));
    1404             : }
    1405             : 
    1406             : /* y is a PADIC, x a rational number or an INTMOD */
    1407             : static GEN
    1408        1407 : padic_gcd(GEN x, GEN y)
    1409             : {
    1410        1407 :   GEN p = gel(y,2);
    1411        1407 :   long v = gvaluation(x,p), w = valp(y);
    1412        1407 :   if (w < v) v = w;
    1413        1407 :   return powis(p, v);
    1414             : }
    1415             : 
    1416             : static void
    1417         896 : Zi_mul3(GEN xr, GEN xi, GEN yr, GEN yi, GEN *zr, GEN *zi)
    1418             : {
    1419         896 :   GEN p3 = addii(xr,xi);
    1420         896 :   GEN p4 = addii(yr,yi);
    1421         896 :   GEN p1 = mulii(xr,yr);
    1422         896 :   GEN p2 = mulii(xi,yi);
    1423         896 :   p3 = mulii(p3,p4);
    1424         896 :   p4 = addii(p2,p1);
    1425         896 :   *zr = subii(p1,p2); *zi = subii(p3,p4);
    1426         896 : }
    1427             : 
    1428             : static GEN
    1429         448 : Zi_rem(GEN x, GEN y)
    1430             : {
    1431         448 :   GEN xr = real_i(x), xi = imag_i(x);
    1432         448 :   GEN yr = real_i(y), yi = imag_i(y);
    1433         448 :   GEN n = addii(sqri(yr), sqri(yi));
    1434             :   GEN ur, ui, zr, zi;
    1435         448 :   Zi_mul3(xr, xi, yr, negi(yi), &ur, &ui);
    1436         448 :   Zi_mul3(yr, yi, diviiround(ur, n), diviiround(ui, n), &zr, &zi);
    1437         448 :   return mkcomplex(subii(xr,zr), subii(xi,zi));
    1438             : }
    1439             : 
    1440             : static GEN
    1441         399 : Qi_gcd(GEN x, GEN y)
    1442             : {
    1443         399 :   pari_sp av = avma, btop;
    1444             :   GEN dx, dy;
    1445         399 :   x = Q_remove_denom(x, &dx);
    1446         399 :   y = Q_remove_denom(y, &dy);
    1447         399 :   btop = avma;
    1448         847 :   while (!gequal0(y))
    1449             :   {
    1450         448 :     GEN z = Zi_rem(x,y);
    1451         448 :     x = y; y = z;
    1452         448 :     if (gc_needed(btop,1)) {
    1453           0 :       if(DEBUGMEM>1) pari_warn(warnmem,"Qi_gcd");
    1454           0 :       gerepileall(btop,2, &x,&y);
    1455             :     }
    1456             :   }
    1457         399 :   x = Qi_normal(x);
    1458         399 :   if (typ(x) == t_COMPLEX)
    1459             :   {
    1460         280 :     if      (gequal0(gel(x,2))) x = gel(x,1);
    1461         203 :     else if (gequal0(gel(x,1))) x = gel(x,2);
    1462             :   }
    1463         399 :   if (!dx && !dy) return gerepilecopy(av, x);
    1464          35 :   return gerepileupto(av, gdiv(x, dx? (dy? lcmii(dx, dy): dx): dy));
    1465             : }
    1466             : 
    1467             : static int
    1468        2590 : c_is_rational(GEN x)
    1469        2590 : { return is_rational_t(typ(gel(x,1))) && is_rational_t(typ(gel(x,2))); }
    1470             : static GEN
    1471        1267 : c_zero_gcd(GEN c)
    1472             : {
    1473        1267 :   GEN x = gel(c,1), y = gel(c,2);
    1474        1267 :   long tx = typ(x), ty = typ(y);
    1475        1267 :   if (tx == t_REAL || ty == t_REAL) return gen_1;
    1476          42 :   if (tx == t_PADIC || tx == t_INTMOD
    1477          42 :    || ty == t_PADIC || ty == t_INTMOD) return ggcd(x, y);
    1478          35 :   return Qi_gcd(c, gen_0);
    1479             : }
    1480             : 
    1481             : /* gcd(x, 0) */
    1482             : static GEN
    1483     8253860 : zero_gcd(GEN x)
    1484             : {
    1485             :   pari_sp av;
    1486     8253860 :   switch(typ(x))
    1487             :   {
    1488       47703 :     case t_INT: return absi(x);
    1489       46666 :     case t_FRAC: return absfrac(x);
    1490        1267 :     case t_COMPLEX: return c_zero_gcd(x);
    1491         602 :     case t_REAL: return gen_1;
    1492         728 :     case t_PADIC: return powis(gel(x,2), valp(x));
    1493         252 :     case t_SER: return pol_xnall(valser(x), varn(x));
    1494        3251 :     case t_POLMOD: {
    1495        3251 :       GEN d = gel(x,2);
    1496        3251 :       if (typ(d) == t_POL && varn(d) == varn(gel(x,1))) return content(d);
    1497         406 :       return isinexact(d)? zero_gcd(d): gcopy(d);
    1498             :     }
    1499     7909066 :     case t_POL:
    1500     7909066 :       if (!isinexact(x)) break;
    1501          14 :       av = avma;
    1502          14 :       return gerepileupto(av, monomialcopy(content(x), RgX_val(x), varn(x)));
    1503             : 
    1504      217109 :     case t_RFRAC:
    1505      217109 :       if (!isinexact(x)) break;
    1506           0 :       av = avma;
    1507           0 :       return gerepileupto(av, gdiv(zero_gcd(gel(x,1)), gel(x,2)));
    1508             :   }
    1509     8153377 :   return gcopy(x);
    1510             : }
    1511             : /* z is an exact zero, t_INT, t_INTMOD or t_FFELT */
    1512             : static GEN
    1513     8878550 : zero_gcd2(GEN y, GEN z)
    1514             : {
    1515             :   pari_sp av;
    1516     8878550 :   switch(typ(z))
    1517             :   {
    1518     8234676 :     case t_INT: return zero_gcd(y);
    1519      640206 :     case t_INTMOD:
    1520      640206 :       av = avma;
    1521      640206 :       return gerepileupto(av, gmul(y, mkintmod(gen_1,gel(z,1))));
    1522        3668 :     case t_FFELT:
    1523        3668 :       av = avma;
    1524        3668 :       return gerepileupto(av, gmul(y, FF_1(z)));
    1525           0 :     default:
    1526           0 :       pari_err_TYPE("zero_gcd", z);
    1527             :       return NULL;/*LCOV_EXCL_LINE*/
    1528             :   }
    1529             : }
    1530             : static GEN
    1531     2745837 : cont_gcd_pol_i(GEN x, GEN y) { return scalarpol(ggcd(content(x),y), varn(x));}
    1532             : /* tx = t_POL, y considered as constant */
    1533             : static GEN
    1534     2745837 : cont_gcd_pol(GEN x, GEN y)
    1535     2745837 : { pari_sp av = avma; return gerepileupto(av, cont_gcd_pol_i(x,y)); }
    1536             : /* tx = t_RFRAC, y considered as constant */
    1537             : static GEN
    1538       10143 : cont_gcd_rfrac(GEN x, GEN y)
    1539             : {
    1540       10143 :   pari_sp av = avma;
    1541       10143 :   GEN cx; x = primitive_part(x, &cx);
    1542             :   /* e.g. Mod(1,2) / (2*y+1) => primitive_part = Mod(1,2)*y^0 */
    1543       10143 :   if (typ(x) != t_RFRAC) x = cont_gcd_pol_i(x, y);
    1544       10143 :   else x = gred_rfrac_simple(ggcd(cx? cx: gen_1, y), gel(x,2));
    1545       10143 :   return gerepileupto(av, x);
    1546             : }
    1547             : /* !is_const_t(tx), tx != t_POL,t_RFRAC, y considered as constant */
    1548             : static GEN
    1549        2572 : cont_gcd_gen(GEN x, GEN y)
    1550             : {
    1551        2572 :   pari_sp av = avma;
    1552        2572 :   return gerepileupto(av, ggcd(content(x),y));
    1553             : }
    1554             : /* !is_const(tx), y considered as constant */
    1555             : static GEN
    1556     2758538 : cont_gcd(GEN x, long tx, GEN y)
    1557             : {
    1558     2758538 :   switch(tx)
    1559             :   {
    1560       10143 :     case t_RFRAC: return cont_gcd_rfrac(x,y);
    1561     2745823 :     case t_POL: return cont_gcd_pol(x,y);
    1562        2572 :     default: return cont_gcd_gen(x,y);
    1563             :   }
    1564             : }
    1565             : static GEN
    1566    12443462 : gcdiq(GEN x, GEN y)
    1567             : {
    1568             :   GEN z;
    1569    12443462 :   if (!signe(x)) return Q_abs(y);
    1570     4635558 :   z = cgetg(3,t_FRAC);
    1571     4635586 :   gel(z,1) = gcdii(x,gel(y,1));
    1572     4635547 :   gel(z,2) = icopy(gel(y,2));
    1573     4635549 :   return z;
    1574             : }
    1575             : static GEN
    1576    27377209 : gcdqq(GEN x, GEN y)
    1577             : {
    1578    27377209 :   GEN z = cgetg(3,t_FRAC);
    1579    27377198 :   gel(z,1) = gcdii(gel(x,1), gel(y,1));
    1580    27377008 :   gel(z,2) = lcmii(gel(x,2), gel(y,2));
    1581    27377110 :   return z;
    1582             : }
    1583             : /* assume x,y t_INT or t_FRAC */
    1584             : GEN
    1585  1004415042 : Q_gcd(GEN x, GEN y)
    1586             : {
    1587  1004415042 :   long tx = typ(x), ty = typ(y);
    1588  1004415042 :   if (tx == t_INT)
    1589   967569497 :   { return (ty == t_INT)? gcdii(x,y): gcdiq(x,y); }
    1590             :   else
    1591    36845545 :   { return (ty == t_INT)? gcdiq(y,x): gcdqq(x,y); }
    1592             : }
    1593             : 
    1594             : GEN
    1595    30225189 : ggcd(GEN x, GEN y)
    1596             : {
    1597    30225189 :   long vx, vy, tx = typ(x), ty = typ(y);
    1598             :   pari_sp av, tetpil;
    1599             :   GEN p1,z;
    1600             : 
    1601    60450377 :   if (is_noncalc_t(tx) || is_matvec_t(tx) ||
    1602    60450376 :       is_noncalc_t(ty) || is_matvec_t(ty)) pari_err_TYPE2("gcd",x,y);
    1603    30225188 :   if (tx>ty) { swap(x,y); lswap(tx,ty); }
    1604             :   /* tx <= ty */
    1605    30225188 :   z = gisexactzero(x); if (z) return zero_gcd2(y,z);
    1606    27130580 :   z = gisexactzero(y); if (z) return zero_gcd2(x,z);
    1607    21346638 :   if (is_const_t(tx))
    1608             :   {
    1609    13344399 :     if (ty == tx) switch(tx)
    1610             :     {
    1611     8089746 :       case t_INT:
    1612     8089746 :         return gcdii(x,y);
    1613             : 
    1614     2179226 :       case t_INTMOD: z=cgetg(3,t_INTMOD);
    1615     2179226 :         if (equalii(gel(x,1),gel(y,1)))
    1616     2179219 :           gel(z,1) = icopy(gel(x,1));
    1617             :         else
    1618           7 :           gel(z,1) = gcdii(gel(x,1),gel(y,1));
    1619     2179226 :         if (gequal1(gel(z,1))) gel(z,2) = gen_0;
    1620             :         else
    1621             :         {
    1622     2179226 :           av = avma; p1 = gcdii(gel(z,1),gel(x,2));
    1623     2179226 :           if (!equali1(p1))
    1624             :           {
    1625           7 :             p1 = gcdii(p1,gel(y,2));
    1626           7 :             if (equalii(p1, gel(z,1))) { cgiv(p1); p1 = gen_0; }
    1627           7 :             else p1 = gerepileuptoint(av, p1);
    1628             :           }
    1629     2179226 :           gel(z,2) = p1;
    1630             :         }
    1631     2179226 :         return z;
    1632             : 
    1633      262675 :       case t_FRAC:
    1634      262675 :         return gcdqq(x,y);
    1635             : 
    1636        5656 :       case t_FFELT:
    1637        5656 :         if (!FF_samefield(x,y)) pari_err_OP("gcd",x,y);
    1638        5656 :         return FF_equal0(x) && FF_equal0(y)? FF_zero(y): FF_1(y);
    1639             : 
    1640          21 :       case t_COMPLEX:
    1641          21 :         if (c_is_rational(x) && c_is_rational(y)) return Qi_gcd(x,y);
    1642           7 :         return triv_cont_gcd(y,x);
    1643             : 
    1644          14 :       case t_PADIC:
    1645          14 :         if (!equalii(gel(x,2),gel(y,2))) return gen_1;
    1646           7 :         return powis(gel(y,2), minss(valp(x), valp(y)));
    1647             : 
    1648         133 :       case t_QUAD:
    1649         133 :         av=avma; p1=gdiv(x,y);
    1650         133 :         if (gequal0(gel(p1,3)))
    1651             :         {
    1652          14 :           p1=gel(p1,2);
    1653          14 :           if (typ(p1)==t_INT) { set_avma(av); return gcopy(y); }
    1654           7 :           tetpil=avma; return gerepile(av,tetpil, gdiv(y,gel(p1,2)));
    1655             :         }
    1656         119 :         if (typ(gel(p1,2))==t_INT && typ(gel(p1,3))==t_INT) {set_avma(av); return gcopy(y);}
    1657         112 :         p1 = ginv(p1); set_avma(av);
    1658         112 :         if (typ(gel(p1,2))==t_INT && typ(gel(p1,3))==t_INT) return gcopy(x);
    1659         105 :         return triv_cont_gcd(y,x);
    1660             : 
    1661           0 :       default: return gen_1; /* t_REAL */
    1662             :     }
    1663     2806928 :     if (is_const_t(ty)) switch(tx)
    1664             :     {
    1665       74269 :       case t_INT:
    1666       74269 :         switch(ty)
    1667             :         {
    1668          70 :           case t_INTMOD: z = cgetg(3,t_INTMOD);
    1669          70 :             gel(z,1) = icopy(gel(y,1)); av = avma;
    1670          70 :             p1 = gcdii(gel(y,1),gel(y,2));
    1671          70 :             if (!equali1(p1)) {
    1672          14 :               p1 = gcdii(x,p1);
    1673          14 :               if (equalii(p1, gel(z,1))) { cgiv(p1); p1 = gen_0; }
    1674             :               else
    1675          14 :                 p1 = gerepileuptoint(av, p1);
    1676             :             }
    1677          70 :             gel(z,2) = p1; return z;
    1678             : 
    1679        8162 :           case t_REAL: return gen_1;
    1680             : 
    1681       61977 :           case t_FRAC:
    1682       61977 :             return gcdiq(x,y);
    1683             : 
    1684        2471 :           case t_COMPLEX:
    1685        2471 :             if (c_is_rational(y)) return Qi_gcd(x,y);
    1686        2128 :             return triv_cont_gcd(y,x);
    1687             : 
    1688          70 :           case t_FFELT:
    1689          70 :             if (!FF_equal0(y)) return FF_1(y);
    1690           0 :             return dvdii(x, gel(y,4))? FF_zero(y): FF_1(y);
    1691             : 
    1692        1393 :           case t_PADIC:
    1693        1393 :             return padic_gcd(x,y);
    1694             : 
    1695         126 :           case t_QUAD:
    1696         126 :             return triv_cont_gcd(y,x);
    1697           0 :           default:
    1698           0 :             pari_err_TYPE2("gcd",x,y);
    1699             :         }
    1700             : 
    1701          14 :       case t_REAL:
    1702          14 :         switch(ty)
    1703             :         {
    1704          14 :           case t_INTMOD:
    1705             :           case t_FFELT:
    1706          14 :           case t_PADIC: pari_err_TYPE2("gcd",x,y);
    1707           0 :           default: return gen_1;
    1708             :         }
    1709             : 
    1710          49 :       case t_INTMOD:
    1711          49 :         switch(ty)
    1712             :         {
    1713          14 :           case t_FRAC:
    1714          14 :             av = avma; p1=gcdii(gel(x,1),gel(y,2)); set_avma(av);
    1715          14 :             if (!equali1(p1)) pari_err_OP("gcd",x,y);
    1716           7 :             return ggcd(gel(y,1), x);
    1717             : 
    1718          14 :           case t_FFELT:
    1719             :           {
    1720          14 :             GEN p = gel(y,4);
    1721          14 :             if (!dvdii(gel(x,1), p)) pari_err_OP("gcd",x,y);
    1722           7 :             if (!FF_equal0(y)) return FF_1(y);
    1723           0 :             return dvdii(gel(x,2),p)? FF_zero(y): FF_1(y);
    1724             :           }
    1725             : 
    1726          14 :           case t_COMPLEX: case t_QUAD:
    1727          14 :             return triv_cont_gcd(y,x);
    1728             : 
    1729           7 :           case t_PADIC:
    1730           7 :             return padic_gcd(x,y);
    1731             : 
    1732           0 :           default: pari_err_TYPE2("gcd",x,y);
    1733             :         }
    1734             : 
    1735         210 :       case t_FRAC:
    1736         210 :         switch(ty)
    1737             :         {
    1738          84 :           case t_COMPLEX:
    1739          84 :             if (c_is_rational(y)) return Qi_gcd(x,y);
    1740             :           case t_QUAD:
    1741         154 :             return triv_cont_gcd(y,x);
    1742          42 :           case t_FFELT:
    1743             :           {
    1744          42 :             GEN p = gel(y,4);
    1745          42 :             if (dvdii(gel(x,2), p)) pari_err_OP("gcd",x,y);
    1746          21 :             if (!FF_equal0(y)) return FF_1(y);
    1747           0 :             return dvdii(gel(x,1),p)? FF_zero(y): FF_1(y);
    1748             :           }
    1749             : 
    1750           7 :           case t_PADIC:
    1751           7 :             return padic_gcd(x,y);
    1752             : 
    1753           0 :           default: pari_err_TYPE2("gcd",x,y);
    1754             :         }
    1755          70 :       case t_FFELT:
    1756          70 :         switch(ty)
    1757             :         {
    1758          42 :           case t_PADIC:
    1759             :           {
    1760          42 :             GEN p = gel(y,2);
    1761          42 :             long v = valp(y);
    1762          42 :             if (!equalii(p, gel(x,4)) || v < 0) pari_err_OP("gcd",x,y);
    1763          14 :             return (v && FF_equal0(x))? FF_zero(x): FF_1(x);
    1764             :           }
    1765          28 :           default: pari_err_TYPE2("gcd",x,y);
    1766             :         }
    1767             : 
    1768          14 :       case t_COMPLEX:
    1769          14 :         switch(ty)
    1770             :         {
    1771          14 :           case t_PADIC:
    1772          14 :           case t_QUAD: return triv_cont_gcd(x,y);
    1773           0 :           default: pari_err_TYPE2("gcd",x,y);
    1774             :         }
    1775             : 
    1776           7 :       case t_PADIC:
    1777           7 :         switch(ty)
    1778             :         {
    1779           7 :           case t_QUAD: return triv_cont_gcd(y,x);
    1780           0 :           default: pari_err_TYPE2("gcd",x,y);
    1781             :         }
    1782             : 
    1783           0 :       default: return gen_1; /* tx = t_REAL */
    1784             :     }
    1785     2732295 :     return cont_gcd(y,ty, x);
    1786             :   }
    1787             : 
    1788     8002239 :   if (tx == t_POLMOD)
    1789             :   {
    1790        6117 :     if (ty == t_POLMOD)
    1791             :     {
    1792        6061 :       GEN T = gel(x,1), Ty = gel(y,1);
    1793        6061 :       z = cgetg(3,t_POLMOD);
    1794        6061 :       if (varn(T)==varn(Ty))
    1795        6047 :         T = RgX_equal(T,Ty)? RgX_copy(T): RgX_gcd(T, Ty);
    1796          14 :       else if(varn(T)<varn(Ty))
    1797           0 :         T = RgX_copy(T);
    1798             :       else
    1799          14 :         T = RgX_copy(Ty);
    1800        6061 :       gel(z,1) = T;
    1801        6061 :       if (degpol(T) <= 0) gel(z,2) = gen_0;
    1802             :       else
    1803             :       {
    1804             :         GEN X, Y, d;
    1805        6061 :         av = avma; X = gel(x,2); Y = gel(y,2);
    1806        6061 :         d = ggcd(content(X), content(Y));
    1807        6061 :         if (!gequal1(d)) { X = gdiv(X,d); Y = gdiv(Y,d); }
    1808        6061 :         p1 = ggcd(T, X);
    1809        6061 :         gel(z,2) = gerepileupto(av, gmul(d, ggcd(p1, Y)));
    1810             :       }
    1811        6061 :       return z;
    1812             :     }
    1813          56 :     vx = varn(gel(x,1));
    1814          56 :     switch(ty)
    1815             :     {
    1816          28 :       case t_POL:
    1817          28 :         vy = varn(y);
    1818          28 :         if (varncmp(vy,vx) < 0) return cont_gcd_pol(y, x);
    1819          14 :         z = cgetg(3,t_POLMOD);
    1820          14 :         gel(z,1) = RgX_copy(gel(x,1));
    1821          14 :         av = avma; p1 = ggcd(gel(x,1),gel(x,2));
    1822          14 :         gel(z,2) = gerepileupto(av, ggcd(p1,y));
    1823          14 :         return z;
    1824             : 
    1825          28 :       case t_RFRAC:
    1826          28 :         vy = varn(gel(y,2));
    1827          28 :         if (varncmp(vy,vx) < 0) return cont_gcd_rfrac(y, x);
    1828          28 :         av = avma;
    1829          28 :         p1 = ggcd(gel(x,1),gel(y,2));
    1830          28 :         if (degpol(p1)) pari_err_OP("gcd",x,y);
    1831          21 :         set_avma(av); return gdiv(ggcd(gel(y,1),x), content(gel(y,2)));
    1832             :     }
    1833             :   }
    1834             : 
    1835     7996122 :   vx = gvar(x);
    1836     7996122 :   vy = gvar(y);
    1837     7996122 :   if (varncmp(vy, vx) < 0) return cont_gcd(y,ty, x);
    1838     7983928 :   if (varncmp(vy, vx) > 0) return cont_gcd(x,tx, y);
    1839             : 
    1840             :   /* vx = vy: same main variable */
    1841     7969879 :   switch(tx)
    1842             :   {
    1843     7809043 :     case t_POL:
    1844             :       switch(ty)
    1845             :       {
    1846     6955941 :         case t_POL: return RgX_gcd(x,y);
    1847          28 :         case t_SER:
    1848          28 :           z = ggcd(content(x), content(y));
    1849          28 :           return monomialcopy(z, minss(valser(y),gval(x,vx)), vx);
    1850      853074 :         case t_RFRAC:
    1851      853074 :           av = avma; z = gred_rfrac_simple(ggcd(gel(y,1), x), gel(y,2));
    1852      853074 :           return gerepileupto(av, z);
    1853             :       }
    1854           0 :       break;
    1855             : 
    1856          14 :     case t_SER:
    1857          14 :       z = ggcd(content(x), content(y));
    1858             :       switch(ty)
    1859             :       {
    1860           7 :         case t_SER:   return monomialcopy(z, minss(valser(x),valser(y)), vx);
    1861           7 :         case t_RFRAC: return monomialcopy(z, minss(valser(x),gval(y,vx)), vx);
    1862             :       }
    1863           0 :       break;
    1864             : 
    1865      160822 :     case t_RFRAC:
    1866             :     {
    1867      160822 :       GEN xd = gel(x,2), yd = gel(y,2);
    1868      160822 :       if (ty != t_RFRAC) pari_err_TYPE2("gcd",x,y);
    1869      160822 :       z = cgetg(3,t_RFRAC); av = avma;
    1870      160822 :       gel(z,2) = gerepileupto(av, RgX_mul(xd, RgX_div(yd, RgX_gcd(xd, yd))));
    1871      160822 :       gel(z,1) = ggcd(gel(x,1), gel(y,1)); return z;
    1872             :     }
    1873             :   }
    1874           0 :   pari_err_TYPE2("gcd",x,y);
    1875             :   return NULL; /* LCOV_EXCL_LINE */
    1876             : }
    1877             : GEN
    1878     5203518 : ggcd0(GEN x, GEN y) { return y? ggcd(x,y): content(x); }
    1879             : 
    1880             : static GEN
    1881        3680 : fix_lcm(GEN x)
    1882             : {
    1883             :   GEN t;
    1884        3680 :   switch(typ(x))
    1885             :   {
    1886        3575 :     case t_INT:
    1887        3575 :       x = absi_shallow(x); break;
    1888          98 :     case t_POL:
    1889          98 :       if (lg(x) <= 2) break;
    1890          98 :       t = leading_coeff(x);
    1891          98 :       if (typ(t) == t_INT && signe(t) < 0) x = gneg(x);
    1892             :   }
    1893        3680 :   return x;
    1894             : }
    1895             : GEN
    1896        2898 : glcm0(GEN x, GEN y)
    1897             : {
    1898        2898 :   if (!y) return fix_lcm(gassoc_proto(glcm,x,y));
    1899        2849 :   return glcm(x,y);
    1900             : }
    1901             : GEN
    1902        3575 : ZV_lcm(GEN x) { return fix_lcm(gassoc_proto(lcmii,x,NULL)); }
    1903             : GEN
    1904        3283 : glcm(GEN x, GEN y)
    1905             : {
    1906             :   pari_sp av;
    1907             :   GEN z;
    1908        3283 :   if (typ(x)==t_INT && typ(y)==t_INT) return lcmii(x,y);
    1909          70 :   av = avma; z = ggcd(x,y);
    1910          70 :   if (!gequal1(z))
    1911             :   {
    1912          63 :     if (gequal0(z)) { set_avma(av); return gmul(x,y); }
    1913          49 :     y = gdiv(y,z);
    1914             :   }
    1915          56 :   return gerepileupto(av, fix_lcm(gmul(x,y)));
    1916             : }
    1917             : 
    1918             : /* x + r ~ x ? Assume x,r are t_POL, deg(r) <= deg(x) */
    1919             : static int
    1920           0 : pol_approx0(GEN r, GEN x, int exact)
    1921             : {
    1922             :   long i, l;
    1923           0 :   if (exact) return !signe(r);
    1924           0 :   l = minss(lg(x), lg(r));
    1925           0 :   for (i = 2; i < l; i++)
    1926           0 :     if (!cx_approx0(gel(r,i), gel(x,i))) return 0;
    1927           0 :   return 1;
    1928             : }
    1929             : 
    1930             : GEN
    1931           0 : RgX_gcd_simple(GEN x, GEN y)
    1932             : {
    1933           0 :   pari_sp av1, av = avma;
    1934           0 :   GEN r, yorig = y;
    1935           0 :   int exact = !(isinexactreal(x) || isinexactreal(y));
    1936             : 
    1937             :   for(;;)
    1938             :   {
    1939           0 :     av1 = avma; r = RgX_rem(x,y);
    1940           0 :     if (pol_approx0(r, x, exact))
    1941             :     {
    1942           0 :       set_avma(av1);
    1943           0 :       if (y == yorig) return RgX_copy(y);
    1944           0 :       y = normalizepol_approx(y, lg(y));
    1945           0 :       if (lg(y) == 3) { set_avma(av); return pol_1(varn(x)); }
    1946           0 :       return gerepileupto(av,y);
    1947             :     }
    1948           0 :     x = y; y = r;
    1949           0 :     if (gc_needed(av,1)) {
    1950           0 :       if(DEBUGMEM>1) pari_warn(warnmem,"RgX_gcd_simple");
    1951           0 :       gerepileall(av,2, &x,&y);
    1952             :     }
    1953             :   }
    1954             : }
    1955             : GEN
    1956           0 : RgX_extgcd_simple(GEN a, GEN b, GEN *pu, GEN *pv)
    1957             : {
    1958           0 :   pari_sp av = avma;
    1959             :   GEN q, r, d, d1, u, v, v1;
    1960           0 :   int exact = !(isinexactreal(a) || isinexactreal(b));
    1961             : 
    1962           0 :   d = a; d1 = b; v = gen_0; v1 = gen_1;
    1963             :   for(;;)
    1964             :   {
    1965           0 :     if (pol_approx0(d1, a, exact)) break;
    1966           0 :     q = poldivrem(d,d1, &r);
    1967           0 :     v = gsub(v, gmul(q,v1));
    1968           0 :     u=v; v=v1; v1=u;
    1969           0 :     u=r; d=d1; d1=u;
    1970             :   }
    1971           0 :   u = gsub(d, gmul(b,v));
    1972           0 :   u = RgX_div(u,a);
    1973             : 
    1974           0 :   gerepileall(av, 3, &u,&v,&d);
    1975           0 :   *pu = u;
    1976           0 :   *pv = v; return d;
    1977             : }
    1978             : 
    1979             : GEN
    1980          91 : ghalfgcd(GEN x, GEN y)
    1981             : {
    1982          91 :   long tx = typ(x), ty = typ(y);
    1983          91 :   if (tx==t_INT && ty==t_INT) return halfgcdii(x, y);
    1984          63 :   if (tx==t_POL && ty==t_POL && varn(x)==varn(y))
    1985             :   {
    1986          63 :     pari_sp av = avma;
    1987          63 :     GEN a, b, M = RgX_halfgcd_all(x, y, &a, &b);
    1988          63 :     return gerepilecopy(av, mkvec2(M, mkcol2(a,b)));
    1989             :   }
    1990           0 :   pari_err_OP("halfgcd", x, y);
    1991             :   return NULL; /* LCOV_EXCL_LINE */
    1992             : }
    1993             : 
    1994             : /*******************************************************************/
    1995             : /*                                                                 */
    1996             : /*                    CONTENT / PRIMITIVE PART                     */
    1997             : /*                                                                 */
    1998             : /*******************************************************************/
    1999             : 
    2000             : GEN
    2001    72286727 : content(GEN x)
    2002             : {
    2003    72286727 :   long lx, i, t, tx = typ(x);
    2004    72286727 :   pari_sp av = avma;
    2005             :   GEN c;
    2006             : 
    2007    72286727 :   if (is_scalar_t(tx)) return zero_gcd(x);
    2008    72270335 :   switch(tx)
    2009             :   {
    2010       10178 :     case t_RFRAC:
    2011             :     {
    2012       10178 :       GEN n = gel(x,1), d = gel(x,2);
    2013             :       /* -- varncmp(vn, vd) < 0 can't happen
    2014             :        * -- if n is POLMOD, its main variable (in the sense of gvar2)
    2015             :        *    has lower priority than denominator */
    2016       10178 :       if (typ(n) == t_POLMOD || varncmp(gvar(n), varn(d)) > 0)
    2017       10141 :         n = isinexact(n)? zero_gcd(n): gcopy(n);
    2018             :       else
    2019          37 :         n = content(n);
    2020       10178 :       return gerepileupto(av, gdiv(n, content(d)));
    2021             :     }
    2022             : 
    2023     2820181 :     case t_VEC: case t_COL:
    2024     2820181 :       lx = lg(x); if (lx==1) return gen_0;
    2025     2820174 :       break;
    2026             : 
    2027          21 :     case t_MAT:
    2028             :     {
    2029             :       long hx, j;
    2030          21 :       lx = lg(x);
    2031          21 :       if (lx == 1) return gen_0;
    2032          14 :       hx = lgcols(x);
    2033          14 :       if (hx == 1) return gen_0;
    2034           7 :       if (lx == 2) { x = gel(x,1); lx = lg(x); break; }
    2035           7 :       if (hx == 2) { x = row_i(x, 1, 1, lx-1); break; }
    2036           7 :       c = content(gel(x,1));
    2037          14 :       for (j=2; j<lx; j++)
    2038          21 :         for (i=1; i<hx; i++) c = ggcd(c,gcoeff(x,i,j));
    2039           7 :       if (typ(c) == t_INTMOD || isinexact(c)) return gc_const(av, gen_1);
    2040           7 :       return gerepileupto(av,c);
    2041             :     }
    2042             : 
    2043    69439745 :     case t_POL: case t_SER:
    2044    69439745 :       lx = lg(x); if (lx == 2) return gen_0;
    2045    69416554 :       break;
    2046          21 :     case t_VECSMALL: return utoi(zv_content(x));
    2047         189 :     case t_QFB:
    2048         189 :       lx = 4; break;
    2049             : 
    2050           0 :     default: pari_err_TYPE("content",x);
    2051             :       return NULL; /* LCOV_EXCL_LINE */
    2052             :   }
    2053   213270888 :   for (i=lontyp[tx]; i<lx; i++)
    2054   154071724 :     if (typ(gel(x,i)) != t_INT) break;
    2055    72236916 :   lx--; c = gel(x,lx);
    2056    72236916 :   t = typ(c); if (is_matvec_t(t)) c = content(c);
    2057    72236915 :   if (i > lx)
    2058             :   { /* integer coeffs */
    2059    62065176 :     while (lx-- > lontyp[tx])
    2060             :     {
    2061    60613482 :       c = gcdii(c, gel(x,lx));
    2062    60613452 :       if (equali1(c)) return gc_const(av, gen_1);
    2063             :     }
    2064             :   }
    2065             :   else
    2066             :   {
    2067    13037752 :     if (isinexact(c)) c = zero_gcd(c);
    2068    34264690 :     while (lx-- > lontyp[tx])
    2069             :     {
    2070    21226938 :       GEN d = gel(x,lx);
    2071    21226938 :       t = typ(d); if (is_matvec_t(t)) d = content(d);
    2072    21226938 :       c = ggcd(c, d);
    2073             :     }
    2074    13037752 :     if (isinexact(c)) return gc_const(av, gen_1);
    2075             :   }
    2076    14489446 :   switch(typ(c))
    2077             :   {
    2078     1456608 :     case t_INT:
    2079     1456608 :       c = absi_shallow(c); break;
    2080           0 :     case t_VEC: case t_COL: case t_MAT:
    2081           0 :       pari_err_TYPE("content",x);
    2082             :   }
    2083             : 
    2084    14489451 :   return av==avma? gcopy(c): gerepileupto(av,c);
    2085             : }
    2086             : 
    2087             : GEN
    2088     1100305 : primitive_part(GEN x, GEN *ptc)
    2089             : {
    2090     1100305 :   pari_sp av = avma;
    2091     1100305 :   GEN c = content(x);
    2092     1100267 :   if (gequal1(c)) { set_avma(av); c = NULL; }
    2093      170194 :   else if (!gequal0(c)) x = gdiv(x,c);
    2094     1100272 :   if (ptc) *ptc = c;
    2095     1100272 :   return x;
    2096             : }
    2097             : GEN
    2098        2233 : primpart(GEN x) { return primitive_part(x, NULL); }
    2099             : 
    2100             : static GEN
    2101   172988543 : Q_content_v(GEN x, long imin, long l)
    2102             : {
    2103   172988543 :   pari_sp av = avma;
    2104   172988543 :   long i = l-1;
    2105   172988543 :   GEN d = Q_content_safe(gel(x,i));
    2106   172991685 :   if (!d) return NULL;
    2107  1177193635 :   for (i--; i >= imin; i--)
    2108             :   {
    2109  1004307610 :     GEN c = Q_content_safe(gel(x,i));
    2110  1004392100 :     if (!c) return NULL;
    2111  1004392072 :     d = Q_gcd(d, c);
    2112  1004204632 :     if (gc_needed(av,1)) d = gerepileupto(av, d);
    2113             :   }
    2114   172886025 :   return gerepileupto(av, d);
    2115             : }
    2116             : /* As content(), but over Q. Treats polynomial as elts of Q[x1,...xn], instead
    2117             :  * of Q(x2,...,xn)[x1] */
    2118             : GEN
    2119  1262345807 : Q_content_safe(GEN x)
    2120             : {
    2121             :   long l;
    2122  1262345807 :   switch(typ(x))
    2123             :   {
    2124  1051683798 :     case t_INT:  return absi(x);
    2125    37370484 :     case t_FRAC: return absfrac(x);
    2126   126277399 :     case t_COMPLEX: case t_VEC: case t_COL: case t_MAT:
    2127   126277399 :       l = lg(x); return l==1? gen_1: Q_content_v(x, 1, l);
    2128    47056055 :     case t_POL:
    2129    47056055 :       l = lg(x); return l==2? gen_0: Q_content_v(x, 2, l);
    2130       32687 :     case t_POLMOD: return Q_content_safe(gel(x,2));
    2131          21 :     case t_RFRAC:
    2132             :     {
    2133             :       GEN a, b;
    2134          21 :       a = Q_content_safe(gel(x,1)); if (!a) return NULL;
    2135          21 :       b = Q_content_safe(gel(x,2)); if (!b) return NULL;
    2136          21 :       return gdiv(a, b);
    2137             :     }
    2138             :   }
    2139         330 :   return NULL;
    2140             : }
    2141             : GEN
    2142      194106 : Q_content(GEN x)
    2143             : {
    2144      194106 :   GEN c = Q_content_safe(x);
    2145      194106 :   if (!c) pari_err_TYPE("Q_content",x);
    2146      194106 :   return c;
    2147             : }
    2148             : 
    2149             : GEN
    2150       13146 : ZX_content(GEN x)
    2151             : {
    2152       13146 :   long i, l = lg(x);
    2153             :   GEN d;
    2154             :   pari_sp av;
    2155             : 
    2156       13146 :   if (l == 2) return gen_0;
    2157       13146 :   d = gel(x,2);
    2158       13146 :   if (l == 3) return absi(d);
    2159        9170 :   av = avma;
    2160       18963 :   for (i=3; !is_pm1(d) && i<l; i++) d = gcdii(d, gel(x,i));
    2161        9170 :   if (signe(d) < 0) d = negi(d);
    2162        9170 :   return gerepileuptoint(av, d);
    2163             : }
    2164             : 
    2165             : static GEN
    2166     2283225 : Z_content_v(GEN x, long i, long l)
    2167             : {
    2168     2283225 :   pari_sp av = avma;
    2169     2283225 :   GEN d = Z_content(gel(x,i));
    2170     2283222 :   if (!d) return NULL;
    2171     5880774 :   for (i++; i<l; i++)
    2172             :   {
    2173     5360368 :     GEN c = Z_content(gel(x,i));
    2174     5360431 :     if (!c) return NULL;
    2175     4744904 :     d = gcdii(d, c); if (equali1(d)) return NULL;
    2176     3908913 :     if ((i & 255) == 0) d = gerepileuptoint(av, d);
    2177             :   }
    2178      520406 :   return gerepileuptoint(av, d);
    2179             : }
    2180             : /* return NULL for 1 */
    2181             : GEN
    2182     9885057 : Z_content(GEN x)
    2183             : {
    2184             :   long l;
    2185     9885057 :   switch(typ(x))
    2186             :   {
    2187     7582836 :     case t_INT:
    2188     7582836 :       if (is_pm1(x)) return NULL;
    2189     6659771 :       return absi(x);
    2190     2248874 :     case t_COMPLEX: case t_VEC: case t_COL: case t_MAT:
    2191     2248874 :       l = lg(x); return l==1? NULL: Z_content_v(x, 1, l);
    2192       53431 :     case t_POL:
    2193       53431 :       l = lg(x); return l==2? gen_0: Z_content_v(x, 2, l);
    2194           0 :     case t_POLMOD: return Z_content(gel(x,2));
    2195             :   }
    2196           0 :   pari_err_TYPE("Z_content", x);
    2197             :   return NULL; /* LCOV_EXCL_LINE */
    2198             : }
    2199             : 
    2200             : static GEN
    2201    53722046 : Q_denom_v(GEN x, long i, long l)
    2202             : {
    2203    53722046 :   pari_sp av = avma;
    2204    53722046 :   GEN d = Q_denom_safe(gel(x,i));
    2205    53721840 :   if (!d) return NULL;
    2206   186712503 :   for (i++; i<l; i++)
    2207             :   {
    2208   132990724 :     GEN D = Q_denom_safe(gel(x,i));
    2209   132990493 :     if (!D) return NULL;
    2210   132990493 :     if (D != gen_1) d = lcmii(d, D);
    2211   132990352 :     if ((i & 255) == 0) d = gerepileuptoint(av, d);
    2212             :   }
    2213    53721779 :   return gerepileuptoint(av, d);
    2214             : }
    2215             : /* NOT MEMORY CLEAN (because of t_FRAC).
    2216             :  * As denom(), but over Q. Treats polynomial as elts of Q[x1,...xn], instead
    2217             :  * of Q(x2,...,xn)[x1] */
    2218             : GEN
    2219   245460812 : Q_denom_safe(GEN x)
    2220             : {
    2221             :   long l;
    2222   245460812 :   switch(typ(x))
    2223             :   {
    2224   157790408 :     case t_INT: return gen_1;
    2225          28 :     case t_PADIC: l = valp(x); return l < 0? powiu(gel(x,2), -l): gen_1;
    2226    33685952 :     case t_FRAC: return gel(x,2);
    2227         504 :     case t_QUAD: return Q_denom_v(x, 2, 4);
    2228    41386759 :     case t_COMPLEX: case t_VEC: case t_COL: case t_MAT:
    2229    41386759 :       l = lg(x); return l==1? gen_1: Q_denom_v(x, 1, l);
    2230    12501855 :     case t_POL: case t_SER:
    2231    12501855 :       l = lg(x); return l==2? gen_1: Q_denom_v(x, 2, l);
    2232       93401 :     case t_POLMOD: return Q_denom(gel(x,2));
    2233        8134 :     case t_RFRAC:
    2234             :     {
    2235             :       GEN a, b;
    2236        8134 :       a = Q_content(gel(x,1)); if (!a) return NULL;
    2237        8134 :       b = Q_content(gel(x,2)); if (!b) return NULL;
    2238        8134 :       return Q_denom(gdiv(a, b));
    2239             :     }
    2240             :   }
    2241          66 :   return NULL;
    2242             : }
    2243             : GEN
    2244     3185723 : Q_denom(GEN x)
    2245             : {
    2246     3185723 :   GEN d = Q_denom_safe(x);
    2247     3185719 :   if (!d) pari_err_TYPE("Q_denom",x);
    2248     3185719 :   return d;
    2249             : }
    2250             : 
    2251             : GEN
    2252    55565868 : Q_remove_denom(GEN x, GEN *ptd)
    2253             : {
    2254    55565868 :   GEN d = Q_denom_safe(x);
    2255    55566269 :   if (d) { if (d == gen_1) d = NULL; else x = Q_muli_to_int(x,d); }
    2256    55565945 :   if (ptd) *ptd = d;
    2257    55565945 :   return x;
    2258             : }
    2259             : 
    2260             : /* return y = x * d, assuming x rational, and d,y integral */
    2261             : GEN
    2262   140741290 : Q_muli_to_int(GEN x, GEN d)
    2263             : {
    2264             :   GEN y, xn, xd;
    2265             :   pari_sp av;
    2266             : 
    2267   140741290 :   if (typ(d) != t_INT) pari_err_TYPE("Q_muli_to_int",d);
    2268   140745745 :   switch (typ(x))
    2269             :   {
    2270    44847526 :     case t_INT:
    2271    44847526 :       return mulii(x,d);
    2272             : 
    2273    65243836 :     case t_FRAC:
    2274    65243836 :       xn = gel(x,1);
    2275    65243836 :       xd = gel(x,2); av = avma;
    2276    65243836 :       y = mulii(xn, diviiexact(d, xd));
    2277    65239034 :       return gerepileuptoint(av, y);
    2278          42 :     case t_COMPLEX:
    2279          42 :       y = cgetg(3,t_COMPLEX);
    2280          42 :       gel(y,1) = Q_muli_to_int(gel(x,1),d);
    2281          42 :       gel(y,2) = Q_muli_to_int(gel(x,2),d);
    2282          42 :       return y;
    2283          14 :     case t_PADIC:
    2284          14 :       y = gcopy(x); if (!isint1(d)) setvalp(y, 0);
    2285          14 :       return y;
    2286         175 :     case t_QUAD:
    2287         175 :       y = cgetg(4,t_QUAD);
    2288         175 :       gel(y,1) = ZX_copy(gel(x,1));
    2289         175 :       gel(y,2) = Q_muli_to_int(gel(x,2),d);
    2290         175 :       gel(y,3) = Q_muli_to_int(gel(x,3),d); return y;
    2291             : 
    2292    19962213 :     case t_VEC:
    2293             :     case t_COL:
    2294   101199317 :     case t_MAT: pari_APPLY_same(Q_muli_to_int(gel(x,i), d));
    2295    47841510 :     case t_POL: pari_APPLY_pol_normalized(Q_muli_to_int(gel(x,i), d));
    2296          21 :     case t_SER: pari_APPLY_ser_normalized(Q_muli_to_int(gel(x,i), d));
    2297             : 
    2298       50539 :     case t_POLMOD:
    2299       50539 :       retmkpolmod(Q_muli_to_int(gel(x,2), d), RgX_copy(gel(x,1)));
    2300          21 :     case t_RFRAC:
    2301          21 :       return gmul(x, d);
    2302             :   }
    2303           0 :   pari_err_TYPE("Q_muli_to_int",x);
    2304             :   return NULL; /* LCOV_EXCL_LINE */
    2305             : }
    2306             : 
    2307             : static void
    2308    29591201 : rescale_init(GEN c, int *exact, long *emin, GEN *D)
    2309             : {
    2310             :   long e, i;
    2311    29591201 :   switch(typ(c))
    2312             :   {
    2313    20068528 :     case t_REAL:
    2314    20068528 :       *exact = 0;
    2315    20068528 :       if (!signe(c)) return;
    2316    19545328 :       e = expo(c) + 1 - bit_prec(c);
    2317    22061504 :       for (i = lg(c)-1; i > 2; i--, e += BITS_IN_LONG)
    2318    16679023 :         if (c[i]) break;
    2319    19545328 :       e += vals(c[i]); break; /* e[2] != 0 */
    2320     9518084 :     case t_INT:
    2321     9518084 :       if (!signe(c)) return;
    2322     1342006 :       e = expi(c);
    2323     1342013 :       break;
    2324        4545 :     case t_FRAC:
    2325        4545 :       e = expi(gel(c,1)) - expi(gel(c,2));
    2326        4545 :       if (*exact) *D = lcmii(*D, gel(c,2));
    2327        4545 :       break;
    2328          48 :     default:
    2329          48 :       pari_err_TYPE("rescale_to_int",c);
    2330             :       return; /* LCOV_EXCL_LINE */
    2331             :   }
    2332    20891886 :   if (e < *emin) *emin = e;
    2333             : }
    2334             : GEN
    2335     4608240 : RgM_rescale_to_int(GEN x)
    2336             : {
    2337     4608240 :   long lx = lg(x), i,j, hx, emin;
    2338             :   GEN D;
    2339             :   int exact;
    2340             : 
    2341     4608240 :   if (lx == 1) return cgetg(1,t_MAT);
    2342     4608240 :   hx = lgcols(x);
    2343     4608240 :   exact = 1;
    2344     4608240 :   emin = HIGHEXPOBIT;
    2345     4608240 :   D = gen_1;
    2346    15314836 :   for (j = 1; j < lx; j++)
    2347    40105685 :     for (i = 1; i < hx; i++) rescale_init(gcoeff(x,i,j), &exact, &emin, &D);
    2348     4608184 :   if (exact) return D == gen_1 ? x: Q_muli_to_int(x, D);
    2349     4608085 :   return grndtoi(gmul2n(x, -emin), NULL);
    2350             : }
    2351             : GEN
    2352       37478 : RgX_rescale_to_int(GEN x)
    2353             : {
    2354       37478 :   long lx = lg(x), i, emin;
    2355             :   GEN D;
    2356             :   int exact;
    2357       37478 :   if (lx == 2) return gcopy(x); /* rare */
    2358       37478 :   exact = 1;
    2359       37478 :   emin = HIGHEXPOBIT;
    2360       37478 :   D = gen_1;
    2361      229590 :   for (i = 2; i < lx; i++) rescale_init(gel(x,i), &exact, &emin, &D);
    2362       37478 :   if (exact) return D == gen_1 ? x: Q_muli_to_int(x, D);
    2363       36351 :   return grndtoi(gmul2n(x, -emin), NULL);
    2364             : }
    2365             : 
    2366             : /* return x * n/d. x: rational; d,n,result: integral; d,n coprime */
    2367             : static GEN
    2368    11534031 : Q_divmuli_to_int(GEN x, GEN d, GEN n)
    2369             : {
    2370             :   GEN y, xn, xd;
    2371             :   pari_sp av;
    2372             : 
    2373    11534031 :   switch(typ(x))
    2374             :   {
    2375     2903072 :     case t_INT:
    2376     2903072 :       av = avma; y = diviiexact(x,d);
    2377     2903072 :       return gerepileuptoint(av, mulii(y,n));
    2378             : 
    2379     5791076 :     case t_FRAC:
    2380     5791076 :       xn = gel(x,1);
    2381     5791076 :       xd = gel(x,2); av = avma;
    2382     5791076 :       y = mulii(diviiexact(xn, d), diviiexact(n, xd));
    2383     5791076 :       return gerepileuptoint(av, y);
    2384             : 
    2385      451285 :     case t_VEC:
    2386             :     case t_COL:
    2387     4050196 :     case t_MAT: pari_APPLY_same(Q_divmuli_to_int(gel(x,i), d,n));
    2388     7850934 :     case t_POL: pari_APPLY_pol_normalized(Q_divmuli_to_int(gel(x,i), d,n));
    2389             : 
    2390           0 :     case t_RFRAC:
    2391           0 :       av = avma;
    2392           0 :       return gerepileupto(av, gmul(x,mkfrac(n,d)));
    2393             : 
    2394           0 :     case t_POLMOD:
    2395           0 :       retmkpolmod(Q_divmuli_to_int(gel(x,2), d,n), RgX_copy(gel(x,1)));
    2396             :   }
    2397           0 :   pari_err_TYPE("Q_divmuli_to_int",x);
    2398             :   return NULL; /* LCOV_EXCL_LINE */
    2399             : }
    2400             : 
    2401             : /* return x / d. x: rational; d,result: integral. */
    2402             : static GEN
    2403   168775318 : Q_divi_to_int(GEN x, GEN d)
    2404             : {
    2405   168775318 :   switch(typ(x))
    2406             :   {
    2407   143396217 :     case t_INT:
    2408   143396217 :       return diviiexact(x,d);
    2409             : 
    2410    20298394 :     case t_VEC:
    2411             :     case t_COL:
    2412   159393069 :     case t_MAT: pari_APPLY_same(Q_divi_to_int(gel(x,i), d));
    2413    22201767 :     case t_POL: pari_APPLY_pol_normalized(Q_divi_to_int(gel(x,i), d));
    2414             : 
    2415           0 :     case t_RFRAC:
    2416           0 :       return gdiv(x,d);
    2417             : 
    2418        5887 :     case t_POLMOD:
    2419        5887 :       retmkpolmod(Q_divi_to_int(gel(x,2), d), RgX_copy(gel(x,1)));
    2420             :   }
    2421           0 :   pari_err_TYPE("Q_divi_to_int",x);
    2422             :   return NULL; /* LCOV_EXCL_LINE */
    2423             : }
    2424             : /* c t_FRAC */
    2425             : static GEN
    2426    10261569 : Q_divq_to_int(GEN x, GEN c)
    2427             : {
    2428    10261569 :   GEN n = gel(c,1), d = gel(c,2);
    2429    10261569 :   if (is_pm1(n)) {
    2430     7788784 :     GEN y = Q_muli_to_int(x,d);
    2431     7788724 :     if (signe(n) < 0) y = gneg(y);
    2432     7788724 :     return y;
    2433             :   }
    2434     2472784 :   return Q_divmuli_to_int(x, n,d);
    2435             : }
    2436             : 
    2437             : /* return y = x / c, assuming x,c rational, and y integral */
    2438             : GEN
    2439      486815 : Q_div_to_int(GEN x, GEN c)
    2440             : {
    2441      486815 :   switch(typ(c))
    2442             :   {
    2443      485899 :     case t_INT:  return Q_divi_to_int(x, c);
    2444         916 :     case t_FRAC: return Q_divq_to_int(x, c);
    2445             :   }
    2446           0 :   pari_err_TYPE("Q_div_to_int",c);
    2447             :   return NULL; /* LCOV_EXCL_LINE */
    2448             : }
    2449             : /* return y = x * c, assuming x,c rational, and y integral */
    2450             : GEN
    2451           0 : Q_mul_to_int(GEN x, GEN c)
    2452             : {
    2453             :   GEN d, n;
    2454           0 :   switch(typ(c))
    2455             :   {
    2456           0 :     case t_INT: return Q_muli_to_int(x, c);
    2457           0 :     case t_FRAC:
    2458           0 :       n = gel(c,1);
    2459           0 :       d = gel(c,2);
    2460           0 :       return Q_divmuli_to_int(x, d,n);
    2461             :   }
    2462           0 :   pari_err_TYPE("Q_mul_to_int",c);
    2463             :   return NULL; /* LCOV_EXCL_LINE */
    2464             : }
    2465             : 
    2466             : GEN
    2467    84907786 : Q_primitive_part(GEN x, GEN *ptc)
    2468             : {
    2469    84907786 :   pari_sp av = avma;
    2470    84907786 :   GEN c = Q_content_safe(x);
    2471    84905711 :   if (c)
    2472             :   {
    2473    84905788 :     if (typ(c) == t_INT)
    2474             :     {
    2475    74645134 :       if (equali1(c)) { set_avma(av); c = NULL; }
    2476    12508714 :       else if (signe(c)) x = Q_divi_to_int(x, c);
    2477             :     }
    2478    10260654 :     else x = Q_divq_to_int(x, c);
    2479             :   }
    2480    84903140 :   if (ptc) *ptc = c;
    2481    84903140 :   return x;
    2482             : }
    2483             : GEN
    2484     7752408 : Q_primpart(GEN x) { return Q_primitive_part(x, NULL); }
    2485             : GEN
    2486      113431 : vec_Q_primpart(GEN x)
    2487      640605 : { pari_APPLY_same(Q_primpart(gel(x,i))) }
    2488             : GEN
    2489       16212 : row_Q_primpart(GEN M)
    2490       16212 : { return shallowtrans(vec_Q_primpart(shallowtrans(M))); }
    2491             : 
    2492             : /*******************************************************************/
    2493             : /*                                                                 */
    2494             : /*                           SUBRESULTANT                          */
    2495             : /*                                                                 */
    2496             : /*******************************************************************/
    2497             : /* for internal use */
    2498             : GEN
    2499    27731389 : gdivexact(GEN x, GEN y)
    2500             : {
    2501             :   long i,lx;
    2502             :   GEN z;
    2503    27731389 :   if (gequal1(y)) return x;
    2504    27719094 :   if (typ(y) == t_POLMOD) return gmul(x, ginv(y));
    2505    27718996 :   switch(typ(x))
    2506             :   {
    2507    22910260 :     case t_INT:
    2508    22910260 :       if (typ(y)==t_INT) return diviiexact(x,y);
    2509          35 :       if (!signe(x)) return gen_0;
    2510           0 :       break;
    2511        8603 :     case t_INTMOD:
    2512             :     case t_FFELT:
    2513        8603 :     case t_POLMOD: return gmul(x,ginv(y));
    2514     4812100 :     case t_POL:
    2515     4812100 :       switch(typ(y))
    2516             :       {
    2517         714 :         case t_INTMOD:
    2518             :         case t_FFELT:
    2519         714 :         case t_POLMOD: return gmul(x,ginv(y));
    2520      221927 :         case t_POL: { /* not stack-clean */
    2521             :           long v;
    2522      221927 :           if (varn(x)!=varn(y)) break;
    2523      220961 :           v = RgX_valrem(y,&y);
    2524      220961 :           if (v) x = RgX_shift_shallow(x,-v);
    2525      220961 :           if (!degpol(y)) { y = gel(y,2); break; }
    2526      216701 :           return RgX_div(x,y);
    2527             :         }
    2528           0 :         case t_RFRAC:
    2529           0 :           if (varn(gel(y,2)) != varn(x)) break;
    2530           0 :           return gdiv(x, y);
    2531             :       }
    2532     4594685 :       return RgX_Rg_divexact(x, y);
    2533        4946 :     case t_VEC: case t_COL: case t_MAT:
    2534        4946 :       lx = lg(x); z = new_chunk(lx);
    2535       54182 :       for (i=1; i<lx; i++) gel(z,i) = gdivexact(gel(x,i),y);
    2536        4946 :       z[0] = x[0]; return z;
    2537             :   }
    2538           0 :   if (DEBUGLEVEL) pari_warn(warner,"missing case in gdivexact");
    2539           0 :   return gdiv(x,y);
    2540             : }
    2541             : 
    2542             : static GEN
    2543     1149834 : init_resultant(GEN x, GEN y)
    2544             : {
    2545     1149834 :   long tx = typ(x), ty = typ(y), vx, vy;
    2546     1149834 :   if (is_scalar_t(tx) || is_scalar_t(ty))
    2547             :   {
    2548          14 :     if (gequal0(x) || gequal0(y)) return gmul(x,y); /* keep type info */
    2549          14 :     if (tx==t_POL) return gpowgs(y, degpol(x));
    2550           0 :     if (ty==t_POL) return gpowgs(x, degpol(y));
    2551           0 :     return gen_1;
    2552             :   }
    2553     1149818 :   if (tx!=t_POL) pari_err_TYPE("resultant",x);
    2554     1149818 :   if (ty!=t_POL) pari_err_TYPE("resultant",y);
    2555     1149818 :   if (!signe(x) || !signe(y)) return gmul(Rg_get_0(x),Rg_get_0(y)); /*type*/
    2556     1149741 :   vx = varn(x);
    2557     1149741 :   vy = varn(y); if (vx == vy) return NULL;
    2558           6 :   return (varncmp(vx,vy) < 0)? gpowgs(y,degpol(x)): gpowgs(x,degpol(y));
    2559             : }
    2560             : 
    2561             : /* x an RgX, y a scalar */
    2562             : static GEN
    2563           7 : scalar_res(GEN x, GEN y, GEN *U, GEN *V)
    2564             : {
    2565           7 :   *V = gpowgs(y,degpol(x)-1);
    2566           7 :   *U = gen_0; return gmul(y, *V);
    2567             : }
    2568             : 
    2569             : /* return 0 if the subresultant chain can be interrupted.
    2570             :  * Set u = NULL if the resultant is 0. */
    2571             : static int
    2572       11832 : subres_step(GEN *u, GEN *v, GEN *g, GEN *h, GEN *uze, GEN *um1, long *signh)
    2573             : {
    2574       11832 :   GEN u0, c, r, q = RgX_pseudodivrem(*u,*v, &r);
    2575             :   long du, dv, dr, degq;
    2576             : 
    2577       11832 :   if (gequal0(leading_coeff(r))) r = RgX_renormalize(r);
    2578       11832 :   dr = lg(r); if (!signe(r)) { *u = NULL; return 0; }
    2579       11587 :   du = degpol(*u);
    2580       11587 :   dv = degpol(*v);
    2581       11587 :   degq = du - dv;
    2582       11587 :   if (*um1 == gen_1)
    2583        6455 :     u0 = gpowgs(gel(*v,dv+2),degq+1);
    2584        5132 :   else if (*um1 == gen_0)
    2585        2318 :     u0 = gen_0;
    2586             :   else /* except in those 2 cases, um1 is an RgX */
    2587        2814 :     u0 = RgX_Rg_mul(*um1, gpowgs(gel(*v,dv+2),degq+1));
    2588             : 
    2589       11587 :   if (*uze == gen_0) /* except in that case, uze is an RgX */
    2590        6455 :     u0 = scalarpol(u0, varn(*u)); /* now an RgX */
    2591             :   else
    2592        5132 :     u0 = gsub(u0, gmul(q,*uze));
    2593             : 
    2594       11587 :   *um1 = *uze;
    2595       11587 :   *uze = u0; /* uze <- lead(v)^(degq + 1) * um1 - q * uze */
    2596             : 
    2597       11587 :   *u = *v; c = *g; *g  = leading_coeff(*u);
    2598       11587 :   switch(degq)
    2599             :   {
    2600        1666 :     case 0: break;
    2601        8059 :     case 1:
    2602        8059 :       c = gmul(*h,c); *h = *g; break;
    2603        1862 :     default:
    2604        1862 :       c = gmul(gpowgs(*h,degq), c);
    2605        1862 :       *h = gdivexact(gpowgs(*g,degq), gpowgs(*h,degq-1));
    2606             :   }
    2607       11587 :   if (typ(c) == t_POLMOD)
    2608             :   {
    2609         904 :     c = ginv(c);
    2610         904 :     *v = RgX_Rg_mul(r,c);
    2611         904 :     *uze = RgX_Rg_mul(*uze,c);
    2612             :   }
    2613             :   else
    2614             :   {
    2615       10683 :     *v  = RgX_Rg_divexact(r,c);
    2616       10683 :     *uze= RgX_Rg_divexact(*uze,c);
    2617             :   }
    2618       11587 :   if (both_odd(du, dv)) *signh = -*signh;
    2619       11587 :   return (dr > 3);
    2620             : }
    2621             : 
    2622             : /* compute U, V s.t Ux + Vy = resultant(x,y) */
    2623             : static GEN
    2624        2388 : subresext_i(GEN x, GEN y, GEN *U, GEN *V)
    2625             : {
    2626             :   pari_sp av, av2;
    2627        2388 :   long dx, dy, du, signh, tx = typ(x), ty = typ(y);
    2628             :   GEN r, z, g, h, p1, cu, cv, u, v, um1, uze, vze;
    2629             : 
    2630        2388 :   if (!is_extscalar_t(tx)) pari_err_TYPE("subresext",x);
    2631        2388 :   if (!is_extscalar_t(ty)) pari_err_TYPE("subresext",y);
    2632        2388 :   if (gequal0(x) || gequal0(y)) { *U = *V = gen_0; return gen_0; }
    2633        2388 :   if (tx != t_POL) {
    2634           7 :     if (ty != t_POL) { *U = ginv(x); *V = gen_0; return gen_1; }
    2635           7 :     return scalar_res(y,x,V,U);
    2636             :   }
    2637        2381 :   if (ty != t_POL) return scalar_res(x,y,U,V);
    2638        2381 :   if (varn(x) != varn(y))
    2639           0 :     return varncmp(varn(x), varn(y)) < 0? scalar_res(x,y,U,V)
    2640           0 :                                         : scalar_res(y,x,V,U);
    2641        2381 :   if (gequal0(leading_coeff(x))) x = RgX_renormalize(x);
    2642        2381 :   if (gequal0(leading_coeff(y))) y = RgX_renormalize(y);
    2643        2381 :   dx = degpol(x);
    2644        2381 :   dy = degpol(y);
    2645        2381 :   signh = 1;
    2646        2381 :   if (dx < dy)
    2647             :   {
    2648         890 :     pswap(U,V); lswap(dx,dy); swap(x,y);
    2649         890 :     if (both_odd(dx, dy)) signh = -signh;
    2650             :   }
    2651        2381 :   if (dy == 0)
    2652             :   {
    2653           0 :     *V = gpowgs(gel(y,2),dx-1);
    2654           0 :     *U = gen_0; return gmul(*V,gel(y,2));
    2655             :   }
    2656        2381 :   av = avma;
    2657        2381 :   u = x = primitive_part(x, &cu);
    2658        2381 :   v = y = primitive_part(y, &cv);
    2659        2381 :   g = h = gen_1; av2 = avma;
    2660        2381 :   um1 = gen_1; uze = gen_0;
    2661             :   for(;;)
    2662             :   {
    2663        7037 :     if (!subres_step(&u, &v, &g, &h, &uze, &um1, &signh)) break;
    2664        4656 :     if (gc_needed(av2,1))
    2665             :     {
    2666           0 :       if(DEBUGMEM>1) pari_warn(warnmem,"subresext, dr = %ld", degpol(v));
    2667           0 :       gerepileall(av2,6, &u,&v,&g,&h,&uze,&um1);
    2668             :     }
    2669             :   }
    2670             :   /* uze an RgX */
    2671        2381 :   if (!u) { *U = *V = gen_0; return gc_const(av, gen_0); }
    2672        2374 :   z = gel(v,2); du = degpol(u);
    2673        2374 :   if (du > 1)
    2674             :   { /* z = gdivexact(gpowgs(z,du), gpowgs(h,du-1)); */
    2675         252 :     p1 = gpowgs(gdiv(z,h),du-1);
    2676         252 :     z = gmul(z,p1);
    2677         252 :     uze = RgX_Rg_mul(uze, p1);
    2678             :   }
    2679        2374 :   if (signh < 0) { z = gneg_i(z); uze = RgX_neg(uze); }
    2680             : 
    2681        2374 :   vze = RgX_divrem(Rg_RgX_sub(z, RgX_mul(uze,x)), y, &r);
    2682        2374 :   if (signe(r)) pari_warn(warner,"inexact computation in subresext");
    2683             :   /* uze ppart(x) + vze ppart(y) = z = resultant(ppart(x), ppart(y)), */
    2684        2374 :   p1 = gen_1;
    2685        2374 :   if (cu) p1 = gmul(p1, gpowgs(cu,dy));
    2686        2374 :   if (cv) p1 = gmul(p1, gpowgs(cv,dx));
    2687        2374 :   cu = cu? gdiv(p1,cu): p1;
    2688        2374 :   cv = cv? gdiv(p1,cv): p1;
    2689        2374 :   z = gmul(z,p1);
    2690        2374 :   *U = RgX_Rg_mul(uze,cu);
    2691        2374 :   *V = RgX_Rg_mul(vze,cv);
    2692        2374 :   return z;
    2693             : }
    2694             : GEN
    2695           0 : subresext(GEN x, GEN y, GEN *U, GEN *V)
    2696             : {
    2697           0 :   pari_sp av = avma;
    2698           0 :   GEN z = subresext_i(x, y, U, V);
    2699           0 :   return gc_all(av, 3, &z, U, V);
    2700             : }
    2701             : 
    2702             : static GEN
    2703         434 : zero_extgcd(GEN y, GEN *U, GEN *V, long vx)
    2704             : {
    2705         434 :   GEN x=content(y);
    2706         434 :   *U=pol_0(vx); *V = scalarpol(ginv(x), vx); return gmul(y,*V);
    2707             : }
    2708             : 
    2709             : static int
    2710        6440 : must_negate(GEN x)
    2711             : {
    2712        6440 :   GEN t = leading_coeff(x);
    2713        6440 :   switch(typ(t))
    2714             :   {
    2715        4536 :     case t_INT: case t_REAL:
    2716        4536 :       return (signe(t) < 0);
    2717           0 :     case t_FRAC:
    2718           0 :       return (signe(gel(t,1)) < 0);
    2719             :   }
    2720        1904 :   return 0;
    2721             : }
    2722             : 
    2723             : static GEN
    2724         217 : gc_gcdext(pari_sp av, GEN r, GEN *u, GEN *v)
    2725             : {
    2726         217 :   if (!u && !v) return gerepileupto(av, r);
    2727         217 :   if (u  &&  v) return gc_all(av, 3, &r, u, v);
    2728           0 :   return gc_all(av, 2, &r, u ? u: v);
    2729             : }
    2730             : 
    2731             : static GEN
    2732         133 : RgX_extgcd_FpX(GEN x, GEN y, GEN p, GEN *u, GEN *v)
    2733             : {
    2734         133 :   pari_sp av = avma;
    2735         133 :   GEN r = FpX_extgcd(RgX_to_FpX(x, p), RgX_to_FpX(y, p), p, u, v);
    2736         133 :   if (u) *u = FpX_to_mod(*u, p);
    2737         133 :   if (v) *v = FpX_to_mod(*v, p);
    2738         133 :   return gc_gcdext(av, FpX_to_mod(r, p), u, v);
    2739             : }
    2740             : 
    2741             : static GEN
    2742           7 : RgX_extgcd_FpXQX(GEN x, GEN y, GEN pol, GEN p, GEN *U, GEN *V)
    2743             : {
    2744           7 :   pari_sp av = avma;
    2745           7 :   GEN r, T = RgX_to_FpX(pol, p);
    2746           7 :   r = FpXQX_extgcd(RgX_to_FpXQX(x, T, p), RgX_to_FpXQX(y, T, p), T, p, U, V);
    2747           7 :   return gc_gcdext(av, FpXQX_to_mod(r, T, p), U, V);
    2748             : }
    2749             : 
    2750             : static GEN
    2751        4529 : RgX_extgcd_fast(GEN x, GEN y, GEN *U, GEN *V)
    2752             : {
    2753             :   GEN p, pol;
    2754             :   long pa;
    2755        4529 :   long t = RgX_type(x, &p,&pol,&pa);
    2756        4529 :   switch(t)
    2757             :   {
    2758          21 :     case t_FFELT:  return FFX_extgcd(x, y, pol, U, V);
    2759         133 :     case t_INTMOD: return RgX_extgcd_FpX(x, y, p, U, V);
    2760           7 :     case code(t_POLMOD, t_INTMOD):
    2761           7 :                    return RgX_extgcd_FpXQX(x, y, pol, p, U, V);
    2762        4368 :     default:       return NULL;
    2763             :   }
    2764             : }
    2765             : 
    2766             : /* compute U, V s.t Ux + Vy = GCD(x,y) using subresultant */
    2767             : GEN
    2768        4970 : RgX_extgcd(GEN x, GEN y, GEN *U, GEN *V)
    2769             : {
    2770             :   pari_sp av, av2, tetpil;
    2771             :   long signh; /* junk */
    2772        4970 :   long dx, dy, vx, tx = typ(x), ty = typ(y);
    2773             :   GEN r, z, g, h, p1, cu, cv, u, v, um1, uze, vze, *gptr[3];
    2774             : 
    2775        4970 :   if (tx!=t_POL) pari_err_TYPE("RgX_extgcd",x);
    2776        4970 :   if (ty!=t_POL) pari_err_TYPE("RgX_extgcd",y);
    2777        4970 :   if ( varncmp(varn(x),varn(y))) pari_err_VAR("RgX_extgcd",x,y);
    2778        4970 :   vx=varn(x);
    2779        4970 :   if (!signe(x))
    2780             :   {
    2781          14 :     if (signe(y)) return zero_extgcd(y,U,V,vx);
    2782           7 :     *U = pol_0(vx); *V = pol_0(vx);
    2783           7 :     return pol_0(vx);
    2784             :   }
    2785        4956 :   if (!signe(y)) return zero_extgcd(x,V,U,vx);
    2786        4529 :   r = RgX_extgcd_fast(x, y, U, V);
    2787        4529 :   if (r) return r;
    2788        4368 :   dx = degpol(x); dy = degpol(y);
    2789        4368 :   if (dx < dy) { pswap(U,V); lswap(dx,dy); swap(x,y); }
    2790        4368 :   if (dy==0) { *U=pol_0(vx); *V=ginv(y); return pol_1(vx); }
    2791             : 
    2792        4179 :   av = avma;
    2793        4179 :   u = x = primitive_part(x, &cu);
    2794        4179 :   v = y = primitive_part(y, &cv);
    2795        4179 :   g = h = gen_1; av2 = avma;
    2796        4179 :   um1 = gen_1; uze = gen_0;
    2797             :   for(;;)
    2798             :   {
    2799        4389 :     if (!subres_step(&u, &v, &g, &h, &uze, &um1, &signh)) break;
    2800         210 :     if (gc_needed(av2,1))
    2801             :     {
    2802           0 :       if(DEBUGMEM>1) pari_warn(warnmem,"RgX_extgcd, dr = %ld",degpol(v));
    2803           0 :       gerepileall(av2,6,&u,&v,&g,&h,&uze,&um1);
    2804             :     }
    2805             :   }
    2806        4179 :   if (uze != gen_0) {
    2807             :     GEN r;
    2808        3969 :     vze = RgX_divrem(RgX_sub(v, RgX_mul(uze,x)), y, &r);
    2809        3969 :     if (signe(r)) pari_warn(warner,"inexact computation in RgX_extgcd");
    2810        3969 :     if (cu) uze = RgX_Rg_div(uze,cu);
    2811        3969 :     if (cv) vze = RgX_Rg_div(vze,cv);
    2812        3969 :     p1 = ginv(content(v));
    2813             :   }
    2814             :   else /* y | x */
    2815             :   {
    2816         210 :     vze = cv ? RgX_Rg_div(pol_1(vx),cv): pol_1(vx);
    2817         210 :     uze = pol_0(vx);
    2818         210 :     p1 = gen_1;
    2819             :   }
    2820        4179 :   if (must_negate(v)) p1 = gneg(p1);
    2821        4179 :   tetpil = avma;
    2822        4179 :   z = RgX_Rg_mul(v,p1);
    2823        4179 :   *U = RgX_Rg_mul(uze,p1);
    2824        4179 :   *V = RgX_Rg_mul(vze,p1);
    2825        4179 :   gptr[0] = &z;
    2826        4179 :   gptr[1] = U;
    2827        4179 :   gptr[2] = V;
    2828        4179 :   gerepilemanysp(av,tetpil,gptr,3); return z;
    2829             : }
    2830             : 
    2831             : static GEN
    2832          14 : RgX_halfgcd_all_i(GEN a, GEN b, GEN *pa, GEN *pb)
    2833             : {
    2834          14 :   pari_sp av=avma;
    2835          14 :   long m = degpol(a), va = varn(a);
    2836             :   GEN R, u,u1,v,v1;
    2837          14 :   u1 = v = pol_0(va);
    2838          14 :   u = v1 = pol_1(va);
    2839          14 :   if (degpol(a)<degpol(b))
    2840             :   {
    2841           0 :     swap(a,b);
    2842           0 :     swap(u,v); swap(u1,v1);
    2843             :   }
    2844          42 :   while (2*degpol(b) >= m)
    2845             :   {
    2846          28 :     GEN r, q = RgX_pseudodivrem(a,b,&r);
    2847          28 :     GEN l = gpowgs(leading_coeff(b), degpol(a)-degpol(b)+1);
    2848          28 :     GEN g = ggcd(l, content(r));
    2849          28 :     q = RgX_Rg_div(q, g);
    2850          28 :     r = RgX_Rg_div(r, g);
    2851          28 :     l = gdiv(l, g);
    2852          28 :     a = b; b = r; swap(u,v); swap(u1,v1);
    2853          28 :     v  = RgX_sub(gmul(l,v),  RgX_mul(u, q));
    2854          28 :     v1 = RgX_sub(gmul(l,v1), RgX_mul(u1, q));
    2855          28 :     if (gc_needed(av,2))
    2856             :     {
    2857           0 :       if (DEBUGMEM>1) pari_warn(warnmem,"halfgcd (d = %ld)",degpol(b));
    2858           0 :       gerepileall(av,6, &a,&b,&u1,&v1,&u,&v);
    2859             :     }
    2860             :   }
    2861          14 :   if (pa) *pa = a;
    2862          14 :   if (pb) *pb = b;
    2863          14 :   R = mkmat22(u,u1,v,v1);
    2864          14 :   return !pa && pb ? gc_all(av, 2, &R, pb): gc_all(av, 1+!!pa+!!pb, &R, pa, pb);
    2865             : }
    2866             : 
    2867             : static GEN
    2868          28 : RgX_halfgcd_all_FpX(GEN x, GEN y, GEN p, GEN *a, GEN *b)
    2869             : {
    2870          28 :   pari_sp av = avma;
    2871             :   GEN M;
    2872          28 :   if (lgefint(p) == 3)
    2873             :   {
    2874          14 :     ulong pp = uel(p, 2);
    2875          14 :     GEN xp = RgX_to_Flx(x, pp), yp = RgX_to_Flx(y, pp);
    2876          14 :     M = Flx_halfgcd_all(xp, yp, pp, a, b);
    2877          14 :     M = FlxM_to_ZXM(M); *a = Flx_to_ZX(*a); *b = Flx_to_ZX(*b);
    2878             :   }
    2879             :   else
    2880             :   {
    2881          14 :     x = RgX_to_FpX(x, p); y = RgX_to_FpX(y, p);
    2882          14 :     M = FpX_halfgcd_all(x, y, p, a, b);
    2883             :   }
    2884          28 :   return !a && b ? gc_all(av, 2, &M, b): gc_all(av, 1+!!a+!!b, &M, a, b);
    2885             : }
    2886             : 
    2887             : static GEN
    2888           0 : RgX_halfgcd_all_FpXQX(GEN x, GEN y, GEN pol, GEN p, GEN *a, GEN *b)
    2889             : {
    2890           0 :   pari_sp av = avma;
    2891           0 :   GEN M, T = RgX_to_FpX(pol, p);
    2892           0 :   if (signe(T)==0) pari_err_OP("halfgcd", x, y);
    2893           0 :   x = RgX_to_FpXQX(x, T, p); y = RgX_to_FpXQX(y, T, p);
    2894           0 :   M = FpXQX_halfgcd_all(x, y, T, p, a, b);
    2895           0 :   if (a) *a = FqX_to_mod(*a, T, p);
    2896           0 :   if (b) *b = FqX_to_mod(*b, T, p);
    2897           0 :   M = FqXM_to_mod(M, T, p);
    2898           0 :   return !a && b ? gc_all(av, 2, &M, b): gc_all(av, 1+!!a+!!b, &M, a, b);
    2899             : }
    2900             : 
    2901             : static GEN
    2902          63 : RgX_halfgcd_all_fast(GEN x, GEN y, GEN *a, GEN *b)
    2903             : {
    2904             :   GEN p, pol;
    2905             :   long pa;
    2906          63 :   long t = RgX_type2(x,y, &p,&pol,&pa);
    2907          63 :   switch(t)
    2908             :   {
    2909          21 :     case t_FFELT:  return FFX_halfgcd_all(x, y, pol, a, b);
    2910          28 :     case t_INTMOD: return RgX_halfgcd_all_FpX(x, y, p, a, b);
    2911           0 :     case code(t_POLMOD, t_INTMOD):
    2912           0 :                    return RgX_halfgcd_all_FpXQX(x, y, pol, p, a, b);
    2913          14 :     default:       return NULL;
    2914             :   }
    2915             : }
    2916             : 
    2917             : GEN
    2918          63 : RgX_halfgcd_all(GEN x, GEN y, GEN *a, GEN *b)
    2919             : {
    2920          63 :   GEN z = RgX_halfgcd_all_fast(x, y, a, b);
    2921          63 :   if (z) return z;
    2922          14 :   return RgX_halfgcd_all_i(x, y, a, b);
    2923             : }
    2924             : 
    2925             : GEN
    2926           0 : RgX_halfgcd(GEN x, GEN y)
    2927           0 : { return  RgX_halfgcd_all(x, y, NULL, NULL); }
    2928             : 
    2929             : int
    2930         112 : RgXQ_ratlift(GEN x, GEN T, long amax, long bmax, GEN *P, GEN *Q)
    2931             : {
    2932         112 :   pari_sp av = avma, av2, tetpil;
    2933             :   long signh; /* junk */
    2934             :   long vx;
    2935             :   GEN g, h, p1, cu, cv, u, v, um1, uze, *gptr[2];
    2936             : 
    2937         112 :   if (typ(x)!=t_POL) pari_err_TYPE("RgXQ_ratlift",x);
    2938         112 :   if (typ(T)!=t_POL) pari_err_TYPE("RgXQ_ratlift",T);
    2939         112 :   if ( varncmp(varn(x),varn(T)) ) pari_err_VAR("RgXQ_ratlift",x,T);
    2940         112 :   if (bmax < 0) pari_err_DOMAIN("ratlift", "bmax", "<", gen_0, stoi(bmax));
    2941         112 :   if (!signe(T)) {
    2942           0 :     if (degpol(x) <= amax) {
    2943           0 :       *P = RgX_copy(x);
    2944           0 :       *Q = pol_1(varn(x));
    2945           0 :       return 1;
    2946             :     }
    2947           0 :     return 0;
    2948             :   }
    2949         112 :   if (amax+bmax >= degpol(T))
    2950           0 :     pari_err_DOMAIN("ratlift", "amax+bmax", ">=", stoi(degpol(T)),
    2951             :                     mkvec3(stoi(amax), stoi(bmax), T));
    2952         112 :   vx = varn(T);
    2953         112 :   u = x = primitive_part(x, &cu);
    2954         112 :   v = T = primitive_part(T, &cv);
    2955         112 :   g = h = gen_1; av2 = avma;
    2956         112 :   um1 = gen_1; uze = gen_0;
    2957             :   for(;;)
    2958             :   {
    2959         406 :     (void) subres_step(&u, &v, &g, &h, &uze, &um1, &signh);
    2960         406 :     if (!u || (typ(uze)==t_POL && degpol(uze)>bmax)) return gc_bool(av,0);
    2961         406 :     if (typ(v)!=t_POL || degpol(v)<=amax) break;
    2962         294 :     if (gc_needed(av2,1))
    2963             :     {
    2964           0 :       if(DEBUGMEM>1) pari_warn(warnmem,"RgXQ_ratlift, dr = %ld", degpol(v));
    2965           0 :       gerepileall(av2,6,&u,&v,&g,&h,&uze,&um1);
    2966             :     }
    2967             :   }
    2968         112 :   if (uze == gen_0)
    2969             :   {
    2970           0 :     set_avma(av); *P = pol_0(vx); *Q = pol_1(vx);
    2971           0 :     return 1;
    2972             :   }
    2973         112 :   if (cu) uze = RgX_Rg_div(uze,cu);
    2974         112 :   p1 = ginv(content(v));
    2975         112 :   if (must_negate(v)) p1 = gneg(p1);
    2976         112 :   tetpil = avma;
    2977         112 :   *P = RgX_Rg_mul(v,p1);
    2978         112 :   *Q = RgX_Rg_mul(uze,p1);
    2979         112 :   gptr[0] = P;
    2980         112 :   gptr[1] = Q;
    2981         112 :   gerepilemanysp(av,tetpil,gptr,2); return 1;
    2982             : }
    2983             : 
    2984             : GEN
    2985           0 : RgX_chinese_coprime(GEN x, GEN y, GEN Tx, GEN Ty, GEN Tz)
    2986             : {
    2987           0 :   pari_sp av = avma;
    2988           0 :   GEN ax = RgX_mul(RgXQ_inv(Tx,Ty), Tx);
    2989           0 :   GEN p1 = RgX_mul(ax, RgX_sub(y,x));
    2990           0 :   p1 = RgX_add(x,p1);
    2991           0 :   if (!Tz) Tz = RgX_mul(Tx,Ty);
    2992           0 :   p1 = RgX_rem(p1, Tz);
    2993           0 :   return gerepileupto(av,p1);
    2994             : }
    2995             : 
    2996             : /*******************************************************************/
    2997             : /*                                                                 */
    2998             : /*                RESULTANT USING DUCOS VARIANT                    */
    2999             : /*                                                                 */
    3000             : /*******************************************************************/
    3001             : /* x^n / y^(n-1), assume n > 0 */
    3002             : static GEN
    3003      628739 : Lazard(GEN x, GEN y, long n)
    3004             : {
    3005             :   long a;
    3006             :   GEN c;
    3007             : 
    3008      628739 :   if (n == 1) return x;
    3009       10025 :   a = 1 << expu(n); /* a = 2^k <= n < 2^(k+1) */
    3010       10025 :   c=x; n-=a;
    3011       20673 :   while (a>1)
    3012             :   {
    3013       10648 :     a>>=1; c=gdivexact(gsqr(c),y);
    3014       10648 :     if (n>=a) { c=gdivexact(gmul(c,x),y); n -= a; }
    3015             :   }
    3016       10025 :   return c;
    3017             : }
    3018             : 
    3019             : /* F (x/y)^(n-1), assume n >= 1 */
    3020             : static GEN
    3021      832568 : Lazard2(GEN F, GEN x, GEN y, long n)
    3022             : {
    3023      832568 :   if (n == 1) return F;
    3024        4837 :   return RgX_Rg_divexact(RgX_Rg_mul(F, Lazard(x,y,n-1)), y);
    3025             : }
    3026             : 
    3027             : static GEN
    3028      832565 : RgX_neg_i(GEN x, long lx)
    3029             : {
    3030             :   long i;
    3031      832565 :   GEN y = cgetg(lx, t_POL); y[1] = x[1];
    3032     2177210 :   for (i=2; i<lx; i++) gel(y,i) = gneg(gel(x,i));
    3033      832565 :   return y;
    3034             : }
    3035             : static GEN
    3036     2445464 : RgX_Rg_mul_i(GEN y, GEN x, long ly)
    3037             : {
    3038             :   long i;
    3039             :   GEN z;
    3040     2445464 :   if (isrationalzero(x)) return pol_0(varn(y));
    3041     2445184 :   z = cgetg(ly,t_POL); z[1] = y[1];
    3042     6411968 :   for (i = 2; i < ly; i++) gel(z,i) = gmul(x,gel(y,i));
    3043     2445150 :   return z;
    3044             : }
    3045             : static long
    3046     2440398 : reductum_lg(GEN x, long lx)
    3047             : {
    3048     2440398 :   long i = lx-2;
    3049     2512553 :   while (i > 1 && gequal0(gel(x,i))) i--;
    3050     2440401 :   return i+1;
    3051             : }
    3052             : 
    3053             : #define addshift(x,y) RgX_addmulXn_shallow((x),(y),1)
    3054             : /* delta = deg(P) - deg(Q) > 0, deg(Q) > 0, P,Q,Z t_POL in the same variable,
    3055             :  * s "scalar". Return prem(P, -Q) / s^delta lc(P) */
    3056             : static GEN
    3057      832567 : nextSousResultant(GEN P, GEN Q, GEN Z, GEN s)
    3058             : {
    3059      832567 :   GEN p0, q0, h0, TMP, H, A, z0 = leading_coeff(Z);
    3060             :   long p, q, j, lP, lQ;
    3061             :   pari_sp av;
    3062             : 
    3063      832566 :   p = degpol(P); p0 = gel(P,p+2); lP = reductum_lg(P,lg(P));
    3064      832565 :   q = degpol(Q); q0 = gel(Q,q+2); lQ = reductum_lg(Q,lg(Q));
    3065             :   /* p > q. Very often p - 1 = q */
    3066      832565 :   av = avma;
    3067             :   /* H = RgX_neg(reductum(Z)) optimized, using Q ~ Z */
    3068      832565 :   H = RgX_neg_i(Z, lQ); /* deg H < q */
    3069             : 
    3070      832566 :   A = (q+2 < lP)? RgX_Rg_mul_i(H, gel(P,q+2), lQ): NULL;
    3071      841110 :   for (j = q+1; j < p; j++)
    3072             :   {
    3073        8552 :     if (degpol(H) == q-1)
    3074             :     { /* h0 = coeff of degree q-1 = leading coeff */
    3075        7348 :       h0 = gel(H,q+1); (void)normalizepol_lg(H, q+1);
    3076        7348 :       H = addshift(H, RgX_Rg_divexact(RgX_Rg_mul_i(Q, gneg(h0), lQ), q0));
    3077             :     }
    3078             :     else
    3079        1204 :       H = RgX_shift_shallow(H, 1);
    3080        8552 :     if (j+2 < lP)
    3081             :     {
    3082        6545 :       TMP = RgX_Rg_mul(H, gel(P,j+2));
    3083        6545 :       A = A? RgX_add(A, TMP): TMP;
    3084             :     }
    3085        8552 :     if (gc_needed(av,1))
    3086             :     {
    3087         147 :       if(DEBUGMEM>1) pari_warn(warnmem,"nextSousResultant j = %ld/%ld",j,p);
    3088         147 :       gerepileall(av,A?2:1,&H,&A);
    3089             :     }
    3090             :   }
    3091      832558 :   if (q+2 < lP) lP = reductum_lg(P, q+3);
    3092      832561 :   TMP = RgX_Rg_mul_i(P, z0, lP);
    3093      832561 :   A = A? RgX_add(A, TMP): TMP;
    3094      832562 :   A = RgX_Rg_divexact(A, p0);
    3095      832560 :   if (degpol(H) == q-1)
    3096             :   {
    3097      830270 :     h0 = gel(H,q+1); (void)normalizepol_lg(H, q+1); /* destroy old H */
    3098      830270 :     A = RgX_add(RgX_Rg_mul(addshift(H,A),q0), RgX_Rg_mul_i(Q, gneg(h0), lQ));
    3099             :   }
    3100             :   else
    3101        2290 :     A = RgX_Rg_mul(addshift(H,A), q0);
    3102      832565 :   return RgX_Rg_divexact(A, s);
    3103             : }
    3104             : #undef addshift
    3105             : 
    3106             : static GEN
    3107     1247800 : RgX_pseudodenom(GEN x)
    3108             : {
    3109     1247800 :   GEN m = NULL;
    3110     1247800 :   long l = lg(x), i;
    3111     6187197 :   for (i = 2; i < l; i++)
    3112             :   {
    3113     4939397 :     GEN xi = gel(x, i);
    3114     4939397 :     if (typ(xi) == t_RFRAC)
    3115             :     {
    3116          42 :       GEN d = denom_i(xi);
    3117          42 :       if (!m || signe(RgX_pseudorem(m, d)))
    3118          42 :         m = m ? gmul(m, d): d;
    3119             :     }
    3120             :   }
    3121     1247800 :   return m;
    3122             : }
    3123             : 
    3124             : /* Ducos's subresultant */
    3125             : GEN
    3126     1064720 : RgX_resultant_all(GEN P, GEN Q, GEN *sol)
    3127             : {
    3128             :   pari_sp av, av2;
    3129     1064720 :   long dP, dQ, delta, sig = 1;
    3130             :   GEN DP, DQ, cP, cQ, Z, s;
    3131             : 
    3132     1064720 :   dP = degpol(P);
    3133     1064720 :   dQ = degpol(Q); delta = dP - dQ;
    3134     1064718 :   if (delta < 0)
    3135             :   {
    3136         903 :     if (both_odd(dP, dQ)) sig = -1;
    3137         903 :     swap(P,Q); lswap(dP, dQ); delta = -delta;
    3138             :   }
    3139     1064718 :   if (sol) *sol = gen_0;
    3140     1064718 :   av = avma;
    3141     1064718 :   if (dQ <= 0)
    3142             :   {
    3143         854 :     if (dQ < 0) return Rg_get_0(P);
    3144         854 :     s = gpowgs(gel(Q,2), dP);
    3145         854 :     if (sig == -1) s = gerepileupto(av, gneg(s));
    3146         854 :     return s;
    3147             :   }
    3148     1063864 :   if (dQ == 1)
    3149             :   {
    3150      439963 :     if (sol) *sol = Q;
    3151      439963 :     s = RgX_homogenous_evalpow(P, gel(Q,2), gpowers(gneg(gel(Q,3)), dP));
    3152      439963 :     if (sig==-1) s = gneg(s);
    3153      439963 :     return gc_all(av, sol ? 2: 1, &s, sol);
    3154             :   }
    3155             :   /* primitive_part is also possible here, but possibly very costly,
    3156             :    * and hardly ever worth it */
    3157             : 
    3158      623901 :   DP = RgX_pseudodenom(P); if (DP) P = gmul(P,DP);
    3159      623900 :   DQ = RgX_pseudodenom(Q); if (DQ) Q = gmul(Q,DQ);
    3160      623900 :   P = Q_primitive_part(P, &cP);
    3161      623904 :   Q = Q_primitive_part(Q, &cQ);
    3162      623899 :   av2 = avma;
    3163      623899 :   s = gpowgs(leading_coeff(Q),delta);
    3164      623902 :   if (both_odd(dP, dQ)) sig = -sig;
    3165      623902 :   Z = Q;
    3166      623902 :   Q = RgX_pseudorem(P, Q);
    3167      623906 :   P = Z;
    3168     1456464 :   while(degpol(Q) > 0)
    3169             :   {
    3170      832562 :     delta = degpol(P) - degpol(Q); /* > 0 */
    3171      832568 :     Z = Lazard2(Q, leading_coeff(Q), s, delta);
    3172      832568 :     if (both_odd(degpol(P), degpol(Q))) sig = -sig;
    3173      832567 :     Q = nextSousResultant(P, Q, Z, s);
    3174      832558 :     P = Z;
    3175      832558 :     if (gc_needed(av,1))
    3176             :     {
    3177          13 :       if(DEBUGMEM>1) pari_warn(warnmem,"resultant_all, degpol Q = %ld",degpol(Q));
    3178          13 :       gerepileall(av2,2,&P,&Q);
    3179             :     }
    3180      832558 :     s = leading_coeff(P);
    3181             :   }
    3182      623897 :   if (!signe(Q)) { set_avma(av); return Rg_get_0(Q); }
    3183      623897 :   s = Lazard(leading_coeff(Q), s, degpol(P));
    3184      623902 :   if (sig == -1) s = gneg(s);
    3185      623902 :   if (DP) s = gdiv(s, gpowgs(DP,dQ));
    3186      623902 :   if (DQ) s = gdiv(s, gpowgs(DQ,dP));
    3187      623902 :   if (cP) s = gmul(s, gpowgs(cP,dQ));
    3188      623902 :   if (cQ) s = gmul(s, gpowgs(cQ,dP));
    3189      623900 :   if (!sol) return gerepilecopy(av, s);
    3190        2387 :   *sol = P; return gc_all(av, 2, &s, sol);
    3191             : }
    3192             : 
    3193             : static GEN
    3194          28 : RgX_resultant_FpX(GEN x, GEN y, GEN p)
    3195             : {
    3196          28 :   pari_sp av = avma;
    3197             :   GEN r;
    3198          28 :   if (lgefint(p) == 3)
    3199             :   {
    3200          14 :     ulong pp = uel(p, 2);
    3201          14 :     r = utoi(Flx_resultant(RgX_to_Flx(x, pp), RgX_to_Flx(y, pp), pp));
    3202             :   }
    3203             :   else
    3204          14 :     r = FpX_resultant(RgX_to_FpX(x, p), RgX_to_FpX(y, p), p);
    3205          28 :   return gerepileupto(av, Fp_to_mod(r, p));
    3206             : }
    3207             : 
    3208             : static GEN
    3209          21 : RgX_resultant_FpXQX(GEN x, GEN y, GEN pol, GEN p)
    3210             : {
    3211          21 :   pari_sp av = avma;
    3212          21 :   GEN r, T = RgX_to_FpX(pol, p);
    3213          21 :   r = FpXQX_resultant(RgX_to_FpXQX(x, T, p), RgX_to_FpXQX(y, T, p), T, p);
    3214          21 :   return gerepileupto(av, FpX_to_mod(r, p));
    3215             : }
    3216             : 
    3217             : static GEN
    3218     1149811 : resultant_fast(GEN x, GEN y)
    3219             : {
    3220             :   GEN p, pol;
    3221             :   long pa, t;
    3222     1149811 :   p = init_resultant(x,y);
    3223     1149812 :   if (p) return p;
    3224     1149714 :   t = RgX_type2(x,y, &p,&pol,&pa);
    3225     1149723 :   switch(t)
    3226             :   {
    3227        2688 :     case t_INT:    return ZX_resultant(x,y);
    3228          56 :     case t_FRAC:   return QX_resultant(x,y);
    3229          21 :     case t_FFELT:  return FFX_resultant(x,y,pol);
    3230          28 :     case t_INTMOD: return RgX_resultant_FpX(x, y, p);
    3231          21 :     case code(t_POLMOD, t_INTMOD):
    3232          21 :                    return RgX_resultant_FpXQX(x, y, pol, p);
    3233     1146909 :     default:       return NULL;
    3234             :   }
    3235             : }
    3236             : 
    3237             : static GEN
    3238      169886 : RgX_resultant_sylvester(GEN x, GEN y)
    3239             : {
    3240      169886 :   pari_sp av = avma;
    3241      169886 :   return gerepileupto(av, det(RgX_sylvestermatrix(x,y)));
    3242             : }
    3243             : 
    3244             : /* Return resultant(P,Q).
    3245             :  * Uses Sylvester's matrix if P or Q inexact, a modular algorithm if they
    3246             :  * are in Q[X], and Ducos/Lazard optimization of the subresultant algorithm
    3247             :  * in the "generic" case. */
    3248             : GEN
    3249     1149811 : resultant(GEN P, GEN Q)
    3250             : {
    3251     1149811 :   GEN z = resultant_fast(P,Q);
    3252     1149821 :   if (z) return z;
    3253     1146909 :   if (isinexact(P) || isinexact(Q)) return RgX_resultant_sylvester(P,Q);
    3254      977045 :   return RgX_resultant_all(P, Q, NULL);
    3255             : }
    3256             : 
    3257             : /*******************************************************************/
    3258             : /*                                                                 */
    3259             : /*               RESULTANT USING SYLVESTER MATRIX                  */
    3260             : /*                                                                 */
    3261             : /*******************************************************************/
    3262             : static GEN
    3263      371720 : syl_RgC(GEN x, long j, long d, long D, long cp)
    3264             : {
    3265      371720 :   GEN c = cgetg(d+1,t_COL);
    3266             :   long i;
    3267      990262 :   for (i=1; i< j; i++) gel(c,i) = gen_0;
    3268     2142578 :   for (   ; i<=D; i++) { GEN t = gel(x,D-i+2); gel(c,i) = cp? gcopy(t): t; }
    3269      990262 :   for (   ; i<=d; i++) gel(c,i) = gen_0;
    3270      371720 :   return c;
    3271             : }
    3272             : static GEN
    3273      169893 : syl_RgM(GEN x, GEN y, long cp)
    3274             : {
    3275      169893 :   long j, d, dx = degpol(x), dy = degpol(y);
    3276             :   GEN M;
    3277      169893 :   if (dx < 0) return dy < 0? cgetg(1,t_MAT): zeromat(dy,dy);
    3278      169893 :   if (dy < 0) return zeromat(dx,dx);
    3279      169893 :   d = dx+dy; M = cgetg(d+1,t_MAT);
    3280      442039 :   for (j=1; j<=dy; j++) gel(M,j)    = syl_RgC(x,j,d,j+dx, cp);
    3281      269467 :   for (j=1; j<=dx; j++) gel(M,j+dy) = syl_RgC(y,j,d,j+dy, cp);
    3282      169893 :   return M;
    3283             : }
    3284             : GEN
    3285      169886 : RgX_sylvestermatrix(GEN x, GEN y) { return syl_RgM(x,y,0); }
    3286             : GEN
    3287           7 : sylvestermatrix(GEN x, GEN y)
    3288             : {
    3289           7 :   if (typ(x)!=t_POL) pari_err_TYPE("sylvestermatrix",x);
    3290           7 :   if (typ(y)!=t_POL) pari_err_TYPE("sylvestermatrix",y);
    3291           7 :   if (varn(x) != varn(y)) pari_err_VAR("sylvestermatrix",x,y);
    3292           7 :   return syl_RgM(x,y,1);
    3293             : }
    3294             : 
    3295             : GEN
    3296          21 : resultant2(GEN x, GEN y)
    3297             : {
    3298          21 :   GEN r = init_resultant(x,y);
    3299          21 :   return r? r: RgX_resultant_sylvester(x,y);
    3300             : }
    3301             : 
    3302             : /* let vx = main variable of x, v0 a variable of highest priority;
    3303             :  * return a t_POL in variable v0:
    3304             :  * if vx <= v, return subst(x, v, pol_x(v0))
    3305             :  * if vx >  v, return scalarpol(x, v0) */
    3306             : static GEN
    3307         343 : fix_pol(GEN x, long v, long v0)
    3308             : {
    3309         343 :   long vx, tx = typ(x);
    3310         343 :   if (tx != t_POL)
    3311          42 :     vx = gvar(x);
    3312             :   else
    3313             :   { /* shortcut: almost nothing to do */
    3314         301 :     vx = varn(x);
    3315         301 :     if (v == vx)
    3316             :     {
    3317         119 :       if (v0 != v) { x = leafcopy(x); setvarn(x, v0); }
    3318         119 :       return x;
    3319             :     }
    3320             :   }
    3321         224 :   if (varncmp(v, vx) > 0)
    3322             :   {
    3323         217 :     x = gsubst(x, v, pol_x(v0));
    3324         217 :     if (typ(x) != t_POL) vx = gvar(x);
    3325             :     else
    3326             :     {
    3327         210 :       vx = varn(x);
    3328         210 :       if (vx == v0) return x;
    3329             :     }
    3330             :   }
    3331          49 :   if (varncmp(vx, v0) <= 0) pari_err_TYPE("polresultant", x);
    3332          42 :   return scalarpol_shallow(x, v0);
    3333             : }
    3334             : 
    3335             : /* resultant of x and y with respect to variable v, or with respect to their
    3336             :  * main variable if v < 0. */
    3337             : GEN
    3338         504 : polresultant0(GEN x, GEN y, long v, long flag)
    3339             : {
    3340         504 :   pari_sp av = avma;
    3341             : 
    3342         504 :   if (v >= 0)
    3343             :   {
    3344         147 :     long v0 = fetch_var_higher();
    3345         147 :     x = fix_pol(x,v, v0);
    3346         147 :     y = fix_pol(y,v, v0);
    3347             :   }
    3348         504 :   switch(flag)
    3349             :   {
    3350         497 :     case 2:
    3351         497 :     case 0: x=resultant(x,y); break;
    3352           7 :     case 1: x=resultant2(x,y); break;
    3353           0 :     default: pari_err_FLAG("polresultant");
    3354             :   }
    3355         504 :   if (v >= 0) (void)delete_var();
    3356         504 :   return gerepileupto(av,x);
    3357             : }
    3358             : 
    3359             : static GEN
    3360          77 : RgX_extresultant_FpX(GEN x, GEN y, GEN p, GEN *u, GEN *v)
    3361             : {
    3362          77 :   pari_sp av = avma;
    3363          77 :   GEN r = FpX_extresultant(RgX_to_FpX(x, p), RgX_to_FpX(y, p), p, u, v);
    3364          77 :   if (signe(r) == 0) { *u = gen_0; *v = gen_0; return gc_const(av, gen_0); }
    3365          77 :   if (u) *u = FpX_to_mod(*u, p);
    3366          77 :   if (v) *v = FpX_to_mod(*v, p);
    3367          77 :   return gc_gcdext(av, Fp_to_mod(r, p), u, v);
    3368             : }
    3369             : 
    3370             : static GEN
    3371        1568 : RgX_extresultant_fast(GEN x, GEN y, GEN *U, GEN *V)
    3372             : {
    3373             :   GEN p, pol;
    3374             :   long pa;
    3375        1568 :   long t = RgX_type2(x, y, &p,&pol,&pa);
    3376        1568 :   switch(t)
    3377             :   {
    3378          77 :     case t_INTMOD: return RgX_extresultant_FpX(x, y, p, U, V);
    3379        1491 :     default:       return NULL;
    3380             :   }
    3381             : }
    3382             : 
    3383             : GEN
    3384        1575 : polresultantext0(GEN x, GEN y, long v)
    3385             : {
    3386        1575 :   GEN R = NULL, U, V;
    3387        1575 :   pari_sp av = avma;
    3388             : 
    3389        1575 :   if (v >= 0)
    3390             :   {
    3391          14 :     long v0 = fetch_var_higher();
    3392          14 :     x = fix_pol(x,v, v0);
    3393          14 :     y = fix_pol(y,v, v0);
    3394             :   }
    3395        1575 :   if (typ(x)==t_POL && typ(y)==t_POL)
    3396        1568 :     R = RgX_extresultant_fast(x, y, &U, &V);
    3397        1575 :   if (!R)
    3398        1498 :     R = subresext_i(x,y, &U,&V);
    3399        1575 :   if (v >= 0)
    3400             :   {
    3401          14 :     (void)delete_var();
    3402          14 :     if (typ(U) == t_POL && varn(U) != v) U = poleval(U, pol_x(v));
    3403          14 :     if (typ(V) == t_POL && varn(V) != v) V = poleval(V, pol_x(v));
    3404             :   }
    3405        1575 :   return gerepilecopy(av, mkvec3(U,V,R));
    3406             : }
    3407             : GEN
    3408        1463 : polresultantext(GEN x, GEN y) { return polresultantext0(x,y,-1); }
    3409             : 
    3410             : /*******************************************************************/
    3411             : /*                                                                 */
    3412             : /*             CHARACTERISTIC POLYNOMIAL USING RESULTANT           */
    3413             : /*                                                                 */
    3414             : /*******************************************************************/
    3415             : 
    3416             : static GEN
    3417          14 : RgXQ_charpoly_FpXQ(GEN x, GEN T, GEN p, long v)
    3418             : {
    3419          14 :   pari_sp av = avma;
    3420             :   GEN r;
    3421          14 :   if (lgefint(p)==3)
    3422             :   {
    3423           0 :     ulong pp = p[2];
    3424           0 :     r = Flx_to_ZX(Flxq_charpoly(RgX_to_Flx(x, pp), RgX_to_Flx(T, pp), pp));
    3425             :   }
    3426             :   else
    3427          14 :     r = FpXQ_charpoly(RgX_to_FpX(x, p), RgX_to_FpX(T, p), p);
    3428          14 :   r = FpX_to_mod(r, p); setvarn(r, v);
    3429          14 :   return gerepileupto(av, r);
    3430             : }
    3431             : 
    3432             : static GEN
    3433       12975 : RgXQ_charpoly_fast(GEN x, GEN T, long v)
    3434             : {
    3435             :   GEN p, pol;
    3436       12975 :   long pa, t = RgX_type2(x,T, &p,&pol,&pa);
    3437       12975 :   switch(t)
    3438             :   {
    3439        9418 :     case t_INT:    return ZXQ_charpoly(x, T, v);
    3440        2171 :     case t_FRAC:
    3441             :     {
    3442        2171 :       pari_sp av = avma;
    3443             :       GEN cT;
    3444        2171 :       T = Q_primitive_part(T, &cT);
    3445        2171 :       T = QXQ_charpoly(x, T, v);
    3446        2171 :       if (cT) T = gerepileupto(av, T); /* silly rare case */
    3447        2171 :       return T;
    3448             :     }
    3449          14 :     case t_INTMOD: return RgXQ_charpoly_FpXQ(x, T, p, v);
    3450        1372 :     default:       return NULL;
    3451             :   }
    3452             : }
    3453             : 
    3454             : /* (v - x)^d */
    3455             : static GEN
    3456         126 : caract_const(pari_sp av, GEN x, long v, long d)
    3457         126 : { return gerepileupto(av, gpowgs(deg1pol_shallow(gen_1, gneg_i(x), v), d)); }
    3458             : 
    3459             : GEN
    3460      975459 : RgXQ_charpoly_i(GEN x, GEN T, long v)
    3461             : {
    3462      975459 :   pari_sp av = avma;
    3463      975459 :   long d = degpol(T), dx = degpol(x), v0;
    3464             :   GEN ch, L;
    3465      975457 :   if (dx >= degpol(T)) { x = RgX_rem(x, T); dx = degpol(x); }
    3466      975456 :   if (dx <= 0) return dx? pol_xn(d, v): caract_const(av, gel(x,2), v, d);
    3467             : 
    3468      975386 :   v0 = fetch_var_higher();
    3469      975385 :   x = RgX_neg(x);
    3470      975393 :   gel(x,2) = gadd(gel(x,2), pol_x(v));
    3471      975387 :   setvarn(x, v0);
    3472      975387 :   T = leafcopy(T); setvarn(T, v0);
    3473      975383 :   ch = resultant(T, x);
    3474      975401 :   (void)delete_var();
    3475             :   /* test for silly input: x mod (deg 0 polynomial) */
    3476      975401 :   if (typ(ch) != t_POL)
    3477           7 :     pari_err_PRIORITY("RgXQ_charpoly", pol_x(v), "<", gvar(ch));
    3478      975394 :   L = leading_coeff(ch);
    3479      975393 :   if (!gequal1(L)) ch = RgX_Rg_div(ch, L);
    3480      975391 :   return gerepileupto(av, ch);
    3481             : }
    3482             : 
    3483             : /* return caract(Mod(x,T)) in variable v */
    3484             : GEN
    3485       12975 : RgXQ_charpoly(GEN x, GEN T, long v)
    3486             : {
    3487       12975 :   GEN ch = RgXQ_charpoly_fast(x, T, v);
    3488       12975 :   if (ch) return ch;
    3489        1372 :   return RgXQ_charpoly_i(x, T, v);
    3490             : }
    3491             : 
    3492             : /* characteristic polynomial (in v) of x over nf, where x is an element of the
    3493             :  * algebra nf[t]/(Q(t)) */
    3494             : GEN
    3495         224 : rnfcharpoly(GEN nf, GEN Q, GEN x, long v)
    3496             : {
    3497         224 :   const char *f = "rnfcharpoly";
    3498         224 :   long dQ = degpol(Q);
    3499         224 :   pari_sp av = avma;
    3500             :   GEN T;
    3501             : 
    3502         224 :   if (v < 0) v = 0;
    3503         224 :   nf = checknf(nf); T = nf_get_pol(nf);
    3504         224 :   Q = RgX_nffix(f, T,Q,0);
    3505         224 :   switch(typ(x))
    3506             :   {
    3507          28 :     case t_INT:
    3508          28 :     case t_FRAC: return caract_const(av, x, v, dQ);
    3509          91 :     case t_POLMOD:
    3510          91 :       x = polmod_nffix2(f,T,Q, x,0);
    3511          56 :       break;
    3512          56 :     case t_POL:
    3513          56 :       x = varn(x) == varn(T)? Rg_nffix(f,T,x,0): RgX_nffix(f, T,x,0);
    3514          42 :       break;
    3515          49 :     default: pari_err_TYPE(f,x);
    3516             :   }
    3517          98 :   if (typ(x) != t_POL) return caract_const(av, x, v, dQ);
    3518             :   /* x a t_POL in variable vQ */
    3519          56 :   if (degpol(x) >= dQ) x = RgX_rem(x, Q);
    3520          56 :   if (dQ <= 1) return caract_const(av, constant_coeff(x), v, 1);
    3521          56 :   return gerepilecopy(av, lift_if_rational( RgXQ_charpoly(x, Q, v) ));
    3522             : }
    3523             : 
    3524             : /*******************************************************************/
    3525             : /*                                                                 */
    3526             : /*                  GCD USING SUBRESULTANT                         */
    3527             : /*                                                                 */
    3528             : /*******************************************************************/
    3529             : static int inexact(GEN x, int *simple);
    3530             : static int
    3531       38367 : isinexactall(GEN x, int *simple)
    3532             : {
    3533       38367 :   long i, lx = lg(x);
    3534      139020 :   for (i=2; i<lx; i++)
    3535      100667 :     if (inexact(gel(x,i), simple)) return 1;
    3536       38353 :   return 0;
    3537             : }
    3538             : /* return 1 if coeff explosion is not possible */
    3539             : static int
    3540      100919 : inexact(GEN x, int *simple)
    3541             : {
    3542      100919 :   int junk = 0;
    3543      100919 :   switch(typ(x))
    3544             :   {
    3545       64729 :     case t_INT: case t_FRAC: return 0;
    3546             : 
    3547           7 :     case t_REAL: case t_PADIC: case t_SER: return 1;
    3548             : 
    3549        4011 :     case t_INTMOD:
    3550             :     case t_FFELT:
    3551        4011 :       if (!*simple) *simple = 1;
    3552        4011 :       return 0;
    3553             : 
    3554          77 :     case t_COMPLEX:
    3555          77 :       return inexact(gel(x,1), simple)
    3556          77 :           || inexact(gel(x,2), simple);
    3557           0 :     case t_QUAD:
    3558           0 :       *simple = 0;
    3559           0 :       return inexact(gel(x,2), &junk)
    3560           0 :           || inexact(gel(x,3), &junk);
    3561             : 
    3562         819 :     case t_POLMOD:
    3563         819 :       return isinexactall(gel(x,1), simple);
    3564       31227 :     case t_POL:
    3565       31227 :       *simple = -1;
    3566       31227 :       return isinexactall(x, &junk);
    3567          49 :     case t_RFRAC:
    3568          49 :       *simple = -1;
    3569          49 :       return inexact(gel(x,1), &junk)
    3570          49 :           || inexact(gel(x,2), &junk);
    3571             :   }
    3572           0 :   *simple = -1; return 0;
    3573             : }
    3574             : 
    3575             : /* x monomial, y t_POL in the same variable */
    3576             : static GEN
    3577     1706300 : gcdmonome(GEN x, GEN y)
    3578             : {
    3579     1706300 :   pari_sp av = avma;
    3580     1706300 :   long dx = degpol(x), e = RgX_valrem(y, &y);
    3581     1706300 :   long i, l = lg(y);
    3582     1706300 :   GEN t, v = cgetg(l, t_VEC);
    3583     1706300 :   gel(v,1) = gel(x,dx+2);
    3584     3425882 :   for (i = 2; i < l; i++) gel(v,i) = gel(y,i);
    3585     1706300 :   t = content(v); /* gcd(lc(x), cont(y)) */
    3586     1706300 :   t = simplify_shallow(t);
    3587     1706300 :   if (dx < e) e = dx;
    3588     1706300 :   return gerepileupto(av, monomialcopy(t, e, varn(x)));
    3589             : }
    3590             : 
    3591             : static GEN
    3592      112455 : RgX_gcd_FpX(GEN x, GEN y, GEN p)
    3593             : {
    3594      112455 :   pari_sp av = avma;
    3595             :   GEN r;
    3596      112455 :   if (lgefint(p) == 3)
    3597             :   {
    3598      112441 :     ulong pp = uel(p, 2);
    3599      112441 :     r = Flx_to_ZX_inplace(Flx_gcd(RgX_to_Flx(x, pp),
    3600             :                                   RgX_to_Flx(y, pp), pp));
    3601             :   }
    3602             :   else
    3603          14 :     r = FpX_gcd(RgX_to_FpX(x, p), RgX_to_FpX(y, p), p);
    3604      112455 :   return gerepileupto(av, FpX_to_mod(r, p));
    3605             : }
    3606             : 
    3607             : static GEN
    3608           7 : RgX_gcd_FpXQX(GEN x, GEN y, GEN pol, GEN p)
    3609             : {
    3610           7 :   pari_sp av = avma;
    3611           7 :   GEN r, T = RgX_to_FpX(pol, p);
    3612           7 :   if (signe(T)==0) pari_err_OP("gcd", x, y);
    3613           7 :   r = FpXQX_gcd(RgX_to_FpXQX(x, T, p), RgX_to_FpXQX(y, T, p), T, p);
    3614           7 :   return gerepileupto(av, FpXQX_to_mod(r, T, p));
    3615             : }
    3616             : 
    3617             : static GEN
    3618       10878 : RgX_liftred(GEN x, GEN T)
    3619       10878 : { return RgXQX_red(liftpol_shallow(x), T); }
    3620             : 
    3621             : static GEN
    3622        2289 : RgX_gcd_ZXQX(GEN x, GEN y, GEN T)
    3623             : {
    3624        2289 :   pari_sp av = avma;
    3625        2289 :   GEN r = ZXQX_gcd(RgX_liftred(x, T), RgX_liftred(y, T), T);
    3626        2289 :   return gerepilecopy(av, QXQX_to_mod_shallow(r, T));
    3627             : }
    3628             : 
    3629             : static GEN
    3630        3150 : RgX_gcd_QXQX(GEN x, GEN y, GEN T)
    3631             : {
    3632        3150 :   pari_sp av = avma;
    3633        3150 :   GEN r = QXQX_gcd(RgX_liftred(x, T), RgX_liftred(y, T), T);
    3634        3150 :   return gerepilecopy(av, QXQX_to_mod_shallow(r, T));
    3635             : }
    3636             : 
    3637             : static GEN
    3638    11289521 : RgX_gcd_fast(GEN x, GEN y)
    3639             : {
    3640             :   GEN p, pol;
    3641             :   long pa;
    3642    11289521 :   long t = RgX_type2(x,y, &p,&pol,&pa);
    3643    11289521 :   switch(t)
    3644             :   {
    3645     9451761 :     case t_INT:    return ZX_gcd(x, y);
    3646        7707 :     case t_FRAC:   return QX_gcd(x, y);
    3647        2590 :     case t_FFELT:  return FFX_gcd(x, y, pol);
    3648      112455 :     case t_INTMOD: return RgX_gcd_FpX(x, y, p);
    3649           7 :     case code(t_POLMOD, t_INTMOD):
    3650           7 :                    return RgX_gcd_FpXQX(x, y, pol, p);
    3651        2296 :     case code(t_POLMOD, t_INT):
    3652        2296 :                    return ZX_is_monic(pol)? RgX_gcd_ZXQX(x,y,pol): NULL;
    3653        3164 :     case code(t_POLMOD, t_FRAC):
    3654        6328 :                    return RgX_is_ZX(pol) && ZX_is_monic(pol) ?
    3655        6328 :                                             RgX_gcd_QXQX(x,y,pol): NULL;
    3656     1709541 :     default:       return NULL;
    3657             :   }
    3658             : }
    3659             : 
    3660             : /* x, y are t_POL in the same variable */
    3661             : GEN
    3662    11289521 : RgX_gcd(GEN x, GEN y)
    3663             : {
    3664             :   long dx, dy;
    3665             :   pari_sp av, av1;
    3666             :   GEN d, g, h, p1, p2, u, v;
    3667    11289521 :   int simple = 0;
    3668    11289521 :   GEN z = RgX_gcd_fast(x, y);
    3669    11289521 :   if (z) return z;
    3670     1709562 :   if (isexactzero(y)) return RgX_copy(x);
    3671     1709464 :   if (isexactzero(x)) return RgX_copy(y);
    3672     1709464 :   if (RgX_is_monomial(x)) return gcdmonome(x,y);
    3673        4298 :   if (RgX_is_monomial(y)) return gcdmonome(y,x);
    3674        3164 :   if (isinexactall(x,&simple) || isinexactall(y,&simple))
    3675             :   {
    3676           7 :     av = avma; u = ggcd(content(x), content(y));
    3677           7 :     return gerepileupto(av, scalarpol(u, varn(x)));
    3678             :   }
    3679             : 
    3680        3157 :   av = avma;
    3681        3157 :   if (simple > 0) x = RgX_gcd_simple(x,y);
    3682             :   else
    3683             :   {
    3684        3157 :     dx = lg(x); dy = lg(y);
    3685        3157 :     if (dx < dy) { swap(x,y); lswap(dx,dy); }
    3686        3157 :     if (dy==3)
    3687             :     {
    3688           0 :       d = ggcd(gel(y,2), content(x));
    3689           0 :       return gerepileupto(av, scalarpol(d, varn(x)));
    3690             :     }
    3691        3157 :     u = primitive_part(x, &p1); if (!p1) p1 = gen_1;
    3692        3157 :     v = primitive_part(y, &p2); if (!p2) p2 = gen_1;
    3693        3157 :     d = ggcd(p1,p2);
    3694        3157 :     av1 = avma;
    3695        3157 :     g = h = gen_1;
    3696             :     for(;;)
    3697        1197 :     {
    3698        4354 :       GEN r = RgX_pseudorem(u,v);
    3699        4354 :       long degq, du, dv, dr = lg(r);
    3700             : 
    3701        4354 :       if (!signe(r)) break;
    3702        2205 :       if (dr <= 3)
    3703             :       {
    3704        1008 :         set_avma(av1);
    3705        1008 :         return gerepileupto(av, scalarpol(d, varn(x)));
    3706             :       }
    3707        1197 :       du = lg(u); dv = lg(v); degq = du-dv;
    3708        1197 :       u = v; p1 = g; g = leading_coeff(u);
    3709        1197 :       switch(degq)
    3710             :       {
    3711         189 :         case 0: break;
    3712         917 :         case 1:
    3713         917 :           p1 = gmul(h,p1); h = g; break;
    3714          91 :         default:
    3715          91 :           p1 = gmul(gpowgs(h,degq), p1);
    3716          91 :           h = gdiv(gpowgs(g,degq), gpowgs(h,degq-1));
    3717             :       }
    3718        1197 :       v = RgX_Rg_div(r,p1);
    3719        1197 :       if (gc_needed(av1,1))
    3720             :       {
    3721           0 :         if(DEBUGMEM>1) pari_warn(warnmem,"RgX_gcd, dr = %ld", degpol(r));
    3722           0 :         gerepileall(av1,4, &u,&v,&g,&h);
    3723             :       }
    3724             :     }
    3725        2149 :     x = RgX_Rg_mul(primpart(v), d);
    3726             :   }
    3727        2149 :   if (must_negate(x)) x = RgX_neg(x);
    3728        2149 :   return gerepileupto(av,x);
    3729             : }
    3730             : 
    3731             : /* disc P = (-1)^(n(n-1)/2) lc(P)^(n - deg P' - 2) Res(P,P'), n = deg P */
    3732             : static GEN
    3733         392 : RgX_disc_i(GEN P)
    3734             : {
    3735         392 :   long n = degpol(P), dd;
    3736             :   GEN N, D, L, y;
    3737         392 :   if (!signe(P) || !n) return Rg_get_0(P);
    3738         385 :   if (n == 1) return Rg_get_1(P);
    3739         385 :   if (n == 2) {
    3740         126 :     GEN a = gel(P,4), b = gel(P,3), c = gel(P,2);
    3741         126 :     return gsub(gsqr(b), gmul2n(gmul(a,c),2));
    3742             :   }
    3743         259 :   y = RgX_deriv(P);
    3744         259 :   N = characteristic(P);
    3745         259 :   if (signe(N)) y = gmul(y, mkintmod(gen_1,N));
    3746         259 :   if (!signe(y)) return Rg_get_0(y);
    3747         259 :   dd = n - 2 - degpol(y);
    3748         259 :   if (isinexact(P))
    3749          14 :     D = resultant2(P,y);
    3750             :   else
    3751             :   {
    3752         245 :     D = RgX_resultant_all(P, y, NULL);
    3753         245 :     if (D == gen_0) return Rg_get_0(y);
    3754             :   }
    3755         259 :   L = leading_coeff(P);
    3756         259 :   if (dd && !gequal1(L)) D = (dd == -1)? gdiv(D, L): gmul(D, gpowgs(L, dd));
    3757         259 :   if (n & 2) D = gneg(D);
    3758         259 :   return D;
    3759             : }
    3760             : 
    3761             : static GEN
    3762          42 : RgX_disc_FpX(GEN x, GEN p)
    3763             : {
    3764          42 :   pari_sp av = avma;
    3765          42 :   GEN r = FpX_disc(RgX_to_FpX(x, p), p);
    3766          42 :   return gerepileupto(av, Fp_to_mod(r, p));
    3767             : }
    3768             : 
    3769             : static GEN
    3770          28 : RgX_disc_FpXQX(GEN x, GEN pol, GEN p)
    3771             : {
    3772          28 :   pari_sp av = avma;
    3773          28 :   GEN r, T = RgX_to_FpX(pol, p);
    3774          28 :   r = FpXQX_disc(RgX_to_FpXQX(x, T, p), T, p);
    3775          28 :   return gerepileupto(av, FpX_to_mod(r, p));
    3776             : }
    3777             : 
    3778             : static GEN
    3779      123251 : RgX_disc_fast(GEN x)
    3780             : {
    3781             :   GEN p, pol;
    3782             :   long pa;
    3783      123251 :   long t = RgX_type(x, &p,&pol,&pa);
    3784      123251 :   switch(t)
    3785             :   {
    3786      122747 :     case t_INT:    return ZX_disc(x);
    3787           7 :     case t_FRAC:   return QX_disc(x);
    3788          35 :     case t_FFELT:  return FFX_disc(x, pol);
    3789          42 :     case t_INTMOD: return RgX_disc_FpX(x, p);
    3790          28 :     case code(t_POLMOD, t_INTMOD):
    3791          28 :                    return RgX_disc_FpXQX(x, pol, p);
    3792         392 :     default:       return NULL;
    3793             :   }
    3794             : }
    3795             : 
    3796             : GEN
    3797      123251 : RgX_disc(GEN x)
    3798             : {
    3799             :   pari_sp av;
    3800      123251 :   GEN z = RgX_disc_fast(x);
    3801      123251 :   if (z) return z;
    3802         392 :   av = avma;
    3803         392 :   return gerepileupto(av, RgX_disc_i(x));
    3804             : }
    3805             : 
    3806             : GEN
    3807        4714 : poldisc0(GEN x, long v)
    3808             : {
    3809        4714 :   long v0, tx = typ(x);
    3810             :   pari_sp av;
    3811             :   GEN D;
    3812        4714 :   if (tx == t_POL && (v < 0 || v == varn(x))) return RgX_disc(x);
    3813          35 :   switch(tx)
    3814             :   {
    3815           0 :     case t_QUAD:
    3816           0 :       return quad_disc(x);
    3817           0 :     case t_POLMOD:
    3818           0 :       if (v >= 0 && varn(gel(x,1)) != v) break;
    3819           0 :       return RgX_disc(gel(x,1));
    3820          14 :     case t_QFB:
    3821          14 :       return icopy(qfb_disc(x));
    3822           0 :     case t_VEC: case t_COL: case t_MAT:
    3823           0 :       pari_APPLY_same(poldisc0(gel(x,i), v));
    3824             :   }
    3825          21 :   if (v < 0) pari_err_TYPE("poldisc",x);
    3826          21 :   av = avma; v0 = fetch_var_higher();
    3827          21 :   x = fix_pol(x,v, v0);
    3828          14 :   D = RgX_disc(x); (void)delete_var();
    3829          14 :   return gerepileupto(av, D);
    3830             : }
    3831             : 
    3832             : GEN
    3833           7 : reduceddiscsmith(GEN x)
    3834             : {
    3835           7 :   long j, n = degpol(x);
    3836           7 :   pari_sp av = avma;
    3837             :   GEN xp, M;
    3838             : 
    3839           7 :   if (typ(x) != t_POL) pari_err_TYPE("poldiscreduced",x);
    3840           7 :   if (n<=0) pari_err_CONSTPOL("poldiscreduced");
    3841           7 :   RgX_check_ZX(x,"poldiscreduced");
    3842           7 :   if (!gequal1(gel(x,n+2)))
    3843           0 :     pari_err_IMPL("nonmonic polynomial in poldiscreduced");
    3844           7 :   M = cgetg(n+1,t_MAT);
    3845           7 :   xp = ZX_deriv(x);
    3846          28 :   for (j=1; j<=n; j++)
    3847             :   {
    3848          21 :     gel(M,j) = RgX_to_RgC(xp, n);
    3849          21 :     if (j<n) xp = RgX_rem(RgX_shift_shallow(xp, 1), x);
    3850             :   }
    3851           7 :   return gerepileupto(av, ZM_snf(M));
    3852             : }
    3853             : 
    3854             : /***********************************************************************/
    3855             : /**                                                                   **/
    3856             : /**                       STURM ALGORITHM                             **/
    3857             : /**              (number of real roots of x in [a,b])                 **/
    3858             : /**                                                                   **/
    3859             : /***********************************************************************/
    3860             : static GEN
    3861         525 : R_to_Q_up(GEN x)
    3862             : {
    3863             :   long e;
    3864         525 :   switch(typ(x))
    3865             :   {
    3866         525 :     case t_INT: case t_FRAC: case t_INFINITY: return x;
    3867           0 :     case t_REAL:
    3868           0 :       x = mantissa_real(x,&e);
    3869           0 :       return gmul2n(addiu(x,1), -e);
    3870           0 :     default: pari_err_TYPE("R_to_Q_up", x);
    3871             :       return NULL; /* LCOV_EXCL_LINE */
    3872             :   }
    3873             : }
    3874             : static GEN
    3875         525 : R_to_Q_down(GEN x)
    3876             : {
    3877             :   long e;
    3878         525 :   switch(typ(x))
    3879             :   {
    3880         525 :     case t_INT: case t_FRAC: case t_INFINITY: return x;
    3881           0 :     case t_REAL:
    3882           0 :       x = mantissa_real(x,&e);
    3883           0 :       return gmul2n(subiu(x,1), -e);
    3884           0 :     default: pari_err_TYPE("R_to_Q_down", x);
    3885             :       return NULL; /* LCOV_EXCL_LINE */
    3886             :   }
    3887             : }
    3888             : 
    3889             : static long
    3890        1148 : sturmpart_i(GEN x, GEN ab)
    3891             : {
    3892        1148 :   long tx = typ(x);
    3893        1148 :   if (gequal0(x)) pari_err_ROOTS0("sturm");
    3894        1148 :   if (tx != t_POL)
    3895             :   {
    3896           0 :     if (is_real_t(tx)) return 0;
    3897           0 :     pari_err_TYPE("sturm",x);
    3898             :   }
    3899        1148 :   if (lg(x) == 3) return 0;
    3900        1148 :   if (!RgX_is_ZX(x)) x = RgX_rescale_to_int(x);
    3901        1148 :   (void)ZX_gcd_all(x, ZX_deriv(x), &x);
    3902        1148 :   if (ab)
    3903             :   {
    3904             :     GEN A, B;
    3905         525 :     if (typ(ab) != t_VEC || lg(ab) != 3) pari_err_TYPE("RgX_sturmpart", ab);
    3906         525 :     A = R_to_Q_down(gel(ab,1));
    3907         525 :     B = R_to_Q_up(gel(ab,2));
    3908         525 :     ab = mkvec2(A, B);
    3909             :   }
    3910        1148 :   return ZX_sturmpart(x, ab);
    3911             : }
    3912             : /* Deprecated: RgX_sturmpart() should be preferred  */
    3913             : long
    3914         385 : sturmpart(GEN x, GEN a, GEN b)
    3915             : {
    3916         385 :   pari_sp av = avma;
    3917         385 :   if (!b && a && typ(a) == t_VEC) return RgX_sturmpart(x, a);
    3918         385 :   if (!a) a = mkmoo();
    3919         385 :   if (!b) b = mkoo();
    3920         385 :   return gc_long(av, sturmpart_i(x, mkvec2(a,b)));
    3921             : }
    3922             : long
    3923         763 : RgX_sturmpart(GEN x, GEN ab)
    3924         763 : { pari_sp av = avma; return gc_long(av, sturmpart_i(x, ab)); }
    3925             : 
    3926             : /***********************************************************************/
    3927             : /**                                                                   **/
    3928             : /**                        GENERIC EXTENDED GCD                       **/
    3929             : /**                                                                   **/
    3930             : /***********************************************************************/
    3931             : /* assume typ(x) = typ(y) = t_POL */
    3932             : static GEN
    3933         890 : RgXQ_inv_i(GEN x, GEN y)
    3934             : {
    3935         890 :   long vx=varn(x), vy=varn(y);
    3936             :   pari_sp av;
    3937             :   GEN u, v, d;
    3938             : 
    3939         890 :   while (vx != vy)
    3940             :   {
    3941           0 :     if (varncmp(vx,vy) > 0)
    3942             :     {
    3943           0 :       d = (vx == NO_VARIABLE)? ginv(x): gred_rfrac_simple(gen_1, x);
    3944           0 :       return scalarpol(d, vy);
    3945             :     }
    3946           0 :     if (lg(x)!=3) pari_err_INV("RgXQ_inv",mkpolmod(x,y));
    3947           0 :     x = gel(x,2); vx = gvar(x);
    3948             :   }
    3949         890 :   av = avma; d = subresext_i(x,y,&u,&v/*junk*/);
    3950         890 :   if (gequal0(d)) pari_err_INV("RgXQ_inv",mkpolmod(x,y));
    3951         890 :   d = gdiv(u,d);
    3952         890 :   if (typ(d) != t_POL || varn(d) != vy) d = scalarpol(d, vy);
    3953         890 :   return gerepileupto(av, d);
    3954             : }
    3955             : 
    3956             : /*Assume x is a polynomial and y is not */
    3957             : static GEN
    3958         112 : scalar_bezout(GEN x, GEN y, GEN *U, GEN *V)
    3959             : {
    3960         112 :   long vx = varn(x);
    3961         112 :   int xis0 = signe(x)==0, yis0 = gequal0(y);
    3962         112 :   if (xis0 && yis0) { *U = *V = pol_0(vx); return pol_0(vx); }
    3963          84 :   if (yis0) { *U=pol_1(vx); *V = pol_0(vx); return RgX_copy(x);}
    3964          56 :   *U=pol_0(vx); *V= ginv(y); return pol_1(vx);
    3965             : }
    3966             : /* Assume x==0, y!=0 */
    3967             : static GEN
    3968          63 : zero_bezout(GEN y, GEN *U, GEN *V)
    3969             : {
    3970          63 :   *U=gen_0; *V = ginv(y); return gen_1;
    3971             : }
    3972             : 
    3973             : GEN
    3974         427 : gbezout(GEN x, GEN y, GEN *u, GEN *v)
    3975             : {
    3976         427 :   long tx=typ(x), ty=typ(y), vx;
    3977         427 :   if (tx == t_INT && ty == t_INT) return bezout(x,y,u,v);
    3978         392 :   if (tx != t_POL)
    3979             :   {
    3980         140 :     if (ty == t_POL)
    3981          56 :       return scalar_bezout(y,x,v,u);
    3982             :     else
    3983             :     {
    3984          84 :       int xis0 = gequal0(x), yis0 = gequal0(y);
    3985          84 :       if (xis0 && yis0) { *u = *v = gen_0; return gen_0; }
    3986          63 :       if (xis0) return zero_bezout(y,u,v);
    3987          42 :       else return zero_bezout(x,v,u);
    3988             :     }
    3989             :   }
    3990         252 :   else if (ty != t_POL) return scalar_bezout(x,y,u,v);
    3991         196 :   vx = varn(x);
    3992         196 :   if (vx != varn(y))
    3993           0 :     return varncmp(vx, varn(y)) < 0? scalar_bezout(x,y,u,v)
    3994           0 :                                    : scalar_bezout(y,x,v,u);
    3995         196 :   return RgX_extgcd(x,y,u,v);
    3996             : }
    3997             : 
    3998             : GEN
    3999         427 : gcdext0(GEN x, GEN y)
    4000             : {
    4001         427 :   GEN z=cgetg(4,t_VEC);
    4002         427 :   gel(z,3) = gbezout(x,y,(GEN*)(z+1),(GEN*)(z+2));
    4003         427 :   return z;
    4004             : }
    4005             : 
    4006             : /*******************************************************************/
    4007             : /*                                                                 */
    4008             : /*                    GENERIC (modular) INVERSE                    */
    4009             : /*                                                                 */
    4010             : /*******************************************************************/
    4011             : 
    4012             : GEN
    4013       35168 : ginvmod(GEN x, GEN y)
    4014             : {
    4015       35168 :   long tx=typ(x);
    4016             : 
    4017       35168 :   switch(typ(y))
    4018             :   {
    4019       35168 :     case t_POL:
    4020       35168 :       if (tx==t_POL) return RgXQ_inv(x,y);
    4021       13734 :       if (is_scalar_t(tx)) return ginv(x);
    4022           0 :       break;
    4023           0 :     case t_INT:
    4024           0 :       if (tx==t_INT) return Fp_inv(x,y);
    4025           0 :       if (tx==t_POL) return gen_0;
    4026             :   }
    4027           0 :   pari_err_TYPE2("ginvmod",x,y);
    4028             :   return NULL; /* LCOV_EXCL_LINE */
    4029             : }
    4030             : 
    4031             : /***********************************************************************/
    4032             : /**                                                                   **/
    4033             : /**                         NEWTON POLYGON                            **/
    4034             : /**                                                                   **/
    4035             : /***********************************************************************/
    4036             : 
    4037             : /* assume leading coeff of x is nonzero */
    4038             : GEN
    4039          28 : newtonpoly(GEN x, GEN p)
    4040             : {
    4041          28 :   pari_sp av = avma;
    4042             :   long n, ind, a, b;
    4043             :   GEN y, vval;
    4044             : 
    4045          28 :   if (typ(x) != t_POL) pari_err_TYPE("newtonpoly",x);
    4046          28 :   n = degpol(x); if (n<=0) return cgetg(1,t_VEC);
    4047          28 :   vval = new_chunk(n+1);
    4048          28 :   y = cgetg(n+1,t_VEC); x += 2; /* now x[i] = term of degree i */
    4049         168 :   for (a = 0; a <= n; a++) vval[a] = gvaluation(gel(x,a),p);
    4050          42 :   for (a = 0, ind = 1; a < n; a++)
    4051             :   {
    4052          42 :     if (vval[a] != LONG_MAX) break;
    4053          14 :     gel(y,ind++) = mkoo();
    4054             :   }
    4055          84 :   for (b = a+1; b <= n; a = b, b = a+1)
    4056             :   {
    4057             :     long u1, u2, c;
    4058          70 :     while (vval[b] == LONG_MAX) b++;
    4059          56 :     u1 = vval[a] - vval[b];
    4060          56 :     u2 = b - a;
    4061         154 :     for (c = b+1; c <= n; c++)
    4062             :     {
    4063             :       long r1, r2;
    4064          98 :       if (vval[c] == LONG_MAX) continue;
    4065          70 :       r1 = vval[a] - vval[c];
    4066          70 :       r2 = c - a;
    4067          70 :       if (u1*r2 <= u2*r1) { u1 = r1; u2 = r2; b = c; }
    4068             :     }
    4069         154 :     while (ind <= b) gel(y,ind++) = sstoQ(u1,u2);
    4070             :   }
    4071          28 :   stackdummy((pari_sp)vval, av); return y;
    4072             : }
    4073             : 
    4074             : static GEN
    4075      274309 : RgXQ_mul_FpXQ(GEN x, GEN y, GEN T, GEN p)
    4076             : {
    4077      274309 :   pari_sp av = avma;
    4078             :   GEN r;
    4079      274309 :   if (lgefint(p) == 3)
    4080             :   {
    4081      152402 :     ulong pp = uel(p, 2);
    4082      152402 :     r = Flx_to_ZX_inplace(Flxq_mul(RgX_to_Flx(x, pp),
    4083             :                 RgX_to_Flx(y, pp), RgX_to_Flx(T, pp), pp));
    4084             :   }
    4085             :   else
    4086      121907 :     r = FpXQ_mul(RgX_to_FpX(x, p), RgX_to_FpX(y, p), RgX_to_FpX(T, p), p);
    4087      274309 :   return gerepileupto(av, FpX_to_mod(r, p));
    4088             : }
    4089             : 
    4090             : static GEN
    4091          14 : RgXQ_sqr_FpXQ(GEN x, GEN y, GEN p)
    4092             : {
    4093          14 :   pari_sp av = avma;
    4094             :   GEN r;
    4095          14 :   if (lgefint(p) == 3)
    4096             :   {
    4097           7 :     ulong pp = uel(p, 2);
    4098           7 :     r = Flx_to_ZX_inplace(Flxq_sqr(RgX_to_Flx(x, pp),
    4099             :                                    RgX_to_Flx(y, pp), pp));
    4100             :   }
    4101             :   else
    4102           7 :     r = FpXQ_sqr(RgX_to_FpX(x, p), RgX_to_FpX(y, p), p);
    4103          14 :   return gerepileupto(av, FpX_to_mod(r, p));
    4104             : }
    4105             : 
    4106             : static GEN
    4107       12054 : RgXQ_inv_FpXQ(GEN x, GEN y, GEN p)
    4108             : {
    4109       12054 :   pari_sp av = avma;
    4110             :   GEN r;
    4111       12054 :   if (lgefint(p) == 3)
    4112             :   {
    4113        6088 :     ulong pp = uel(p, 2);
    4114        6088 :     r = Flx_to_ZX_inplace(Flxq_inv(RgX_to_Flx(x, pp),
    4115             :                                    RgX_to_Flx(y, pp), pp));
    4116             :   }
    4117             :   else
    4118        5966 :     r = FpXQ_inv(RgX_to_FpX(x, p), RgX_to_FpX(y, p), p);
    4119       12054 :   return gerepileupto(av, FpX_to_mod(r, p));
    4120             : }
    4121             : 
    4122             : static GEN
    4123         385 : RgXQ_mul_FpXQXQ(GEN x, GEN y, GEN S, GEN pol, GEN p)
    4124             : {
    4125         385 :   pari_sp av = avma;
    4126             :   GEN r;
    4127         385 :   GEN T = RgX_to_FpX(pol, p);
    4128         385 :   if (signe(T)==0) pari_err_OP("*",x,y);
    4129         385 :   if (lgefint(p) == 3)
    4130             :   {
    4131         241 :     ulong pp = uel(p, 2);
    4132         241 :     GEN Tp = ZX_to_Flx(T, pp);
    4133         241 :     r = FlxX_to_ZXX(FlxqXQ_mul(RgX_to_FlxqX(x, Tp, pp),
    4134             :                                RgX_to_FlxqX(y, Tp, pp),
    4135             :                                RgX_to_FlxqX(S, Tp, pp), Tp, pp));
    4136             :   }
    4137             :   else
    4138         144 :     r = FpXQXQ_mul(RgX_to_FpXQX(x, T, p), RgX_to_FpXQX(y, T, p),
    4139             :                    RgX_to_FpXQX(S, T, p), T, p);
    4140         385 :   return gerepileupto(av, FpXQX_to_mod(r, T, p));
    4141             : }
    4142             : 
    4143             : static GEN
    4144           0 : RgXQ_sqr_FpXQXQ(GEN x, GEN y, GEN pol, GEN p)
    4145             : {
    4146           0 :   pari_sp av = avma;
    4147             :   GEN r;
    4148           0 :   GEN T = RgX_to_FpX(pol, p);
    4149           0 :   if (signe(T)==0) pari_err_OP("*",x,x);
    4150           0 :   if (lgefint(p) == 3)
    4151             :   {
    4152           0 :     ulong pp = uel(p, 2);
    4153           0 :     GEN Tp = ZX_to_Flx(T, pp);
    4154           0 :     r = FlxX_to_ZXX(FlxqXQ_sqr(RgX_to_FlxqX(x, Tp, pp),
    4155             :                                RgX_to_FlxqX(y, Tp, pp), Tp, pp));
    4156             :   }
    4157             :   else
    4158           0 :     r = FpXQXQ_sqr(RgX_to_FpXQX(x, T, p), RgX_to_FpXQX(y, T, p), T, p);
    4159           0 :   return gerepileupto(av, FpXQX_to_mod(r, T, p));
    4160             : }
    4161             : 
    4162             : static GEN
    4163           7 : RgXQ_inv_FpXQXQ(GEN x, GEN y, GEN pol, GEN p)
    4164             : {
    4165           7 :   pari_sp av = avma;
    4166             :   GEN r;
    4167           7 :   GEN T = RgX_to_FpX(pol, p);
    4168           7 :   if (signe(T)==0) pari_err_OP("^",x,gen_m1);
    4169           7 :   if (lgefint(p) == 3)
    4170             :   {
    4171           7 :     ulong pp = uel(p, 2);
    4172           7 :     GEN Tp = ZX_to_Flx(T, pp);
    4173           7 :     r = FlxX_to_ZXX(FlxqXQ_inv(RgX_to_FlxqX(x, Tp, pp),
    4174             :                                RgX_to_FlxqX(y, Tp, pp), Tp, pp));
    4175             :   }
    4176             :   else
    4177           0 :     r = FpXQXQ_inv(RgX_to_FpXQX(x, T, p), RgX_to_FpXQX(y, T, p), T, p);
    4178           7 :   return gerepileupto(av, FpXQX_to_mod(r, T, p));
    4179             : }
    4180             : 
    4181             : static GEN
    4182     1527764 : RgXQ_mul_fast(GEN x, GEN y, GEN T)
    4183             : {
    4184             :   GEN p, pol;
    4185             :   long pa;
    4186     1527764 :   long t = RgX_type3(x,y,T, &p,&pol,&pa);
    4187     1527764 :   switch(t)
    4188             :   {
    4189      584455 :     case t_INT:    return ZX_is_monic(T) ? ZXQ_mul(x,y,T): NULL;
    4190      629581 :     case t_FRAC:   return RgX_is_ZX(T) && ZX_is_monic(T) ? QXQ_mul(x,y,T): NULL;
    4191         105 :     case t_FFELT:  return FFXQ_mul(x, y, T, pol);
    4192      274309 :     case t_INTMOD: return RgXQ_mul_FpXQ(x, y, T, p);
    4193         385 :     case code(t_POLMOD, t_INTMOD):
    4194         385 :                    return RgXQ_mul_FpXQXQ(x, y, T, pol, p);
    4195       38929 :     default:       return NULL;
    4196             :   }
    4197             : }
    4198             : 
    4199             : GEN
    4200     1527764 : RgXQ_mul(GEN x, GEN y, GEN T)
    4201             : {
    4202     1527764 :   GEN z = RgXQ_mul_fast(x, y, T);
    4203     1527761 :   if (!z) z = RgX_rem(RgX_mul(x, y), T);
    4204     1527761 :   return z;
    4205             : }
    4206             : 
    4207             : static GEN
    4208      458977 : RgXQ_sqr_fast(GEN x, GEN T)
    4209             : {
    4210             :   GEN p, pol;
    4211             :   long pa;
    4212      458977 :   long t = RgX_type2(x, T, &p,&pol,&pa);
    4213      458977 :   switch(t)
    4214             :   {
    4215      111945 :     case t_INT:    return ZX_is_monic(T) ? ZXQ_sqr(x,T): NULL;
    4216      340181 :     case t_FRAC:   return RgX_is_ZX(T) && ZX_is_monic(T) ? QXQ_sqr(x,T): NULL;
    4217           7 :     case t_FFELT:  return FFXQ_sqr(x, T, pol);
    4218          14 :     case t_INTMOD: return RgXQ_sqr_FpXQ(x, T, p);
    4219           0 :     case code(t_POLMOD, t_INTMOD):
    4220           0 :                    return RgXQ_sqr_FpXQXQ(x, T, pol, p);
    4221        6830 :     default:       return NULL;
    4222             :   }
    4223             : }
    4224             : 
    4225             : GEN
    4226      458977 : RgXQ_sqr(GEN x, GEN T)
    4227             : {
    4228      458977 :   GEN z = RgXQ_sqr_fast(x, T);
    4229      458977 :   if (!z) z = RgX_rem(RgX_sqr(x), T);
    4230      458977 :   return z;
    4231             : }
    4232             : 
    4233             : static GEN
    4234      135069 : RgXQ_inv_fast(GEN x, GEN y)
    4235             : {
    4236             :   GEN p, pol;
    4237             :   long pa;
    4238      135069 :   long t = RgX_type2(x,y, &p,&pol,&pa);
    4239      135069 :   switch(t)
    4240             :   {
    4241       90240 :     case t_INT:    return QXQ_inv(x,y);
    4242       31871 :     case t_FRAC:   return RgX_is_ZX(y)? QXQ_inv(x,y): NULL;
    4243          14 :     case t_FFELT:  return FFXQ_inv(x, y, pol);
    4244       12054 :     case t_INTMOD: return RgXQ_inv_FpXQ(x, y, p);
    4245           7 :     case code(t_POLMOD, t_INTMOD):
    4246           7 :                    return RgXQ_inv_FpXQXQ(x, y, pol, p);
    4247         883 :     default:       return NULL;
    4248             :   }
    4249             : }
    4250             : 
    4251             : GEN
    4252      135069 : RgXQ_inv(GEN x, GEN y)
    4253             : {
    4254      135069 :   GEN z = RgXQ_inv_fast(x, y);
    4255      135055 :   if (!z) z = RgXQ_inv_i(x, y);
    4256      135055 :   return z;
    4257             : }

Generated by: LCOV version 1.16