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 - base2.c (source / functions) Hit Total Coverage
Test: PARI/GP v2.18.1 lcov report (development 30074-db9b3c0519) Lines: 2232 2373 94.1 %
Date: 2025-03-13 08:38:27 Functions: 174 178 97.8 %
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             : Check the License for details. You should have received a copy of it, along
      11             : with the package; see the file 'COPYING'. If not, write to the Free Software
      12             : Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */
      13             : 
      14             : /*******************************************************************/
      15             : /*                                                                 */
      16             : /*                       MAXIMAL ORDERS                            */
      17             : /*                                                                 */
      18             : /*******************************************************************/
      19             : #include "pari.h"
      20             : #include "paripriv.h"
      21             : 
      22             : #define DEBUGLEVEL DEBUGLEVEL_nf
      23             : 
      24             : /* allow p = -1 from factorizations, avoid oo loop on p = 1 */
      25             : static long
      26       12018 : safe_Z_pvalrem(GEN x, GEN p, GEN *z)
      27             : {
      28       12018 :   if (is_pm1(p))
      29             :   {
      30          24 :     if (signe(p) > 0) return gvaluation(x,p); /*error*/
      31          18 :     *z = absi(x); return 1;
      32             :   }
      33       11994 :   return Z_pvalrem(x, p, z);
      34             : }
      35             : /* D an integer, P a ZV, return a factorization matrix for D over P, removing
      36             :  * entries with 0 exponent. */
      37             : static GEN
      38        3462 : fact_from_factors(GEN D, GEN P, long flag)
      39             : {
      40        3462 :   long i, l = lg(P), iq = 1;
      41        3462 :   GEN Q = cgetg(l+1,t_COL);
      42        3462 :   GEN E = cgetg(l+1,t_COL);
      43       15474 :   for (i=1; i<l; i++)
      44             :   {
      45       12018 :     GEN p = gel(P,i);
      46             :     long k;
      47       12018 :     if (flag && !equalim1(p))
      48             :     {
      49          12 :       p = gcdii(p, D);
      50          12 :       if (is_pm1(p)) continue;
      51             :     }
      52       12018 :     k = safe_Z_pvalrem(D, p, &D);
      53       12012 :     if (k) { gel(Q,iq) = p; gel(E,iq) = utoipos(k); iq++; }
      54             :   }
      55        3456 :   D = absi_shallow(D);
      56        3456 :   if (!equali1(D))
      57             :   {
      58         696 :     long k = Z_isanypower(D, &D);
      59         696 :     if (!k) k = 1;
      60         696 :     gel(Q,iq) = D; gel(E,iq) = utoipos(k); iq++;
      61             :   }
      62        3456 :   setlg(Q,iq);
      63        3456 :   setlg(E,iq); return mkmat2(Q,E);
      64             : }
      65             : 
      66             : /* d a t_INT; f a t_MAT factorisation of some t_INT sharing some divisors
      67             :  * with d, or a prime (t_INT). Return a factorization F of d: "primes"
      68             :  * entries in f _may_ be composite, and are included as is in d. */
      69             : static GEN
      70        2023 : update_fact(GEN d, GEN f)
      71             : {
      72             :   GEN P;
      73        2023 :   switch (typ(f))
      74             :   {
      75        2011 :     case t_INT: case t_VEC: case t_COL: return f;
      76          12 :     case t_MAT:
      77          12 :       if (lg(f) == 3) { P = gel(f,1); break; }
      78             :     /*fall through*/
      79             :     default:
      80           6 :       pari_err_TYPE("nfbasis [factorization expected]",f);
      81             :       return NULL;/*LCOV_EXCL_LINE*/
      82             :   }
      83           6 :   return fact_from_factors(d, P, 1);
      84             : }
      85             : 
      86             : /* T = C T0(X/L); C = L^d / lt(T0), d = deg(T)
      87             :  * disc T = C^2(d - 1) L^-(d(d-1)) disc T0 = (L^d / lt(T0)^2)^(d-1) disc T0 */
      88             : static GEN
      89      697011 : set_disc(nfmaxord_t *S)
      90             : {
      91             :   GEN L, dT;
      92             :   long d;
      93      697011 :   if (S->T0 == S->T) return ZX_disc(S->T);
      94      213630 :   d = degpol(S->T0);
      95      213630 :   L = S->unscale;
      96      213630 :   if (typ(L) == t_FRAC && abscmpii(gel(L,1), gel(L,2)) < 0)
      97       10101 :     dT = ZX_disc(S->T); /* more efficient */
      98             :   else
      99             :   {
     100      203529 :     GEN l0 = leading_coeff(S->T0);
     101      203529 :     GEN a = gpowgs(gdiv(gpowgs(L, d), sqri(l0)), d-1);
     102      203529 :     dT = gmul(a, ZX_disc(S->T0)); /* more efficient */
     103             :   }
     104      213630 :   return S->dT = dT;
     105             : }
     106             : 
     107             : /* dT != 0 */
     108             : static GEN
     109      676143 : poldiscfactors_i(GEN T, GEN dT, long flag)
     110             : {
     111             :   GEN U, fa, Z, E, P, Tp;
     112             :   long i, l;
     113             : 
     114      676143 :   fa = absZ_factor_limit_strict(dT, minuu(tridiv_bound(dT), maxprime()), &U);
     115      676143 :   if (!U) return fa;
     116         667 :   Z = mkcol(gel(U,1)); P = gel(fa,1); Tp = NULL;
     117        1442 :   while (lg(Z) != 1)
     118             :   { /* pop and handle last element of Z */
     119         775 :     GEN p = veclast(Z), r;
     120         775 :     setlg(Z, lg(Z)-1);
     121         775 :     if (!Tp) /* first time: p is composite and not a power */
     122         667 :       Tp = ZX_deriv(T);
     123             :     else
     124             :     {
     125         108 :       (void)Z_isanypower(p, &p);
     126         108 :       if ((flag || lgefint(p)==3) && BPSW_psp(p))
     127          82 :       { P = vec_append(P, p); continue; }
     128             :     }
     129         693 :     r = FpX_gcd_check(T, Tp, p);
     130         693 :     if (r)
     131          54 :       Z = shallowconcat(Z, Z_cba(r, diviiexact(p,r)));
     132         639 :     else if (flag)
     133           6 :       P = shallowconcat(P, gel(Z_factor(p),1));
     134             :     else
     135         633 :       P = vec_append(P, p);
     136             :   }
     137         667 :   ZV_sort_inplace(P); l = lg(P); E = cgetg(l, t_COL);
     138        6079 :   for (i = 1; i < l; i++) gel(E,i) = utoipos(Z_pvalrem(dT, gel(P,i), &dT));
     139         667 :   return mkmat2(P,E);
     140             : }
     141             : 
     142             : GEN
     143          36 : poldiscfactors(GEN T, long flag)
     144             : {
     145          36 :   pari_sp av = avma;
     146             :   GEN dT;
     147          36 :   if (typ(T) != t_POL || !RgX_is_ZX(T)) pari_err_TYPE("poldiscfactors",T);
     148          36 :   if (flag < 0 || flag > 1) pari_err_FLAG("poldiscfactors");
     149          36 :   dT = ZX_disc(T);
     150          36 :   if (!signe(dT)) retmkvec2(gen_0, Z_factor(gen_0));
     151          30 :   return gerepilecopy(av, mkvec2(dT, poldiscfactors_i(T, dT, flag)));
     152             : }
     153             : 
     154             : static void
     155      697011 : nfmaxord_check_args(nfmaxord_t *S, GEN T, long flag)
     156             : {
     157      697011 :   GEN dT, L, E, P, fa = NULL;
     158             :   pari_timer t;
     159      697011 :   long l, ty = typ(T);
     160             : 
     161      697011 :   if (DEBUGLEVEL) timer_start(&t);
     162      697011 :   if (ty == t_VEC) {
     163       20898 :     if (lg(T) != 3) pari_err_TYPE("nfmaxord",T);
     164       20898 :     fa = gel(T,2); T = gel(T,1); ty = typ(T);
     165             :   }
     166      697011 :   if (ty != t_POL) pari_err_TYPE("nfmaxord",T);
     167      697011 :   T = Q_primpart(T);
     168      697011 :   if (degpol(T) <= 0) pari_err_CONSTPOL("nfmaxord");
     169      697011 :   RgX_check_ZX(T, "nfmaxord");
     170      697011 :   S->T0 = T;
     171      697011 :   S->T = T = ZX_Q_normalize(T, &L);
     172      697011 :   S->unscale = L;
     173      697011 :   S->dT = dT = set_disc(S);
     174      697011 :   S->certify = 1;
     175      697011 :   if (!signe(dT)) pari_err_IRREDPOL("nfmaxord",T);
     176      697011 :   if (fa)
     177             :   {
     178       20898 :     const long MIN = 100; /* include at least all p < 101 */
     179       20898 :     GEN P0 = NULL, U;
     180       20898 :     S->certify = 0;
     181       20898 :     if (!isint1(L)) fa = update_fact(dT, fa);
     182       20892 :     switch(typ(fa))
     183             :     {
     184         192 :       case t_MAT:
     185         192 :         if (!is_Z_factornon0(fa)) pari_err_TYPE("nfmaxord",fa);
     186         186 :         P0 = gel(fa,1); /* fall through */
     187        3456 :       case t_VEC: case t_COL:
     188        3456 :         if (!P0)
     189             :         {
     190        3270 :           if (!RgV_is_ZV(fa)) pari_err_TYPE("nfmaxord",fa);
     191        3270 :           P0 = fa;
     192             :         }
     193        3456 :         P = gel(absZ_factor_limit_strict(dT, MIN, &U), 1);
     194        3456 :         if (lg(P) != 0) { settyp(P, typ(P0)); P0 = shallowconcat(P0,P); }
     195        3456 :         P0 = ZV_sort_uniq_shallow(P0);
     196        3456 :         fa = fact_from_factors(dT, P0, 0);
     197        3450 :         break;
     198       17424 :       case t_INT:
     199       17424 :         fa = absZ_factor_limit(dT, (signe(fa) <= 0)? 1: maxuu(itou(fa), MIN));
     200       17424 :         break;
     201           6 :       default:
     202           6 :         pari_err_TYPE("nfmaxord",fa);
     203             :     }
     204             :   }
     205             :   else
     206             :   {
     207      676113 :     S->certify = !(flag & nf_PARTIALFACT);
     208      676113 :     fa = poldiscfactors_i(T, dT, 0);
     209             :   }
     210      696987 :   P = gel(fa,1); l = lg(P);
     211      696987 :   E = gel(fa,2);
     212      696987 :   if (l > 1 && is_pm1(gel(P,1)))
     213             :   {
     214          18 :     l--;
     215          18 :     P = vecslice(P, 2, l);
     216          18 :     E = vecslice(E, 2, l);
     217             :   }
     218      696987 :   S->dTP = P;
     219      696987 :   S->dTE = vec_to_vecsmall(E);
     220      696987 :   if (DEBUGLEVEL>2) timer_printf(&t, "disc. factorisation");
     221      696987 : }
     222             : 
     223             : static int
     224      189834 : fnz(GEN x,long j)
     225             : {
     226             :   long i;
     227      608521 :   for (i=1; i<j; i++)
     228      462051 :     if (signe(gel(x,i))) return 0;
     229      146470 :   return 1;
     230             : }
     231             : /* return list u[i], 2 by 2 coprime with the same prime divisors as ab */
     232             : static GEN
     233         252 : get_coprimes(GEN a, GEN b)
     234             : {
     235         252 :   long i, k = 1;
     236         252 :   GEN u = cgetg(3, t_COL);
     237         252 :   gel(u,1) = a;
     238         252 :   gel(u,2) = b;
     239             :   /* u1,..., uk 2 by 2 coprime */
     240         918 :   while (k+1 < lg(u))
     241             :   {
     242         666 :     GEN d, c = gel(u,k+1);
     243         666 :     if (is_pm1(c)) { k++; continue; }
     244        1122 :     for (i=1; i<=k; i++)
     245             :     {
     246         720 :       GEN ui = gel(u,i);
     247         720 :       if (is_pm1(ui)) continue;
     248         414 :       d = gcdii(c, ui);
     249         414 :       if (d == gen_1) continue;
     250         414 :       c = diviiexact(c, d);
     251         414 :       gel(u,i) = diviiexact(ui, d);
     252         414 :       u = vec_append(u, d);
     253             :     }
     254         402 :     gel(u,++k) = c;
     255             :   }
     256        1170 :   for (i = k = 1; i < lg(u); i++)
     257         918 :     if (!is_pm1(gel(u,i))) gel(u,k++) = gel(u,i);
     258         252 :   setlg(u, k); return u;
     259             : }
     260             : 
     261             : /*******************************************************************/
     262             : /*                                                                 */
     263             : /*                            ROUND 4                              */
     264             : /*                                                                 */
     265             : /*******************************************************************/
     266             : typedef struct {
     267             :   /* constants */
     268             :   long pisprime; /* -1: unknown, 1: prime,  0: composite */
     269             :   GEN p, f; /* goal: factor f p-adically */
     270             :   long df;
     271             :   GEN pdf; /* p^df = reduced discriminant of f */
     272             :   long mf; /* */
     273             :   GEN psf, pmf; /* stability precision for f, wanted precision for f */
     274             :   long vpsf; /* v_p(p_f) */
     275             :   /* these are updated along the way */
     276             :   GEN phi; /* a p-integer, in Q[X] */
     277             :   GEN phi0; /* a p-integer, in Q[X] from testb2 / testc2, to be composed with
     278             :              * phi when correct precision is known */
     279             :   GEN chi; /* characteristic polynomial of phi (mod psc) in Z[X] */
     280             :   GEN nu; /* irreducible divisor of chi mod p, in Z[X] */
     281             :   GEN invnu; /* numerator ( 1/ Mod(nu, chi) mod pmr ) */
     282             :   GEN Dinvnu;/* denominator ( ... ) */
     283             :   long vDinvnu; /* v_p(Dinvnu) */
     284             :   GEN prc, psc; /* reduced discriminant of chi, stability precision for chi */
     285             :   long vpsc; /* v_p(p_c) */
     286             :   GEN ns, nsf, precns; /* cached Newton sums for nsf and their precision */
     287             : } decomp_t;
     288             : static GEN maxord_i(decomp_t *S, GEN p, GEN f, long mf, GEN w, long flag);
     289             : static GEN dbasis(GEN p, GEN f, long mf, GEN alpha, GEN U);
     290             : static GEN maxord(GEN p,GEN f,long mf);
     291             : static GEN ZX_Dedekind(GEN F, GEN *pg, GEN p);
     292             : 
     293             : static void
     294         427 : fix_PE(GEN *pP, GEN *pE, long i, GEN u, GEN N)
     295             : {
     296             :   GEN P, E;
     297         427 :   long k, l = lg(u), lP = lg(*pP);
     298             :   pari_sp av;
     299             : 
     300         427 :   *pP = P = shallowconcat(*pP, vecslice(u, 2, l-1));
     301         427 :   *pE = E = vecsmall_lengthen(*pE, lP + l-2);
     302         427 :   gel(P,i) = gel(u,1); av = avma;
     303         427 :   E[i] = Z_pvalrem(N, gel(P,i), &N);
     304         860 :   for (k=lP, lP=lg(P); k < lP; k++) E[k] = Z_pvalrem(N, gel(P,k), &N);
     305         427 :   set_avma(av);
     306         427 : }
     307             : static long
     308      587887 : diag_denomval(GEN M, GEN p)
     309             : {
     310             :   long j, v, l;
     311      587887 :   if (typ(M) != t_MAT) return 0;
     312      397222 :   v = 0; l = lg(M);
     313     1776668 :   for (j=1; j<l; j++)
     314             :   {
     315     1379446 :     GEN t = gcoeff(M,j,j);
     316     1379446 :     if (typ(t) == t_FRAC) v += Z_pval(gel(t,2), p);
     317             :   }
     318      397222 :   return v;
     319             : }
     320             : 
     321             : /* n > 1 is composite, not a pure power, and has no prime divisor < 2^14;
     322             :  * return a BPSW divisor of n and smallest k-th root of largest coprime cofactor */
     323             : static GEN
     324         157 : Z_fac(GEN n)
     325             : {
     326         157 :   GEN p = icopy(n), part = ifac_start(p, 0);
     327             :   long e;
     328         157 :   ifac_next(&part, &p, &e); n = diviiexact(n, powiu(p, e));
     329         157 :   (void)Z_isanypower(n, &n); return mkvec2(p, n);
     330             : }
     331             : 
     332             : /* Warning: data computed for T = ZX_Q_normalize(T0). If S.unscale !=
     333             :  * gen_1, caller must take steps to correct the components if it wishes
     334             :  * to stick to the original T0. Return a vector of p-maximal orders, for
     335             :  * those p s.t p^2 | disc(T) [ = S->dTP ]*/
     336             : static GEN
     337      697011 : get_maxord(nfmaxord_t *S, GEN T0, long flag)
     338             : {
     339             :   GEN P, E;
     340             :   VOLATILE GEN O;
     341             :   VOLATILE long lP, i, k;
     342             : 
     343      697011 :   nfmaxord_check_args(S, T0, flag);
     344      696987 :   P = S->dTP; lP = lg(P);
     345      696987 :   E = S->dTE;
     346      696987 :   O = cgetg(1, t_VEC);
     347     2695644 :   for (i=1; i<lP; i++)
     348             :   {
     349             :     VOLATILE pari_sp av;
     350             :     /* includes the silly case where P[i] = -1 */
     351     1998657 :     if (E[i] <= 1)
     352             :     {
     353     1117384 :       if (S->certify)
     354             :       {
     355     1110364 :         GEN p = gel(P,i);
     356     1110364 :         if (signe(p) > 0 && !BPSW_psp(p))
     357             :         {
     358         157 :           fix_PE(&P, &E, i, Z_fac(p), S->dT);
     359         157 :           lP = lg(P); i--; continue;
     360             :         }
     361             :       }
     362     1117227 :       O = vec_append(O, gen_1); continue;
     363             :     }
     364      881273 :     av = avma;
     365      881273 :     pari_CATCH(CATCH_ALL) {
     366         252 :       GEN u, err = pari_err_last();
     367             :       long l;
     368         252 :       switch(err_get_num(err))
     369             :       {
     370         252 :         case e_INV:
     371             :         {
     372         252 :           GEN p, x = err_get_compo(err, 2);
     373         252 :           if (typ(x) == t_INTMOD)
     374             :           { /* caught false prime, update factorization */
     375         252 :             p = gcdii(gel(x,1), gel(x,2));
     376         252 :             u = diviiexact(gel(x,1),p);
     377         252 :             if (DEBUGLEVEL) pari_warn(warner,"impossible inverse: %Ps", x);
     378         252 :             gerepileall(av, 2, &p, &u);
     379             : 
     380         252 :             u = get_coprimes(p, u); l = lg(u);
     381             :             /* no small factors, but often a prime power */
     382         756 :             for (k = 1; k < l; k++) (void)Z_isanypower(gel(u,k), &gel(u,k));
     383         252 :             break;
     384             :           }
     385             :           /* fall through */
     386             :         }
     387             :         case e_PRIME: case e_IRREDPOL:
     388             :         { /* we're here because we failed BPSW_isprime(), no point in
     389             :            * reporting a possible counter-example to the BPSW test */
     390           0 :           GEN p = gel(P,i);
     391           0 :           set_avma(av);
     392           0 :           if (DEBUGLEVEL)
     393           0 :             pari_warn(warner,"large composite in nfmaxord:loop(), %Ps", p);
     394           0 :           if (expi(p) < 100)
     395           0 :             u = gel(Z_factor(p), 1); /* p < 2^100 should take ~20ms */
     396           0 :           else if (S->certify)
     397           0 :             u = Z_fac(p);
     398             :           else
     399           0 :           { /* give up, probably not maximal */
     400           0 :             GEN B, g, k = ZX_Dedekind(S->T, &g, p);
     401           0 :             k = FpX_normalize(k, p);
     402           0 :             B = dbasis(p, S->T, E[i], NULL, FpX_div(S->T,k,p));
     403           0 :             O = vec_append(O, B);
     404           0 :             pari_CATCH_reset(); continue;
     405             :           }
     406           0 :           break;
     407             :         }
     408           0 :         default: pari_err(0, err);
     409             :           return NULL;/*LCOV_EXCL_LINE*/
     410             :       }
     411         252 :       fix_PE(&P, &E, i, u, S->dT);
     412         252 :       lP = lg(P); av = avma;
     413      881525 :     } pari_RETRY {
     414      881525 :       GEN p = gel(P,i), O2;
     415      881525 :       if (DEBUGLEVEL>2) err_printf("Treating p^k = %Ps^%ld\n",p,E[i]);
     416      881525 :       O2 = maxord(p,S->T,E[i]);
     417      881273 :       if (S->certify && (odd(E[i]) || E[i] != 2*diag_denomval(O2, p))
     418      522933 :                      && !BPSW_psp(p))
     419             :       {
     420          18 :         fix_PE(&P, &E, i, gel(Z_factor(p), 1), S->dT);
     421          18 :         lP = lg(P); i--;
     422             :       }
     423             :       else
     424      881255 :         O = vec_append(O, O2);
     425      881273 :     } pari_ENDCATCH;
     426             :   }
     427      696987 :   S->dTP = P; S->dTE = E; return O;
     428             : }
     429             : 
     430             : /* M a QM, return denominator of diagonal. All denominators are powers of
     431             :  * a given integer */
     432             : static GEN
     433       85376 : diag_denom(GEN M)
     434             : {
     435       85376 :   GEN d = gen_1;
     436       85376 :   long j, l = lg(M);
     437      595537 :   for (j=1; j<l; j++)
     438             :   {
     439      510161 :     GEN t = gcoeff(M,j,j);
     440      510161 :     if (typ(t) == t_INT) continue;
     441      181824 :     t = gel(t,2);
     442      181824 :     if (abscmpii(t,d) > 0) d = t;
     443             :   }
     444       85376 :   return d;
     445             : }
     446             : static void
     447      640041 : setPE(GEN D, GEN P, GEN *pP, GEN *pE)
     448             : {
     449      640041 :   long k, j, l = lg(P);
     450             :   GEN P2, E2;
     451      640041 :   *pP = P2 = cgetg(l, t_VEC);
     452      640041 :   *pE = E2 = cgetg(l, t_VECSMALL);
     453     2460747 :   for (k = j = 1; j < l; j++)
     454             :   {
     455     1820706 :     long v = Z_pvalrem(D, gel(P,j), &D);
     456     1820706 :     if (v) { gel(P2,k) = gel(P,j); E2[k] = v; k++; }
     457             :   }
     458      640041 :   setlg(P2, k);
     459      640041 :   setlg(E2, k);
     460      640041 : }
     461             : void
     462       87363 : nfmaxord(nfmaxord_t *S, GEN T0, long flag)
     463             : {
     464       87363 :   GEN O = get_maxord(S, T0, flag);
     465       87357 :   GEN f = S->T, P = S->dTP, a = NULL, da = NULL;
     466       87357 :   long n = degpol(f), lP = lg(P), i, j, k;
     467       87357 :   int centered = 0;
     468       87357 :   pari_sp av = avma;
     469             :   /* r1 & basden not initialized here */
     470       87357 :   S->r1 = -1;
     471       87357 :   S->basden = NULL;
     472      305877 :   for (i=1; i<lP; i++)
     473             :   {
     474      218520 :     GEN M, db, b = gel(O,i);
     475      218520 :     if (b == gen_1) continue;
     476       85376 :     db = diag_denom(b);
     477       85376 :     if (db == gen_1) continue;
     478             : 
     479             :     /* db = denom(b), (da,db) = 1. Compute da Im(b) + db Im(a) */
     480       85376 :     b = Q_muli_to_int(b,db);
     481       85376 :     if (!da) { da = db; a = b; }
     482             :     else
     483             :     { /* optimization: easy as long as both matrix are diagonal */
     484      115312 :       j=2; while (j<=n && fnz(gel(a,j),j) && fnz(gel(b,j),j)) j++;
     485       43376 :       k = j-1; M = cgetg(2*n-k+1,t_MAT);
     486      158688 :       for (j=1; j<=k; j++)
     487             :       {
     488      115312 :         gel(M,j) = gel(a,j);
     489      115312 :         gcoeff(M,j,j) = mulii(gcoeff(a,j,j),gcoeff(b,j,j));
     490             :       }
     491             :       /* could reduce mod M(j,j) but not worth it: usually close to da*db */
     492      239319 :       for (  ; j<=n;     j++) gel(M,j) = ZC_Z_mul(gel(a,j), db);
     493      239319 :       for (  ; j<=2*n-k; j++) gel(M,j) = ZC_Z_mul(gel(b,j+k-n), da);
     494       43376 :       da = mulii(da,db);
     495       43376 :       a = ZM_hnfmodall_i(M, da, hnf_MODID|hnf_CENTER);
     496       43376 :       gerepileall(av, 2, &a, &da);
     497       43376 :       centered = 1;
     498             :     }
     499             :   }
     500       87357 :   if (da)
     501             :   {
     502       42000 :     GEN index = diviiexact(da, gcoeff(a,1,1));
     503      198906 :     for (j=2; j<=n; j++) index = mulii(index, diviiexact(da, gcoeff(a,j,j)));
     504       42000 :     if (!centered) a = ZM_hnfcenter(a);
     505       42000 :     a = RgM_Rg_div(a, da);
     506       42000 :     S->index = index;
     507       42000 :     S->dK = diviiexact(S->dT, sqri(index));
     508             :   }
     509             :   else
     510             :   {
     511       45357 :     S->index = gen_1;
     512       45357 :     S->dK = S->dT;
     513       45357 :     a = matid(n);
     514             :   }
     515       87357 :   setPE(S->dK, P, &S->dKP, &S->dKE);
     516       87357 :   S->basis = RgM_to_RgXV(a, varn(f));
     517       87357 : }
     518             : GEN
     519         804 : nfbasis(GEN x, GEN *pdK)
     520             : {
     521         804 :   pari_sp av = avma;
     522             :   nfmaxord_t S;
     523             :   GEN B;
     524         804 :   nfmaxord(&S, x, 0);
     525         804 :   B = RgXV_unscale(S.basis, S.unscale);
     526         804 :   if (pdK) *pdK = S.dK;
     527         804 :   return gc_all(av, pdK? 2: 1, &B, pdK);
     528             : }
     529             : /* field discriminant: faster than nfmaxord, use local data only */
     530             : static GEN
     531      609648 : maxord_disc(nfmaxord_t *S, GEN x)
     532             : {
     533      609648 :   GEN O = get_maxord(S, x, 0), I = gen_1;
     534      609630 :   long n = degpol(S->T), lP = lg(O), i, j;
     535     2389592 :   for (i = 1; i < lP; i++)
     536             :   {
     537     1779962 :     GEN b = gel(O,i);
     538     1779962 :     if (b == gen_1) continue;
     539     2321197 :     for (j = 1; j <= n; j++)
     540             :     {
     541     1814048 :       GEN c = gcoeff(b,j,j);
     542     1814048 :       if (typ(c) == t_FRAC) I = mulii(I, gel(c,2)) ;
     543             :     }
     544             :   }
     545      609630 :   return diviiexact(S->dT, sqri(I));
     546             : }
     547             : GEN
     548       56970 : nfdisc(GEN x)
     549             : {
     550       56970 :   pari_sp av = avma;
     551             :   nfmaxord_t S;
     552       56970 :   return gerepileuptoint(av, maxord_disc(&S, x));
     553             : }
     554             : GEN
     555      552684 : nfdiscfactors(GEN x)
     556             : {
     557      552684 :   pari_sp av = avma;
     558      552684 :   GEN E, P, D, nf = checknf_i(x);
     559      552684 :   if (nf)
     560             :   {
     561           6 :     D = nf_get_disc(nf);
     562           6 :     P = nf_get_ramified_primes(nf);
     563             :   }
     564             :   else
     565             :   {
     566             :     nfmaxord_t S;
     567      552678 :     D = maxord_disc(&S, x);
     568      552678 :     P = S.dTP;
     569             :   }
     570      552684 :   setPE(D, P, &P, &E); settyp(P, t_COL);
     571      552684 :   return gerepilecopy(av, mkvec2(D, mkmat2(P, zc_to_ZC(E))));
     572             : }
     573             : 
     574             : static ulong
     575     1371600 : Flx_checkdeflate(GEN x)
     576             : {
     577     1371600 :   ulong d = 0, i, lx = (ulong)lg(x);
     578     2192053 :   for (i=3; i<lx; i++)
     579     1465307 :     if (x[i]) { d = ugcd(d,i-2); if (d == 1) break; }
     580     1371600 :   return d;
     581             : }
     582             : 
     583             : /* product of (monic) irreducible factors of f over Fp[X]
     584             :  * Assume f reduced mod p, otherwise valuation at x may be wrong */
     585             : static GEN
     586     1371600 : Flx_radical(GEN f, ulong p)
     587             : {
     588     1371600 :   long v0 = Flx_valrem(f, &f);
     589             :   ulong du, d, e;
     590             :   GEN u;
     591             : 
     592     1371600 :   d = Flx_checkdeflate(f);
     593     1371600 :   if (!d) return v0? polx_Flx(f[1]): pol1_Flx(f[1]);
     594      859877 :   if (u_lvalrem(d,p, &e)) f = Flx_deflate(f, d/e); /* f(x^p^i) -> f(x) */
     595      859877 :   u = Flx_gcd(f, Flx_deriv(f, p), p); /* (f,f') */
     596      859872 :   du = degpol(u);
     597      859872 :   if (du)
     598             :   {
     599      270829 :     if (du == (ulong)degpol(f))
     600           0 :       f = Flx_radical(Flx_deflate(f,p), p);
     601             :     else
     602             :     {
     603      270829 :       u = Flx_normalize(u, p);
     604      270829 :       f = Flx_div(f, u, p);
     605      270829 :       if (p <= du)
     606             :       {
     607       57164 :         GEN w = (degpol(f) >= degpol(u))? Flx_rem(f, u, p): f;
     608       57164 :         w = Flxq_powu(w, du, u, p);
     609       57164 :         w = Flx_div(u, Flx_gcd(w,u,p), p); /* u / gcd(u, v^(deg u-1)) */
     610       57164 :         f = Flx_mul(f, Flx_radical(Flx_deflate(w,p), p), p);
     611             :       }
     612             :     }
     613             :   }
     614      859872 :   if (v0) f = Flx_shift(f, 1);
     615      859872 :   return f;
     616             : }
     617             : /* Assume f reduced mod p, otherwise valuation at x may be wrong */
     618             : static GEN
     619        4969 : FpX_radical(GEN f, GEN p)
     620             : {
     621             :   GEN u;
     622             :   long v0;
     623        4969 :   if (lgefint(p) == 3)
     624             :   {
     625        1566 :     ulong q = p[2];
     626        1566 :     return Flx_to_ZX( Flx_radical(ZX_to_Flx(f, q), q) );
     627             :   }
     628        3403 :   v0 = ZX_valrem(f, &f);
     629        3403 :   u = FpX_gcd(f,FpX_deriv(f, p), p);
     630        3156 :   if (degpol(u)) f = FpX_div(f, u, p);
     631        3156 :   if (v0) f = RgX_shift(f, 1);
     632        3156 :   return f;
     633             : }
     634             : /* f / a */
     635             : static GEN
     636     1312870 : zx_z_div(GEN f, ulong a)
     637             : {
     638     1312870 :   long i, l = lg(f);
     639     1312870 :   GEN g = cgetg(l, t_VECSMALL);
     640     1312870 :   g[1] = f[1];
     641     4444293 :   for (i = 2; i < l; i++) g[i] = f[i] / a;
     642     1312870 :   return g;
     643             : }
     644             : /* Dedekind criterion; return k = gcd(g,h, (f-gh)/p), where
     645             :  *   f = \prod f_i^e_i, g = \prod f_i, h = \prod f_i^{e_i-1}
     646             :  * k = 1 iff Z[X]/(f) is p-maximal */
     647             : static GEN
     648     1317839 : ZX_Dedekind(GEN F, GEN *pg, GEN p)
     649             : {
     650             :   GEN k, h, g, f, f2;
     651     1317839 :   ulong q = p[2];
     652     1317839 :   if (lgefint(p) == 3 && q < (1UL << BITS_IN_HALFULONG))
     653     1312870 :   {
     654     1312870 :     ulong q2 = q*q;
     655     1312870 :     f2 = ZX_to_Flx(F, q2);
     656     1312870 :     f = Flx_red(f2, q);
     657     1312870 :     g = Flx_radical(f, q);
     658     1312870 :     h = Flx_div(f, g, q);
     659     1312870 :     k = zx_z_div(Flx_sub(f2, Flx_mul(g,h,q2), q2), q);
     660     1312870 :     k = Flx_gcd(k, Flx_gcd(g,h,q), q);
     661     1312870 :     k = Flx_to_ZX(k);
     662     1312870 :     g = Flx_to_ZX(g);
     663             :   }
     664             :   else
     665             :   {
     666        4969 :     f2 = FpX_red(F, sqri(p));
     667        4969 :     f = FpX_red(f2, p);
     668        4969 :     g = FpX_radical(f, p);
     669        4717 :     h = FpX_div(f, g, p);
     670        4717 :     k = ZX_Z_divexact(ZX_sub(f2, ZX_mul(g,h)), p);
     671        4717 :     k = FpX_gcd(FpX_red(k, p), FpX_gcd(g,h,p), p);
     672             :   }
     673     1317587 :   *pg = g; return k;
     674             : }
     675             : 
     676             : /* p-maximal order of Z[x]/f; mf = v_p(Disc(f)) or < 0 [unknown].
     677             :  * Return gen_1 if p-maximal */
     678             : static GEN
     679     1317839 : maxord(GEN p, GEN f, long mf)
     680             : {
     681     1317839 :   const pari_sp av = avma;
     682     1317839 :   GEN res, g, k = ZX_Dedekind(f, &g, p);
     683     1317587 :   long dk = degpol(k);
     684     1317587 :   if (DEBUGLEVEL>2) err_printf("  ZX_Dedekind: gcd has degree %ld\n", dk);
     685     1317587 :   if (!dk) { set_avma(av); return gen_1; }
     686      749800 :   if (mf < 0) mf = ZpX_disc_val(f, p);
     687      749800 :   k = FpX_normalize(k, p);
     688      749800 :   if (2*dk >= mf-1)
     689      360444 :     res = dbasis(p, f, mf, NULL, FpX_div(f,k,p));
     690             :   else
     691             :   {
     692             :     GEN w, F1, F2;
     693             :     decomp_t S;
     694      389356 :     F1 = FpX_factor(k,p);
     695      389356 :     F2 = FpX_factor(FpX_div(g,k,p),p);
     696      389356 :     w = merge_sort_uniq(gel(F1,1),gel(F2,1),(void*)cmpii,&gen_cmp_RgX);
     697      389356 :     res = maxord_i(&S, p, f, mf, w, 0);
     698             :   }
     699      749800 :   return gerepilecopy(av,res);
     700             : }
     701             : /* T monic separable ZX, p prime */
     702             : GEN
     703           0 : ZpX_primedec(GEN T, GEN p)
     704             : {
     705           0 :   const pari_sp av = avma;
     706           0 :   GEN w, F1, F2, res, g, k = ZX_Dedekind(T, &g, p);
     707             :   decomp_t S;
     708           0 :   if (!degpol(k)) return zm_to_ZM(FpX_degfact(T, p));
     709           0 :   k = FpX_normalize(k, p);
     710           0 :   F1 = FpX_factor(k,p);
     711           0 :   F2 = FpX_factor(FpX_div(g,k,p),p);
     712           0 :   w = merge_sort_uniq(gel(F1,1),gel(F2,1),(void*)cmpii,&gen_cmp_RgX);
     713           0 :   res = maxord_i(&S, p, T, ZpX_disc_val(T, p), w, -1);
     714           0 :   if (!res)
     715             :   {
     716           0 :     long f = degpol(S.nu), e = degpol(T) / f;
     717           0 :     set_avma(av); retmkmat2(mkcols(f), mkcols(e));
     718             :   }
     719           0 :   return gerepilecopy(av,res);
     720             : }
     721             : 
     722             : static GEN
     723     3997043 : Zlx_sylvester_echelon(GEN f1, GEN f2, long early_abort, ulong p, ulong pm)
     724             : {
     725     3997043 :   long j, n = degpol(f1);
     726     3997043 :   GEN h, a = cgetg(n+1,t_MAT);
     727     3997043 :   f1 = Flx_get_red(f1, pm);
     728     3997043 :   h = Flx_rem(f2,f1,pm);
     729    14028313 :   for (j=1;; j++)
     730             :   {
     731    14028313 :     gel(a,j) = Flx_to_Flv(h, n);
     732    14028313 :     if (j == n) break;
     733    10031270 :     h = Flx_rem(Flx_shift(h, 1), f1, pm);
     734             :   }
     735     3997043 :   return zlm_echelon(a, early_abort, p, pm);
     736             : }
     737             : /* Sylvester's matrix, mod p^m (assumes f1 monic). If early_abort
     738             :  * is set, return NULL if one pivot is 0 mod p^m */
     739             : static GEN
     740       71387 : ZpX_sylvester_echelon(GEN f1, GEN f2, long early_abort, GEN p, GEN pm)
     741             : {
     742       71387 :   long j, n = degpol(f1);
     743       71387 :   GEN h, a = cgetg(n+1,t_MAT);
     744       71387 :   h = FpXQ_red(f2,f1,pm);
     745      389778 :   for (j=1;; j++)
     746             :   {
     747      389778 :     gel(a,j) = RgX_to_RgC(h, n);
     748      389778 :     if (j == n) break;
     749      318391 :     h = FpX_rem(RgX_shift_shallow(h, 1), f1, pm);
     750             :   }
     751       71387 :   return ZpM_echelon(a, early_abort, p, pm);
     752             : }
     753             : 
     754             : /* polynomial gcd mod p^m (assumes f1 monic). Return a QpX ! */
     755             : static GEN
     756      210714 : Zlx_gcd(GEN f1, GEN f2, ulong p, ulong pm)
     757             : {
     758      210714 :   pari_sp av = avma;
     759      210714 :   GEN a = Zlx_sylvester_echelon(f1,f2,0,p,pm);
     760      210714 :   long c, l = lg(a), sv = f1[1];
     761      644697 :   for (c = 1; c < l; c++)
     762             :   {
     763      644697 :     ulong t = ucoeff(a,c,c);
     764      644697 :     if (t)
     765             :     {
     766      210714 :       a = Flx_to_ZX(Flv_to_Flx(gel(a,c), sv));
     767      210714 :       if (t == 1) return gerepilecopy(av, a);
     768       64045 :       return gerepileupto(av, RgX_Rg_div(a, utoipos(t)));
     769             :     }
     770             :   }
     771           0 :   set_avma(av);
     772           0 :   a = cgetg(2,t_POL); a[1] = sv; return a;
     773             : }
     774             : GEN
     775      218415 : ZpX_gcd(GEN f1, GEN f2, GEN p, GEN pm)
     776             : {
     777      218415 :   pari_sp av = avma;
     778             :   GEN a;
     779             :   long c, l, v;
     780      218415 :   if (lgefint(pm) == 3)
     781             :   {
     782      210714 :     ulong q = pm[2];
     783      210714 :     return Zlx_gcd(ZX_to_Flx(f1, q), ZX_to_Flx(f2,q), p[2], q);
     784             :   }
     785        7701 :   a = ZpX_sylvester_echelon(f1,f2,0,p,pm);
     786        7701 :   l = lg(a); v = varn(f1);
     787       47858 :   for (c = 1; c < l; c++)
     788             :   {
     789       47858 :     GEN t = gcoeff(a,c,c);
     790       47858 :     if (signe(t))
     791             :     {
     792        7701 :       a = RgV_to_RgX(gel(a,c), v);
     793        7701 :       if (equali1(t)) return gerepilecopy(av, a);
     794        2194 :       return gerepileupto(av, RgX_Rg_div(a, t));
     795             :     }
     796             :   }
     797           0 :   set_avma(av); return pol_0(v);
     798             : }
     799             : 
     800             : /* Return m > 0, such that p^m ~ 2^16 for initial value of m; assume p prime */
     801             : static long
     802     3758124 : init_m(GEN p)
     803             : {
     804             :   ulong pp;
     805     3758124 :   if (lgefint(p) > 3) return 1;
     806     3757124 :   pp = p[2]; /* m ~ 16 / log2(pp) */
     807     3757124 :   if (pp < 41) switch(pp)
     808             :   {
     809     1023203 :     case 2: return 16;
     810      301401 :     case 3: return 10;
     811      209966 :     case 5: return 6;
     812      131367 :     case 7: return 5;
     813      179645 :     case 11: case 13: return 4;
     814      257669 :     default: return 3;
     815             :   }
     816     1653873 :   return pp < 257? 2: 1;
     817             : }
     818             : 
     819             : /* reduced resultant mod p^m (assumes x monic) */
     820             : GEN
     821      851665 : ZpX_reduced_resultant(GEN x, GEN y, GEN p, GEN pm)
     822             : {
     823      851665 :   pari_sp av = avma;
     824             :   GEN z;
     825      851665 :   if (lgefint(pm) == 3)
     826             :   {
     827      840992 :     ulong q = pm[2];
     828      840992 :     z = Zlx_sylvester_echelon(ZX_to_Flx(x,q), ZX_to_Flx(y,q),0,p[2],q);
     829      840992 :     if (lg(z) > 1)
     830             :     {
     831      840992 :       ulong c = ucoeff(z,1,1);
     832      840992 :       if (c) return gc_utoipos(av, c);
     833             :     }
     834             :   }
     835             :   else
     836             :   {
     837       10673 :     z = ZpX_sylvester_echelon(x,y,0,p,pm);
     838       10673 :     if (lg(z) > 1)
     839             :     {
     840       10673 :       GEN c = gcoeff(z,1,1);
     841       10673 :       if (signe(c)) return gerepileuptoint(av, c);
     842             :     }
     843             :   }
     844      110328 :   set_avma(av); return gen_0;
     845             : }
     846             : /* Assume Res(f,g) divides p^M. Return Res(f, g), using dynamic p-adic
     847             :  * precision (until result is nonzero or p^M). */
     848             : GEN
     849      799269 : ZpX_reduced_resultant_fast(GEN f, GEN g, GEN p, long M)
     850             : {
     851      799269 :   GEN R, q = NULL;
     852             :   long m;
     853      799269 :   m = init_m(p); if (m < 1) m = 1;
     854       52396 :   for(;; m <<= 1) {
     855      851665 :     if (M < 2*m) break;
     856       80570 :     q = q? sqri(q): powiu(p, m); /* p^m */
     857       80570 :     R = ZpX_reduced_resultant(f,g, p, q); if (signe(R)) return R;
     858             :   }
     859      771095 :   q = powiu(p, M);
     860      771095 :   R = ZpX_reduced_resultant(f,g, p, q); return signe(R)? R: q;
     861             : }
     862             : 
     863             : /* v_p(Res(x,y) mod p^m), assumes (lc(x),p) = 1 */
     864             : static long
     865     2998350 : ZpX_resultant_val_i(GEN x, GEN y, GEN p, GEN pm)
     866             : {
     867     2998350 :   pari_sp av = avma;
     868             :   GEN z;
     869             :   long i, l, v;
     870     2998350 :   if (lgefint(pm) == 3)
     871             :   {
     872     2945337 :     ulong q = pm[2], pp = p[2];
     873     2945337 :     z = Zlx_sylvester_echelon(ZX_to_Flx(x,q), ZX_to_Flx(y,q), 1, pp, q);
     874     2945337 :     if (!z) return gc_long(av,-1); /* failure */
     875     2785430 :     v = 0; l = lg(z);
     876    11608244 :     for (i = 1; i < l; i++) v += u_lval(ucoeff(z,i,i), pp);
     877             :   }
     878             :   else
     879             :   {
     880       53013 :     z = ZpX_sylvester_echelon(x, y, 1, p, pm);
     881       53013 :     if (!z) return gc_long(av,-1); /* failure */
     882       52264 :     v = 0; l = lg(z);
     883      189697 :     for (i = 1; i < l; i++) v += Z_pval(gcoeff(z,i,i), p);
     884             :   }
     885     2837694 :   return v;
     886             : }
     887             : 
     888             : /* assume (lc(f),p) = 1; no assumption on g */
     889             : long
     890     2958855 : ZpX_resultant_val(GEN f, GEN g, GEN p, long M)
     891             : {
     892     2958855 :   pari_sp av = avma;
     893     2958855 :   GEN q = NULL;
     894             :   long v, m;
     895     2958855 :   m = init_m(p); if (m < 2) m = 2;
     896       39495 :   for(;; m <<= 1) {
     897     2998350 :     if (m > M) m = M;
     898     2998350 :     q = q? sqri(q): powiu(p, m); /* p^m */
     899     2998350 :     v = ZpX_resultant_val_i(f,g, p, q); if (v >= 0) return gc_long(av,v);
     900      160656 :     if (m == M) return gc_long(av,M);
     901             :   }
     902             : }
     903             : 
     904             : /* assume f separable and (lc(f),p) = 1 */
     905             : long
     906      158265 : ZpX_disc_val(GEN f, GEN p)
     907             : {
     908      158265 :   pari_sp av = avma;
     909             :   long v;
     910      158265 :   if (degpol(f) == 1) return 0;
     911      158265 :   v = ZpX_resultant_val(f, ZX_deriv(f), p, LONG_MAX);
     912      158265 :   return gc_long(av,v);
     913             : }
     914             : 
     915             : /* *e a ZX, *d, *z in Z, *d = p^(*vd). Simplify e / d by cancelling a
     916             :  * common factor p^v; if z!=NULL, update it by cancelling the same power of p */
     917             : static void
     918     3061053 : update_den(GEN p, GEN *e, GEN *d, long *vd, GEN *z)
     919             : {
     920             :   GEN newe;
     921     3061053 :   long ve = ZX_pvalrem(*e, p, &newe);
     922     3061053 :   if (ve) {
     923             :     GEN newd;
     924     1506341 :     long v = minss(*vd, ve);
     925     1506341 :     if (v) {
     926     1506341 :       if (v == *vd)
     927             :       { /* rare, denominator cancelled */
     928      327772 :         if (ve != v) newe = ZX_Z_mul(newe, powiu(p, ve - v));
     929      327772 :         newd = gen_1;
     930      327772 :         *vd = 0;
     931      327772 :         if (z) *z =diviiexact(*z, powiu(p, v));
     932             :       }
     933             :       else
     934             :       { /* v = ve < vd, generic case */
     935     1178569 :         GEN q = powiu(p, v);
     936     1178569 :         newd = diviiexact(*d, q);
     937     1178569 :         *vd -= v;
     938     1178569 :         if (z) *z = diviiexact(*z, q);
     939             :       }
     940     1506341 :       *e = newe;
     941     1506341 :       *d = newd;
     942             :     }
     943             :   }
     944     3061053 : }
     945             : 
     946             : /* return denominator, a power of p */
     947             : static GEN
     948     2357963 : QpX_denom(GEN x)
     949             : {
     950     2357963 :   long i, l = lg(x);
     951     2357963 :   GEN maxd = gen_1;
     952     8144661 :   for (i=2; i<l; i++)
     953             :   {
     954     5786698 :     GEN d = gel(x,i);
     955     5786698 :     if (typ(d) == t_FRAC && cmpii(gel(d,2), maxd) > 0) maxd = gel(d,2);
     956             :   }
     957     2357963 :   return maxd;
     958             : }
     959             : static GEN
     960      436314 : QpXV_denom(GEN x)
     961             : {
     962      436314 :   long l = lg(x), i;
     963      436314 :   GEN maxd = gen_1;
     964     1299537 :   for (i = 1; i < l; i++)
     965             :   {
     966      863223 :     GEN d = QpX_denom(gel(x,i));
     967      863223 :     if (cmpii(d, maxd) > 0) maxd = d;
     968             :   }
     969      436314 :   return maxd;
     970             : }
     971             : 
     972             : static GEN
     973     1494740 : QpX_remove_denom(GEN x, GEN p, GEN *pdx, long *pv)
     974             : {
     975     1494740 :   *pdx = QpX_denom(x);
     976     1494740 :   if (*pdx == gen_1) { *pv = 0; *pdx = NULL; }
     977             :   else {
     978     1086237 :     x = Q_muli_to_int(x,*pdx);
     979     1086237 :     *pv = Z_pval(*pdx, p);
     980             :   }
     981     1494740 :   return x;
     982             : }
     983             : 
     984             : /* p^v * f o g mod (T,q). q = p^vq  */
     985             : static GEN
     986      246290 : compmod(GEN p, GEN f, GEN g, GEN T, GEN q, long v)
     987             : {
     988      246290 :   GEN D = NULL, z, df, dg, qD;
     989      246290 :   long vD = 0, vdf, vdg;
     990             : 
     991      246290 :   f = QpX_remove_denom(f, p, &df, &vdf);
     992      246290 :   if (typ(g) == t_VEC) /* [num,den,v_p(den)] */
     993           0 :   { vdg = itos(gel(g,3)); dg = gel(g,2); g = gel(g,1); }
     994             :   else
     995      246290 :     g = QpX_remove_denom(g, p, &dg, &vdg);
     996      246290 :   if (df) { D = df; vD = vdf; }
     997      246290 :   if (dg) {
     998       48086 :     long degf = degpol(f);
     999       48086 :     D = mul_content(D, powiu(dg, degf));
    1000       48086 :     vD += degf * vdg;
    1001             :   }
    1002      246290 :   qD = D ? mulii(q, D): q;
    1003      246290 :   if (dg) f = FpX_rescale(f, dg, qD);
    1004      246290 :   z = FpX_FpXQ_eval(f, g, T, qD);
    1005      246290 :   if (!D) {
    1006           0 :     if (v) {
    1007           0 :       if (v > 0)
    1008           0 :         z = ZX_Z_mul(z, powiu(p, v));
    1009             :       else
    1010           0 :         z = RgX_Rg_div(z, powiu(p, -v));
    1011             :     }
    1012           0 :     return z;
    1013             :   }
    1014      246290 :   update_den(p, &z, &D, &vD, NULL);
    1015      246290 :   qD = mulii(D,q);
    1016      246290 :   if (v) vD -= v;
    1017      246290 :   z = FpX_center_i(z, qD, shifti(qD,-1));
    1018      246290 :   if (vD > 0)
    1019      246290 :     z = RgX_Rg_div(z, powiu(p, vD));
    1020           0 :   else if (vD < 0)
    1021           0 :     z = ZX_Z_mul(z, powiu(p, -vD));
    1022      246290 :   return z;
    1023             : }
    1024             : 
    1025             : /* fast implementation of ZM_hnfmodid(M, D) / D, D = p^k */
    1026             : static GEN
    1027      389356 : ZpM_hnfmodid(GEN M, GEN p, GEN D)
    1028             : {
    1029      389356 :   long i, l = lg(M);
    1030      389356 :   M = RgM_Rg_div(ZpM_echelon(M,0,p,D), D);
    1031     1740224 :   for (i = 1; i < l; i++)
    1032     1350868 :     if (gequal0(gcoeff(M,i,i))) gcoeff(M,i,i) = gen_1;
    1033      389356 :   return M;
    1034             : }
    1035             : 
    1036             : /* Return Z-basis for Z[a] + U(a)/p Z[a] in Z[t]/(f), mf = v_p(disc f), U
    1037             :  * a ZX. Special cases: a = t is coded as NULL, U = 0 is coded as NULL */
    1038             : static GEN
    1039      531643 : dbasis(GEN p, GEN f, long mf, GEN a, GEN U)
    1040             : {
    1041      531643 :   long n = degpol(f), i, dU;
    1042             :   GEN b, h;
    1043             : 
    1044      531643 :   if (n == 1) return matid(1);
    1045      531643 :   if (a && gequalX(a)) a = NULL;
    1046      531643 :   if (DEBUGLEVEL>5)
    1047             :   {
    1048           0 :     err_printf("  entering Dedekind Basis with parameters p=%Ps\n",p);
    1049           0 :     err_printf("  f = %Ps,\n  a = %Ps\n",f, a? a: pol_x(varn(f)));
    1050             :   }
    1051      531643 :   if (a)
    1052             :   {
    1053      171199 :     GEN pd = powiu(p, mf >> 1);
    1054      171199 :     GEN da, pdp = mulii(pd,p), D = pdp;
    1055             :     long vda;
    1056      171199 :     dU = U ? degpol(U): 0;
    1057      171199 :     b = cgetg(n+1, t_MAT);
    1058      171199 :     h = scalarpol(pd, varn(f));
    1059      171199 :     a = QpX_remove_denom(a, p, &da, &vda);
    1060      171199 :     if (da) D = mulii(D, da);
    1061      171199 :     gel(b,1) = scalarcol_shallow(pd, n);
    1062      487645 :     for (i=2; i<=n; i++)
    1063             :     {
    1064      316446 :       if (i == dU+1)
    1065           0 :         h = compmod(p, U, mkvec3(a,da,stoi(vda)), f, pdp, (mf>>1) - 1);
    1066             :       else
    1067             :       {
    1068      316446 :         h = FpXQ_mul(h, a, f, D);
    1069      316446 :         if (da) h = ZX_Z_divexact(h, da);
    1070             :       }
    1071      316446 :       gel(b,i) = RgX_to_RgC(h,n);
    1072             :     }
    1073      171199 :     return ZpM_hnfmodid(b, p, pd);
    1074             :   }
    1075             :   else
    1076             :   {
    1077      360444 :     if (!U) return matid(n);
    1078      360444 :     dU = degpol(U);
    1079      360444 :     if (dU == n) return matid(n);
    1080      360444 :     U = FpX_normalize(U, p);
    1081      360444 :     b = cgetg(n+1, t_MAT);
    1082     1396407 :     for (i = 1; i <= dU; i++) gel(b,i) = vec_ei(n, i);
    1083      360444 :     h = RgX_Rg_div(U, p);
    1084      405099 :     for ( ; i <= n; i++)
    1085             :     {
    1086      405099 :       gel(b, i) = RgX_to_RgC(h,n);
    1087      405099 :       if (i == n) break;
    1088       44655 :       h = RgX_shift_shallow(h,1);
    1089             :     }
    1090      360444 :     return b;
    1091             :   }
    1092             : }
    1093             : 
    1094             : static GEN
    1095      436314 : get_partial_order_as_pols(GEN p, GEN f)
    1096             : {
    1097      436314 :   GEN O = maxord(p, f, -1);
    1098      436314 :   long v = varn(f);
    1099      436314 :   return O == gen_1? pol_x_powers(degpol(f), v): RgM_to_RgXV(O, v);
    1100             : }
    1101             : 
    1102             : static long
    1103        1890 : p_is_prime(decomp_t *S)
    1104             : {
    1105        1890 :   if (S->pisprime < 0) S->pisprime = BPSW_psp(S->p);
    1106        1890 :   return S->pisprime;
    1107             : }
    1108             : static GEN ZpX_monic_factor_squarefree(GEN f, GEN p, long prec);
    1109             : 
    1110             : /* if flag = 0, maximal order, else factorization to precision r = flag */
    1111             : static GEN
    1112      218415 : Decomp(decomp_t *S, long flag)
    1113             : {
    1114      218415 :   pari_sp av = avma;
    1115             :   GEN fred, pr2, pr, pk, ph2, ph, b1, b2, a, e, de, f1, f2, dt, th, chip;
    1116      218415 :   GEN p = S->p;
    1117      218415 :   long vde, vdt, k, r = maxss(flag, 2*S->df + 1);
    1118             : 
    1119      218415 :   if (DEBUGLEVEL>5) err_printf("  entering Decomp: %Ps^%ld\n  f = %Ps\n",
    1120             :                                p, r, S->f);
    1121      218415 :   else if (DEBUGLEVEL>2) err_printf("  entering Decomp\n");
    1122      218415 :   chip = FpX_red(S->chi, p);
    1123      218415 :   if (!FpX_valrem(chip, S->nu, p, &b1))
    1124             :   {
    1125           0 :     if (!p_is_prime(S)) pari_err_PRIME("Decomp",p);
    1126           0 :     pari_err_BUG("Decomp (not a factor)");
    1127             :   }
    1128      218415 :   b2 = FpX_div(chip, b1, p);
    1129      218415 :   a = FpX_mul(FpXQ_inv(b2, b1, p), b2, p);
    1130             :   /* E = e / de, e in Z[X], de in Z,  E = a(phi) mod (f, p) */
    1131      218415 :   th = QpX_remove_denom(S->phi, p, &dt, &vdt);
    1132      218415 :   if (dt)
    1133             :   {
    1134      105375 :     long dega = degpol(a);
    1135      105375 :     vde = dega * vdt;
    1136      105375 :     de = powiu(dt, dega);
    1137      105375 :     pr = mulii(p, de);
    1138      105375 :     a = FpX_rescale(a, dt, pr);
    1139             :   }
    1140             :   else
    1141             :   {
    1142      113040 :     vde = 0;
    1143      113040 :     de = gen_1;
    1144      113040 :     pr = p;
    1145             :   }
    1146      218415 :   e = FpX_FpXQ_eval(a, th, S->f, pr);
    1147      218415 :   update_den(p, &e, &de, &vde, NULL);
    1148             : 
    1149      218415 :   pk = p; k = 1;
    1150             :   /* E, (1 - E) tend to orthogonal idempotents in Zp[X]/(f) */
    1151     1010996 :   while (k < r + vde)
    1152             :   { /* E <-- E^2(3-2E) mod p^2k, with E = e/de */
    1153             :     GEN D;
    1154      792581 :     pk = sqri(pk); k <<= 1;
    1155      792581 :     e = ZX_mul(ZX_sqr(e), Z_ZX_sub(mului(3,de), gmul2n(e,1)));
    1156      792581 :     de= mulii(de, sqri(de));
    1157      792581 :     vde *= 3;
    1158      792581 :     D = mulii(pk, de);
    1159      792581 :     e = FpX_rem(e, centermod(S->f, D), D); /* e/de defined mod pk */
    1160      792581 :     update_den(p, &e, &de, &vde, NULL);
    1161             :   }
    1162             :   /* required precision of the factors */
    1163      218415 :   pr = powiu(p, r); pr2 = shifti(pr, -1);
    1164      218415 :   ph = mulii(de,pr);ph2 = shifti(ph, -1);
    1165      218415 :   e = FpX_center_i(FpX_red(e, ph), ph, ph2);
    1166      218415 :   fred = FpX_red(S->f, ph);
    1167             : 
    1168      218415 :   f1 = ZpX_gcd(fred, Z_ZX_sub(de, e), p, ph); /* p-adic gcd(f, 1-e) */
    1169      218415 :   if (!is_pm1(de))
    1170             :   {
    1171      105375 :     fred = FpX_red(fred, pr);
    1172      105375 :     f1 = FpX_red(f1, pr);
    1173             :   }
    1174      218415 :   f2 = FpX_div(fred,f1, pr);
    1175      218415 :   f1 = FpX_center_i(f1, pr, pr2);
    1176      218415 :   f2 = FpX_center_i(f2, pr, pr2);
    1177             : 
    1178      218415 :   if (DEBUGLEVEL>5)
    1179           0 :     err_printf("  leaving Decomp: f1 = %Ps\nf2 = %Ps\ne = %Ps\nde= %Ps\n", f1,f2,e,de);
    1180             : 
    1181      218415 :   if (flag < 0)
    1182             :   {
    1183           0 :     GEN m = vconcat(ZpX_primedec(f1, p), ZpX_primedec(f2, p));
    1184           0 :     return sort_factor(m, (void*)&cmpii, &cmp_nodata);
    1185             :   }
    1186      218415 :   else if (flag)
    1187             :   {
    1188         258 :     gerepileall(av, 2, &f1, &f2);
    1189         258 :     return shallowconcat(ZpX_monic_factor_squarefree(f1, p, flag),
    1190             :                          ZpX_monic_factor_squarefree(f2, p, flag));
    1191             :   } else {
    1192             :     GEN D, d1, d2, B1, B2, M;
    1193             :     long n, n1, n2, i;
    1194      218157 :     gerepileall(av, 4, &f1, &f2, &e, &de);
    1195      218157 :     D = de;
    1196      218157 :     B1 = get_partial_order_as_pols(p,f1); n1 = lg(B1)-1;
    1197      218157 :     B2 = get_partial_order_as_pols(p,f2); n2 = lg(B2)-1; n = n1+n2;
    1198      218157 :     d1 = QpXV_denom(B1);
    1199      218157 :     d2 = QpXV_denom(B2); if (cmpii(d1, d2) < 0) d1 = d2;
    1200      218157 :     if (d1 != gen_1) {
    1201      134686 :       B1 = Q_muli_to_int(B1, d1);
    1202      134686 :       B2 = Q_muli_to_int(B2, d1);
    1203      134686 :       D = mulii(d1, D);
    1204             :     }
    1205      218157 :     fred = centermod_i(S->f, D, shifti(D,-1));
    1206      218157 :     M = cgetg(n+1, t_MAT);
    1207      691691 :     for (i=1; i<=n1; i++)
    1208      473534 :       gel(M,i) = RgX_to_RgC(FpX_rem(FpX_mul(gel(B1,i),e,D), fred, D), n);
    1209      218157 :     e = Z_ZX_sub(de, e); B2 -= n1;
    1210      607846 :     for (   ; i<=n; i++)
    1211      389689 :       gel(M,i) = RgX_to_RgC(FpX_rem(FpX_mul(gel(B2,i),e,D), fred, D), n);
    1212      218157 :     return ZpM_hnfmodid(M, p, D);
    1213             :   }
    1214             : }
    1215             : 
    1216             : /* minimum extension valuation: L/E */
    1217             : static void
    1218      535262 : vstar(GEN p,GEN h, long *L, long *E)
    1219             : {
    1220      535262 :   long first, j, k, v, w, m = degpol(h);
    1221             : 
    1222      535262 :   first = 1; k = 1; v = 0;
    1223     2211999 :   for (j=1; j<=m; j++)
    1224             :   {
    1225     1676737 :     GEN c = gel(h, m-j+2);
    1226     1676737 :     if (signe(c))
    1227             :     {
    1228     1612644 :       w = Z_pval(c,p);
    1229     1612644 :       if (first || w*k < v*j) { v = w; k = j; }
    1230     1612644 :       first = 0;
    1231             :     }
    1232             :   }
    1233             :   /* v/k = min_j ( v_p(h_{m-j}) / j ) */
    1234      535262 :   w = (long)ugcd(v,k);
    1235      535262 :   *L = v/w;
    1236      535262 :   *E = k/w;
    1237      535262 : }
    1238             : 
    1239             : static GEN
    1240       55197 : redelt_i(GEN a, GEN N, GEN p, GEN *pda, long *pvda)
    1241             : {
    1242             :   GEN z;
    1243       55197 :   a = Q_remove_denom(a, pda);
    1244       55197 :   *pvda = 0;
    1245       55197 :   if (*pda)
    1246             :   {
    1247       55197 :     long v = Z_pvalrem(*pda, p, &z);
    1248       55197 :     if (v) {
    1249       55197 :       *pda = powiu(p, v);
    1250       55197 :       *pvda = v;
    1251       55197 :       N  = mulii(*pda, N);
    1252             :     }
    1253             :     else
    1254           0 :       *pda = NULL;
    1255       55197 :     if (!is_pm1(z)) a = ZX_Z_mul(a, Fp_inv(z, N));
    1256             :   }
    1257       55197 :   return centermod(a, N);
    1258             : }
    1259             : /* reduce the element a modulo N [ a power of p ], taking first care of the
    1260             :  * denominators */
    1261             : static GEN
    1262       41644 : redelt(GEN a, GEN N, GEN p)
    1263             : {
    1264             :   GEN da;
    1265             :   long vda;
    1266       41644 :   a = redelt_i(a, N, p, &da, &vda);
    1267       41644 :   if (da) a = RgX_Rg_div(a, da);
    1268       41644 :   return a;
    1269             : }
    1270             : 
    1271             : /* compute the c first Newton sums modulo pp of the
    1272             :    characteristic polynomial of a/d mod chi, d > 0 power of p (NULL = gen_1),
    1273             :    a, chi in Zp[X], vda = v_p(da)
    1274             :    ns = Newton sums of chi */
    1275             : static GEN
    1276      605553 : newtonsums(GEN p, GEN a, GEN da, long vda, GEN chi, long c, GEN pp, GEN ns)
    1277             : {
    1278             :   GEN va, pa, dpa, s;
    1279      605553 :   long j, k, vdpa, lns = lg(ns);
    1280             :   pari_sp av;
    1281             : 
    1282      605553 :   a = centermod(a, pp); av = avma;
    1283      605553 :   dpa = pa = NULL; /* -Wall */
    1284      605553 :   vdpa = 0;
    1285      605553 :   va = zerovec(c);
    1286     2499854 :   for (j = 1; j <= c; j++)
    1287             :   { /* pa/dpa = (a/d)^(j-1) mod (chi, pp), dpa = p^vdpa */
    1288             :     long l;
    1289     1900098 :     pa = j == 1? a: FpXQ_mul(pa, a, chi, pp);
    1290     1900098 :     l = lg(pa); if (l == 2) break;
    1291     1900098 :     if (lns < l) l = lns;
    1292             : 
    1293     1900098 :     if (da) {
    1294     1784089 :       dpa = j == 1? da: mulii(dpa, da);
    1295     1784089 :       vdpa += vda;
    1296     1784089 :       update_den(p, &pa, &dpa, &vdpa, &pp);
    1297             :     }
    1298     1900098 :     s = mulii(gel(pa,2), gel(ns,2)); /* k = 2 */
    1299     9391362 :     for (k = 3; k < l; k++) s = addii(s, mulii(gel(pa,k), gel(ns,k)));
    1300     1900098 :     if (da) {
    1301             :       GEN r;
    1302     1784089 :       s = dvmdii(s, dpa, &r);
    1303     1784089 :       if (r != gen_0) return NULL;
    1304             :     }
    1305     1894301 :     gel(va,j) = centermodii(s, pp, shifti(pp,-1));
    1306             : 
    1307     1894301 :     if (gc_needed(av, 1))
    1308             :     {
    1309           6 :       if(DEBUGMEM>1) pari_warn(warnmem, "newtonsums");
    1310           6 :       gerepileall(av, dpa?4:3, &pa, &va, &pp, &dpa);
    1311             :     }
    1312             :   }
    1313      599756 :   for (; j <= c; j++) gel(va,j) = gen_0;
    1314      599756 :   return va;
    1315             : }
    1316             : 
    1317             : /* compute the characteristic polynomial of a/da mod chi (a in Z[X]), given
    1318             :  * by its Newton sums to a precision of pp using Newton sums */
    1319             : static GEN
    1320      599756 : newtoncharpoly(GEN pp, GEN p, GEN NS)
    1321             : {
    1322      599756 :   long n = lg(NS)-1, j, k;
    1323      599756 :   GEN c = cgetg(n + 2, t_VEC), pp2 = shifti(pp,-1);
    1324             : 
    1325      599756 :   gel(c,1) = (n & 1 ? gen_m1: gen_1);
    1326     2484999 :   for (k = 2; k <= n+1; k++)
    1327             :   {
    1328     1885327 :     pari_sp av2 = avma;
    1329     1885327 :     GEN s = gen_0;
    1330             :     ulong z;
    1331     1885327 :     long v = u_pvalrem(k - 1, p, &z);
    1332     7956824 :     for (j = 1; j < k; j++)
    1333             :     {
    1334     6071497 :       GEN t = mulii(gel(NS,j), gel(c,k-j));
    1335     6071497 :       if (!odd(j)) t = negi(t);
    1336     6071497 :       s = addii(s, t);
    1337             :     }
    1338     1885327 :     if (v) {
    1339      722053 :       s = gdiv(s, powiu(p, v));
    1340      722053 :       if (typ(s) != t_INT) return NULL;
    1341             :     }
    1342     1885243 :     s = mulii(s, Fp_inv(utoipos(z), pp));
    1343     1885243 :     gel(c,k) = gerepileuptoint(av2, Fp_center_i(s, pp, pp2));
    1344             :   }
    1345     1597065 :   for (k = odd(n)? 1: 2; k <= n+1; k += 2) gel(c,k) = negi(gel(c,k));
    1346      599672 :   return gtopoly(c, 0);
    1347             : }
    1348             : 
    1349             : static void
    1350      605553 : manage_cache(decomp_t *S, GEN f, GEN pp)
    1351             : {
    1352      605553 :   GEN t = S->precns;
    1353             : 
    1354      605553 :   if (!t) t = mulii(S->pmf, powiu(S->p, S->df));
    1355      605553 :   if (cmpii(t, pp) < 0) t = pp;
    1356             : 
    1357      605553 :   if (!S->precns || !RgX_equal(f, S->nsf) || cmpii(S->precns, t) < 0)
    1358             :   {
    1359      447362 :     if (DEBUGLEVEL>4)
    1360           0 :       err_printf("  Precision for cached Newton sums for %Ps: %Ps -> %Ps\n",
    1361           0 :                  f, S->precns? S->precns: gen_0, t);
    1362      447362 :     S->nsf = f;
    1363      447362 :     S->ns = FpX_Newton(f, degpol(f), t);
    1364      447362 :     S->precns = t;
    1365             :   }
    1366      605553 : }
    1367             : 
    1368             : /* return NULL if a mod f is not an integer
    1369             :  * The denominator of any integer in Zp[X]/(f) divides pdr */
    1370             : static GEN
    1371      605553 : mycaract(decomp_t *S, GEN f, GEN a, GEN pp, GEN pdr)
    1372             : {
    1373             :   pari_sp av;
    1374             :   GEN d, chi, prec1, prec2, prec3, ns;
    1375      605553 :   long vd, n = degpol(f);
    1376             : 
    1377      605553 :   if (gequal0(a)) return pol_0(varn(f));
    1378             : 
    1379      605553 :   a = QpX_remove_denom(a, S->p, &d, &vd);
    1380      605553 :   prec1 = pp;
    1381      605553 :   if (lgefint(S->p) == 3)
    1382      605508 :     prec1 = mulii(prec1, powiu(S->p, factorial_lval(n, itou(S->p))));
    1383      605553 :   if (d)
    1384             :   {
    1385      549938 :     GEN p1 = powiu(d, n);
    1386      549938 :     prec2 = mulii(prec1, p1);
    1387      549938 :     prec3 = mulii(prec1, gmin_shallow(mulii(p1, d), pdr));
    1388             :   }
    1389             :   else
    1390       55615 :     prec2 = prec3 = prec1;
    1391      605553 :   manage_cache(S, f, prec3);
    1392             : 
    1393      605553 :   av = avma;
    1394      605553 :   ns = newtonsums(S->p, a, d, vd, f, n, prec2, S->ns);
    1395      605553 :   if (!ns) return NULL;
    1396      599756 :   chi = newtoncharpoly(prec1, S->p, ns);
    1397      599756 :   if (!chi) return NULL;
    1398      599672 :   setvarn(chi, varn(f));
    1399      599672 :   return gerepileupto(av, centermod(chi, pp));
    1400             : }
    1401             : 
    1402             : static GEN
    1403      549833 : get_nu(GEN chi, GEN p, long *ptl)
    1404             : { /* split off powers of x first for efficiency */
    1405      549833 :   long v = ZX_valrem(FpX_red(chi,p), &chi), n;
    1406             :   GEN P;
    1407      549833 :   if (!degpol(chi)) { *ptl = 1; return pol_x(varn(chi)); }
    1408      407934 :   P = gel(FpX_factor(chi,p), 1); n = lg(P)-1;
    1409      407934 :   *ptl = v? n+1: n; return gel(P,n);
    1410             : }
    1411             : 
    1412             : /* Factor characteristic polynomial chi of phi mod p. If it splits, update
    1413             :  * S->{phi, chi, nu} and return 1. In any case, set *nu to an irreducible
    1414             :  * factor mod p of chi */
    1415             : static int
    1416      411987 : split_char(decomp_t *S, GEN chi, GEN phi, GEN phi0, GEN *nu)
    1417             : {
    1418             :   long l;
    1419      411987 :   *nu  = get_nu(chi, S->p, &l);
    1420      411987 :   if (l == 1) return 0; /* single irreducible factor: doesn't split */
    1421             :   /* phi o phi0 mod (p, f) */
    1422      105375 :   S->phi = compmod(S->p, phi, phi0, S->f, S->p, 0);
    1423      105375 :   S->chi = chi;
    1424      105375 :   S->nu = *nu; return 1;
    1425             : }
    1426             : 
    1427             : /* Return the prime element in Zp[phi], a t_INT (iff *Ep = 1) or QX;
    1428             :  * nup, chip are ZX. phi = NULL codes X
    1429             :  * If *Ep < oE or Ep divides Ediv (!=0) return NULL (uninteresting) */
    1430             : static GEN
    1431      483251 : getprime(decomp_t *S, GEN phi, GEN chip, GEN nup, long *Lp, long *Ep,
    1432             :          long oE, long Ediv)
    1433             : {
    1434             :   GEN z, chin, q, qp;
    1435             :   long r, s;
    1436             : 
    1437      483251 :   if (phi && dvdii(constant_coeff(chip), S->psc))
    1438             :   {
    1439        1456 :     chip = mycaract(S, S->chi, phi, S->pmf, S->prc);
    1440        1456 :     if (dvdii(constant_coeff(chip), S->pmf))
    1441        1069 :       chip = ZXQ_charpoly(phi, S->chi, varn(chip));
    1442             :   }
    1443      483251 :   if (degpol(nup) == 1)
    1444             :   {
    1445      449901 :     GEN c = gel(nup,2); /* nup = X + c */
    1446      449901 :     chin = signe(c)? RgX_translate(chip, negi(c)): chip;
    1447             :   }
    1448             :   else
    1449       33350 :     chin = ZXQ_charpoly(nup, chip, varn(chip));
    1450             : 
    1451      483251 :   vstar(S->p, chin, Lp, Ep);
    1452      483251 :   if (*Ep < oE || (Ediv && Ediv % *Ep == 0)) return NULL;
    1453             : 
    1454      379901 :   if (*Ep == 1) return S->p;
    1455      262019 :   (void)cbezout(*Lp, -*Ep, &r, &s); /* = 1 */
    1456      262019 :   if (r <= 0)
    1457             :   {
    1458       51554 :     long t = 1 + ((-r) / *Ep);
    1459       51554 :     r += t * *Ep;
    1460       51554 :     s += t * *Lp;
    1461             :   }
    1462             :   /* r > 0 minimal such that r L/E - s = 1/E
    1463             :    * pi = nu^r / p^s is an element of valuation 1/E,
    1464             :    * so is pi + O(p) since 1/E < 1. May compute nu^r mod p^(s+1) */
    1465      262019 :   q = powiu(S->p, s); qp = mulii(q, S->p);
    1466      262019 :   nup = FpXQ_powu(nup, r, S->chi, qp);
    1467      262019 :   if (!phi) return RgX_Rg_div(nup, q); /* phi = X : no composition */
    1468       41644 :   z = compmod(S->p, nup, phi, S->chi, qp, -s);
    1469       41644 :   return signe(z)? z: NULL;
    1470             : }
    1471             : 
    1472             : static int
    1473      237117 : update_phi(decomp_t *S)
    1474             : {
    1475      237117 :   GEN PHI = NULL, prc, psc, X = pol_x(varn(S->f));
    1476             :   long k, vpsc;
    1477      237117 :   for (k = 1;; k++)
    1478             :   {
    1479      239047 :     prc = ZpX_reduced_resultant_fast(S->chi, ZX_deriv(S->chi), S->p, S->vpsc);
    1480             :     /* if prc == S->psc then either chi is not separable or
    1481             :        the reduced discriminant of chi is too large */
    1482      239047 :     if (!equalii(prc, S->psc)) break;
    1483             : 
    1484             :     /* increase precision */
    1485        1930 :     S->vpsc = maxss(S->vpsf, S->vpsc + 1);
    1486        1930 :     S->psc = (S->vpsc == S->vpsf)? S->psf: mulii(S->psc, S->p);
    1487             : 
    1488        1930 :     PHI = S->phi;
    1489        1930 :     if (S->phi0) PHI = compmod(S->p, PHI, S->phi0, S->f, S->psc, 0);
    1490             :     /* change phi (in case not separable) */
    1491        1930 :     PHI = gadd(PHI, ZX_Z_mul(X, mului(k, S->p)));
    1492        1930 :     S->chi = mycaract(S, S->f, PHI, S->psc, S->pdf);
    1493             :   }
    1494      237117 :   psc = mulii(sqri(prc), S->p);
    1495      237117 :   vpsc = 2*Z_pval(prc, S->p) + 1;
    1496             : 
    1497      237117 :   if (!PHI) /* break out of above loop immediately (k = 1) */
    1498             :   {
    1499      235187 :     PHI = S->phi;
    1500      235187 :     if (S->phi0) PHI = compmod(S->p, PHI, S->phi0, S->f, psc, 0);
    1501      235187 :     if (S->phi0 || cmpii(psc,S->psc) > 0)
    1502             :     {
    1503             :       for(;;)
    1504             :       {
    1505       97839 :         S->chi = mycaract(S, S->f, PHI, psc, S->pdf);
    1506       97839 :         prc = ZpX_reduced_resultant_fast(S->chi, ZX_deriv(S->chi), S->p, vpsc);
    1507       97839 :         if (!equalii(prc, psc)) break;
    1508         426 :         psc = mulii(psc, S->p); vpsc++;
    1509             :         /* it can happen that S->chi is never squarefree: then change PHI */
    1510         426 :         if (vpsc > 2*S->mf) PHI = gadd(PHI, ZX_Z_mul(X, S->p));
    1511             :       }
    1512       97413 :       psc = mulii(sqri(prc), S->p);
    1513       97413 :       vpsc = 2*Z_pval(prc, S->p) + 1;
    1514             :     }
    1515             :   }
    1516      237117 :   S->phi = PHI;
    1517      237117 :   S->chi = FpX_red(S->chi, psc);
    1518             : 
    1519             :   /* may happen if p is unramified */
    1520      237117 :   if (is_pm1(prc)) return 0;
    1521      199019 :   S->prc = prc;
    1522      199019 :   S->psc = psc;
    1523      199019 :   S->vpsc = vpsc; return 1;
    1524             : }
    1525             : 
    1526             : /* return 1 if at least 2 factors mod p ==> chi splits
    1527             :  * Replace S->phi such that F increases (to D) */
    1528             : static int
    1529       57627 : testb2(decomp_t *S, long D, GEN theta)
    1530             : {
    1531       57627 :   long v = varn(S->chi), dlim = degpol(S->chi)-1;
    1532       57627 :   GEN T0 = S->phi, chi, phi, nu;
    1533       57627 :   if (DEBUGLEVEL>4) err_printf("  Increasing Fa\n");
    1534             :   for (;;)
    1535             :   {
    1536       57673 :     phi = gadd(theta, random_FpX(dlim, v, S->p));
    1537       57673 :     chi = mycaract(S, S->chi, phi, S->psf, S->prc);
    1538             :     /* phi nonprimary ? */
    1539       57673 :     if (split_char(S, chi, phi, T0, &nu)) return 1;
    1540       57673 :     if (degpol(nu) == D) break;
    1541             :   }
    1542             :   /* F_phi=lcm(F_alpha, F_theta)=D and E_phi=E_alpha */
    1543       57627 :   S->phi0 = T0;
    1544       57627 :   S->chi = chi;
    1545       57627 :   S->phi = phi;
    1546       57627 :   S->nu = nu; return 0;
    1547             : }
    1548             : 
    1549             : /* return 1 if at least 2 factors mod p ==> chi can be split.
    1550             :  * compute a new S->phi such that E = lcm(Ea, Et);
    1551             :  * A a ZX, T a t_INT (iff Et = 1, probably impossible ?) or QX */
    1552             : static int
    1553       41644 : testc2(decomp_t *S, GEN A, long Ea, GEN T, long Et)
    1554             : {
    1555       41644 :   GEN c, chi, phi, nu, T0 = S->phi;
    1556             : 
    1557       41644 :   if (DEBUGLEVEL>4) err_printf("  Increasing Ea\n");
    1558       41644 :   if (Et == 1) /* same as other branch, split for efficiency */
    1559           0 :     c = A; /* Et = 1 => s = 1, r = 0, t = 0 */
    1560             :   else
    1561             :   {
    1562             :     long r, s, t;
    1563       41644 :     (void)cbezout(Ea, Et, &r, &s); t = 0;
    1564       41728 :     while (r < 0) { r = r + Et; t++; }
    1565       41824 :     while (s < 0) { s = s + Ea; t++; }
    1566             : 
    1567             :     /* A^s T^r / p^t */
    1568       41644 :     c = RgXQ_mul(RgXQ_powu(A, s, S->chi), RgXQ_powu(T, r, S->chi), S->chi);
    1569       41644 :     c = RgX_Rg_div(c, powiu(S->p, t));
    1570       41644 :     c = redelt(c, S->psc, S->p);
    1571             :   }
    1572       41644 :   phi = RgX_add(c,  pol_x(varn(S->chi)));
    1573       41644 :   chi = mycaract(S, S->chi, phi, S->psf, S->prc);
    1574       41644 :   if (split_char(S, chi, phi, T0, &nu)) return 1;
    1575             :   /* E_phi = lcm(E_alpha,E_theta) */
    1576       41644 :   S->phi0 = T0;
    1577       41644 :   S->chi = chi;
    1578       41644 :   S->phi = phi;
    1579       41644 :   S->nu = nu; return 0;
    1580             : }
    1581             : 
    1582             : /* Return h^(-degpol(P)) P(x * h) if result is integral, NULL otherwise */
    1583             : static GEN
    1584       51386 : ZX_rescale_inv(GEN P, GEN h)
    1585             : {
    1586       51386 :   long i, l = lg(P);
    1587       51386 :   GEN Q = cgetg(l,t_POL), hi = h;
    1588       51386 :   gel(Q,l-1) = gel(P,l-1);
    1589      149364 :   for (i=l-2; i>=2; i--)
    1590             :   {
    1591             :     GEN r;
    1592      149364 :     gel(Q,i) = dvmdii(gel(P,i), hi, &r);
    1593      149364 :     if (signe(r)) return NULL;
    1594      149364 :     if (i == 2) break;
    1595       97978 :     hi = mulii(hi,h);
    1596             :   }
    1597       51386 :   Q[1] = P[1]; return Q;
    1598             : }
    1599             : 
    1600             : /* x p^-eq nu^-er mod p */
    1601             : static GEN
    1602      260172 : get_gamma(decomp_t *S, GEN x, long eq, long er)
    1603             : {
    1604      260172 :   GEN q, g = x, Dg = powiu(S->p, eq);
    1605      260172 :   long vDg = eq;
    1606      260172 :   if (er)
    1607             :   {
    1608       19678 :     if (!S->invnu)
    1609             :     {
    1610       13553 :       while (gdvd(S->chi, S->nu)) S->nu = RgX_Rg_add(S->nu, S->p);
    1611       13553 :       S->invnu = QXQ_inv(S->nu, S->chi);
    1612       13553 :       S->invnu = redelt_i(S->invnu, S->psc, S->p, &S->Dinvnu, &S->vDinvnu);
    1613             :     }
    1614       19678 :     if (S->Dinvnu) {
    1615       19678 :       Dg = mulii(Dg, powiu(S->Dinvnu, er));
    1616       19678 :       vDg += er * S->vDinvnu;
    1617             :     }
    1618       19678 :     q = mulii(S->p, Dg);
    1619       19678 :     g = ZX_mul(g, FpXQ_powu(S->invnu, er, S->chi, q));
    1620       19678 :     g = FpX_rem(g, S->chi, q);
    1621       19678 :     update_den(S->p, &g, &Dg, &vDg, NULL);
    1622       19678 :     g = centermod(g, mulii(S->p, Dg));
    1623             :   }
    1624      260172 :   if (!is_pm1(Dg)) g = RgX_Rg_div(g, Dg);
    1625      260172 :   return g;
    1626             : }
    1627             : static GEN
    1628      305677 : get_g(decomp_t *S, long Ea, long L, long E, GEN beta, GEN *pchig,
    1629             :       long *peq, long *per)
    1630             : {
    1631             :   long eq, er;
    1632      305677 :   GEN g, chig, chib = NULL;
    1633             :   for(;;) /* at most twice */
    1634             :   {
    1635      311558 :     if (L < 0)
    1636             :     {
    1637       52011 :       chib = ZXQ_charpoly(beta, S->chi, varn(S->chi));
    1638       52011 :       vstar(S->p, chib, &L, &E);
    1639             :     }
    1640      311558 :     eq = L / E; er = L*Ea / E - eq*Ea;
    1641             :     /* floor(L Ea/E) = eq Ea + er */
    1642      311558 :     if (er || !chib)
    1643             :     { /* g might not be an integer ==> chig = NULL */
    1644      260172 :       g = get_gamma(S, beta, eq, er);
    1645      260172 :       chig = mycaract(S, S->chi, g, S->psc, S->prc);
    1646             :     }
    1647             :     else
    1648             :     { /* g = beta/p^eq, special case of the above */
    1649       51386 :       GEN h = powiu(S->p, eq);
    1650       51386 :       g = RgX_Rg_div(beta, h);
    1651       51386 :       chig = ZX_rescale_inv(chib, h); /* chib(x h) / h^N */
    1652       51386 :       if (chig) chig = FpX_red(chig, S->pmf);
    1653             :     }
    1654             :     /* either success or second consecutive failure */
    1655      311558 :     if (chig || chib) break;
    1656             :     /* if g fails the v*-test, v(beta) was wrong. Retry once */
    1657        5881 :     L = -1;
    1658             :   }
    1659      305677 :   *pchig = chig; *peq = eq; *per = er; return g;
    1660             : }
    1661             : 
    1662             : /* return 1 if at least 2 factors mod p ==> chi can be split */
    1663             : static int
    1664      204646 : loop(decomp_t *S, long Ea)
    1665             : {
    1666      204646 :   pari_sp av = avma;
    1667      204646 :   GEN beta = FpXQ_powu(S->nu, Ea, S->chi, S->p);
    1668      204646 :   long N = degpol(S->f), v = varn(S->f);
    1669      204646 :   S->invnu = NULL;
    1670             :   for (;;)
    1671      101031 :   { /* beta tends to a factor of chi */
    1672             :     long L, i, Fg, eq, er;
    1673      305677 :     GEN chig = NULL, d, g, nug;
    1674             : 
    1675      305677 :     if (DEBUGLEVEL>4) err_printf("  beta = %Ps\n", beta);
    1676      305677 :     L = ZpX_resultant_val(S->chi, beta, S->p, S->mf+1);
    1677      305677 :     if (L > S->mf) L = -1; /* from scratch */
    1678      305677 :     g = get_g(S, Ea, L, N, beta, &chig, &eq, &er);
    1679      305677 :     if (DEBUGLEVEL>4) err_printf("  (eq,er) = (%ld,%ld)\n", eq,er);
    1680             :     /* g = beta p^-eq  nu^-er (a unit), chig = charpoly(g) */
    1681      406678 :     if (split_char(S, chig, g,S->phi, &nug)) return 1;
    1682             : 
    1683      202032 :     Fg = degpol(nug);
    1684      202032 :     if (Fg == 1)
    1685             :     { /* frequent special case nug = x - d */
    1686             :       long Le, Ee;
    1687             :       GEN chie, nue, e, pie;
    1688      137412 :       d = negi(gel(nug,2));
    1689      137412 :       chie = RgX_translate(chig, d);
    1690      137412 :       nue = pol_x(v);
    1691      137412 :       e = RgX_Rg_sub(g, d);
    1692      137412 :       pie = getprime(S, e, chie, nue, &Le, &Ee,  0,Ea);
    1693      137412 :       if (pie) return testc2(S, S->nu, Ea, pie, Ee);
    1694             :     }
    1695             :     else
    1696             :     {
    1697       64620 :       long Fa = degpol(S->nu), vdeng;
    1698             :       GEN deng, numg, nume;
    1699       67592 :       if (Fa % Fg) return testb2(S, ulcm(Fa,Fg), g);
    1700             :       /* nu & nug irreducible mod p, deg nug | deg nu. To improve beta, look
    1701             :        * for a root d of nug in Fp[phi] such that v_p(g - d) > 0 */
    1702        6993 :       if (ZX_equal(nug, S->nu))
    1703        5103 :         d = pol_x(v);
    1704             :       else
    1705             :       {
    1706        1890 :         if (!p_is_prime(S)) pari_err_PRIME("FpX_ffisom",S->p);
    1707        1890 :         d = FpX_ffisom(nug, S->nu, S->p);
    1708             :       }
    1709             :       /* write g = numg / deng, e = nume / deng */
    1710        6993 :       numg = QpX_remove_denom(g, S->p, &deng, &vdeng);
    1711       10973 :       for (i = 1; i <= Fg; i++)
    1712             :       {
    1713             :         GEN chie, nue, e;
    1714       10973 :         if (i != 1) d = FpXQ_pow(d, S->p, S->nu, S->p); /* next root */
    1715       10973 :         nume = ZX_sub(numg, ZX_Z_mul(d, deng));
    1716             :         /* test e = nume / deng */
    1717       10973 :         if (ZpX_resultant_val(S->chi, nume, S->p, vdeng*N+1) <= vdeng*N)
    1718        3980 :           continue;
    1719        6993 :         e = RgX_Rg_div(nume, deng);
    1720        6993 :         chie = mycaract(S, S->chi, e, S->psc, S->prc);
    1721        8235 :         if (split_char(S, chie, e,S->phi, &nue)) return 1;
    1722        5263 :         if (RgX_is_monomial(nue))
    1723             :         { /* v_p(e) = v_p(g - d) > 0 */
    1724             :           long Le, Ee;
    1725             :           GEN pie;
    1726        5263 :           pie = getprime(S, e, chie, nue, &Le, &Ee,  0,Ea);
    1727        5263 :           if (pie) return testc2(S, S->nu, Ea, pie, Ee);
    1728        4021 :           break;
    1729             :         }
    1730             :       }
    1731        4021 :       if (i > Fg)
    1732             :       {
    1733           0 :         if (!p_is_prime(S)) pari_err_PRIME("nilord",S->p);
    1734           0 :         pari_err_BUG("nilord (no root)");
    1735             :       }
    1736             :     }
    1737      101031 :     if (eq) d = gmul(d, powiu(S->p,  eq));
    1738      101031 :     if (er) d = gmul(d, gpowgs(S->nu, er));
    1739      101031 :     beta = gsub(beta, d);
    1740             : 
    1741      101031 :     if (gc_needed(av,1))
    1742             :     {
    1743           0 :       if (DEBUGMEM > 1) pari_warn(warnmem, "nilord");
    1744           0 :       gerepileall(av, S->invnu? 6: 4, &beta, &(S->precns), &(S->ns), &(S->nsf), &(S->invnu), &(S->Dinvnu));
    1745             :     }
    1746             :   }
    1747             : }
    1748             : 
    1749             : /* E and F cannot decrease; return 1 if O = Zp[phi], 2 if we can get a
    1750             :  * decomposition and 0 otherwise */
    1751             : static long
    1752      338257 : progress(decomp_t *S, GEN *ppa, long *pE)
    1753             : {
    1754      338257 :   long E = *pE, F;
    1755      338257 :   GEN pa = *ppa;
    1756      338257 :   S->phi0 = NULL; /* no delayed composition */
    1757             :   for(;;)
    1758        2319 :   {
    1759             :     long l, La, Ea; /* N.B If E = 0, getprime cannot return NULL */
    1760      340576 :     GEN pia  = getprime(S, NULL, S->chi, S->nu, &La, &Ea, E,0);
    1761      340576 :     if (pia) { /* success, we break out in THIS loop */
    1762      338257 :       pa = (typ(pia) == t_POL)? RgX_RgXQ_eval(pia, S->phi, S->f): pia;
    1763      338257 :       E = Ea;
    1764      338257 :       if (La == 1) break; /* no need to change phi so that nu = pia */
    1765             :     }
    1766             :     /* phi += prime elt */
    1767       55845 :     S->phi = typ(pa) == t_INT? RgX_Rg_add_shallow(S->phi, pa)
    1768      137846 :                              : RgX_add(S->phi, pa);
    1769             :     /* recompute char. poly. chi from scratch */
    1770      137846 :     S->chi = mycaract(S, S->f, S->phi, S->psf, S->pdf);
    1771      137846 :     S->nu = get_nu(S->chi, S->p, &l);
    1772      137846 :     if (l > 1) return 2;
    1773      137846 :     if (!update_phi(S)) return 1; /* unramified */
    1774      137846 :     if (pia) break;
    1775             :   }
    1776      338257 :   *pE = E; *ppa = pa; F = degpol(S->nu);
    1777      338257 :   if (DEBUGLEVEL>4) err_printf("  (E, F) = (%ld,%ld)\n", E, F);
    1778      338257 :   if (E * F == degpol(S->f)) return 1;
    1779      204646 :   if (loop(S, E)) return 2;
    1780       99271 :   if (!update_phi(S)) return 1;
    1781       61173 :   return 0;
    1782             : }
    1783             : 
    1784             : /* flag != 0 iff we're looking for the p-adic factorization,
    1785             :    in which case it is the p-adic precision we want */
    1786             : static GEN
    1787      390124 : maxord_i(decomp_t *S, GEN p, GEN f, long mf, GEN w, long flag)
    1788             : {
    1789      390124 :   long oE, n = lg(w)-1; /* factor of largest degree */
    1790      390124 :   GEN opa, D = ZpX_reduced_resultant_fast(f, ZX_deriv(f), p, mf);
    1791      390124 :   S->pisprime = -1;
    1792      390124 :   S->p = p;
    1793      390124 :   S->mf = mf;
    1794      390124 :   S->nu = gel(w,n);
    1795      390124 :   S->df = Z_pval(D, p);
    1796      390124 :   S->pdf = powiu(p, S->df);
    1797      390124 :   S->phi = pol_x(varn(f));
    1798      390124 :   S->chi = S->f = f;
    1799      390124 :   if (n > 1) return Decomp(S, flag); /* FIXME: use bezout_lift_fact */
    1800             : 
    1801      277084 :   if (DEBUGLEVEL>4)
    1802           0 :     err_printf("  entering Nilord: %Ps^%ld\n  f = %Ps, nu = %Ps\n",
    1803             :                p, S->df, S->f, S->nu);
    1804      277084 :   else if (DEBUGLEVEL>2) err_printf("  entering Nilord\n");
    1805      277084 :   S->psf = S->psc = mulii(sqri(D), p);
    1806      277084 :   S->vpsf = S->vpsc = 2*S->df + 1;
    1807      277084 :   S->prc = mulii(D, p);
    1808      277084 :   S->chi = FpX_red(S->f, S->psc);
    1809      277084 :   S->pmf = powiu(p, S->mf+1);
    1810      277084 :   S->precns = NULL;
    1811      277084 :   for(opa = NULL, oE = 0;;)
    1812       61173 :   {
    1813      338257 :     long n = progress(S, &opa, &oE);
    1814      338257 :     if (n == 1) return flag? NULL: dbasis(p, S->f, S->mf, S->phi, S->chi);
    1815      166548 :     if (n == 2) return Decomp(S, flag);
    1816             :   }
    1817             : }
    1818             : 
    1819             : static int
    1820         762 : expo_is_squarefree(GEN e)
    1821             : {
    1822         762 :   long i, l = lg(e);
    1823        1080 :   for (i=1; i<l; i++)
    1824         876 :     if (e[i] != 1) return 0;
    1825         204 :   return 1;
    1826             : }
    1827             : /* pure round 4 */
    1828             : static GEN
    1829         768 : ZpX_round4(GEN f, GEN p, GEN w, long prec)
    1830             : {
    1831             :   decomp_t S;
    1832         768 :   GEN L = maxord_i(&S, p, f, ZpX_disc_val(f,p), w, prec);
    1833         768 :   return L? L: mkvec(f);
    1834             : }
    1835             : /* f a squarefree ZX with leading_coeff 1, degree > 0. Return list of
    1836             :  * irreducible factors in Zp[X] (computed mod p^prec) */
    1837             : static GEN
    1838         990 : ZpX_monic_factor_squarefree(GEN f, GEN p, long prec)
    1839             : {
    1840         990 :   pari_sp av = avma;
    1841             :   GEN L, fa, w, e;
    1842             :   long i, l;
    1843         990 :   if (degpol(f) == 1) return mkvec(f);
    1844         762 :   fa = FpX_factor(f,p); w = gel(fa,1); e = gel(fa,2);
    1845             :   /* no repeated factors: Hensel lift */
    1846         762 :   if (expo_is_squarefree(e)) return ZpX_liftfact(f, w, powiu(p,prec), p, prec);
    1847         558 :   l = lg(w);
    1848         558 :   if (l == 2)
    1849             :   {
    1850         336 :     L = ZpX_round4(f,p,w,prec);
    1851         336 :     if (lg(L) == 2) { set_avma(av); return mkvec(f); }
    1852             :   }
    1853             :   else
    1854             :   { /* >= 2 factors mod p: partial Hensel lift */
    1855         222 :     GEN D = ZpX_reduced_resultant_fast(f, ZX_deriv(f), p, ZpX_disc_val(f,p));
    1856         222 :     long r = maxss(2*Z_pval(D,p)+1, prec);
    1857         222 :     GEN W = cgetg(l, t_VEC);
    1858         714 :     for (i = 1; i < l; i++)
    1859         492 :       gel(W,i) = e[i] == 1? gel(w,i): FpX_powu(gel(w,i), e[i], p);
    1860         222 :     L = ZpX_liftfact(f, W, powiu(p,r), p, r);
    1861         714 :     for (i = 1; i < l; i++)
    1862         492 :       gel(L,i) = e[i] == 1? mkvec(gel(L,i))
    1863         492 :                           : ZpX_round4(gel(L,i), p, mkvec(gel(w,i)), prec);
    1864         222 :     L = shallowconcat1(L);
    1865             :   }
    1866         342 :   return gerepilecopy(av, L);
    1867             : }
    1868             : 
    1869             : /* assume T a ZX with leading_coeff 1, degree > 0 */
    1870             : GEN
    1871         468 : ZpX_monic_factor(GEN T, GEN p, long prec)
    1872             : {
    1873             :   GEN Q, P, E, F;
    1874             :   long L, l, i, v;
    1875             : 
    1876         468 :   if (degpol(T) == 1) return mkmat2(mkcol(T), mkcol(gen_1));
    1877         468 :   v = ZX_valrem(T, &T);
    1878         468 :   Q = ZX_squff(T, &F); l = lg(Q); L = v? l + 1: l;
    1879         468 :   P = cgetg(L, t_VEC);
    1880         468 :   E = cgetg(L, t_VEC);
    1881         942 :   for (i = 1; i < l; i++)
    1882             :   {
    1883         474 :     GEN w = ZpX_monic_factor_squarefree(gel(Q,i), p, prec);
    1884         474 :     gel(P,i) = w; settyp(w, t_COL);
    1885         474 :     gel(E,i) = const_col(lg(w)-1, utoipos(F[i]));
    1886             :   }
    1887         468 :   if (v) { gel(P,i) = pol_x(varn(T)); gel(E,i) = utoipos(v); }
    1888         468 :   return mkmat2(shallowconcat1(P), shallowconcat1(E));
    1889             : }
    1890             : 
    1891             : /* DT = multiple of disc(T) or NULL
    1892             :  * Return a multiple of the denominator of an algebraic integer (in Q[X]/(T))
    1893             :  * when expressed in terms of the power basis */
    1894             : GEN
    1895       37807 : indexpartial(GEN T, GEN DT)
    1896             : {
    1897       37807 :   pari_sp av = avma;
    1898             :   long i, nb;
    1899       37807 :   GEN fa, E, P, U, res = gen_1, dT = ZX_deriv(T);
    1900             : 
    1901       37807 :   if (!DT) DT = ZX_disc(T);
    1902       37807 :   fa = absZ_factor_limit_strict(DT, 0, &U);
    1903       37807 :   P = gel(fa,1);
    1904       37807 :   E = gel(fa,2); nb = lg(P)-1;
    1905      181655 :   for (i = 1; i <= nb; i++)
    1906             :   {
    1907      143848 :     long e = itou(gel(E,i)), e2 = e >> 1;
    1908      143848 :     GEN p = gel(P,i), q = p;
    1909      143848 :     if (e2 >= 2) q = ZpX_reduced_resultant_fast(T, dT, p, e2);
    1910      143848 :     res = mulii(res, q);
    1911             :   }
    1912       37807 :   if (U)
    1913             :   {
    1914        1643 :     long e = itou(gel(U,2)), e2 = e >> 1;
    1915        1643 :     GEN p = gel(U,1), q = powiu(p, odd(e)? e2+1: e2);
    1916        1643 :     res = mulii(res, q);
    1917             :   }
    1918       37807 :   return gerepileuptoint(av,res);
    1919             : }
    1920             : 
    1921             : /*******************************************************************/
    1922             : /*                                                                 */
    1923             : /*    2-ELT REPRESENTATION FOR PRIME IDEALS (dividing index)       */
    1924             : /*                                                                 */
    1925             : /*******************************************************************/
    1926             : /* to compute norm of elt in basis form */
    1927             : typedef struct {
    1928             :   long r1;
    1929             :   GEN M;  /* via embed_norm */
    1930             : 
    1931             :   GEN D, w, T; /* via resultant if M = NULL */
    1932             : } norm_S;
    1933             : 
    1934             : static GEN
    1935      431054 : get_norm(norm_S *S, GEN a)
    1936             : {
    1937      431054 :   if (S->M)
    1938             :   {
    1939             :     long e;
    1940      429844 :     GEN N = grndtoi( embed_norm(RgM_RgC_mul(S->M, a), S->r1), &e );
    1941      429844 :     if (e > -5) pari_err_PREC( "get_norm");
    1942      429844 :     return N;
    1943             :   }
    1944        1210 :   if (S->w) a = RgV_RgC_mul(S->w, a);
    1945        1210 :   return ZX_resultant_all(S->T, a, S->D, 0);
    1946             : }
    1947             : static void
    1948      183873 : init_norm(norm_S *S, GEN nf, GEN p)
    1949             : {
    1950      183873 :   GEN T = nf_get_pol(nf), M = nf_get_M(nf);
    1951      183873 :   long N = degpol(T), ex = gexpo(M) + gexpo(mului(8 * N, p));
    1952             : 
    1953      183873 :   S->r1 = nf_get_r1(nf);
    1954      183873 :   if (N * ex <= gprecision(M) - 20)
    1955             :   { /* enough prec to use embed_norm */
    1956      183709 :     S->M = M;
    1957      183709 :     S->D = NULL;
    1958      183709 :     S->w = NULL;
    1959      183709 :     S->T = NULL;
    1960             :   }
    1961             :   else
    1962             :   {
    1963         164 :     GEN w = leafcopy(nf_get_zkprimpart(nf)), D = nf_get_zkden(nf), Dp = sqri(p);
    1964             :     long i;
    1965         164 :     if (!equali1(D))
    1966             :     {
    1967         164 :       GEN w1 = D;
    1968         164 :       long v = Z_pval(D, p);
    1969         164 :       D = powiu(p, v);
    1970         164 :       Dp = mulii(D, Dp);
    1971         164 :       gel(w, 1) = remii(w1, Dp);
    1972             :     }
    1973        3406 :     for (i=2; i<=N; i++) gel(w,i) = FpX_red(gel(w,i), Dp);
    1974         164 :     S->M = NULL;
    1975         164 :     S->D = D;
    1976         164 :     S->w = w;
    1977         164 :     S->T = T;
    1978             :   }
    1979      183873 : }
    1980             : /* f = f(pr/p), q = p^(f+1), a in pr.
    1981             :  * Return 1 if v_pr(a) = 1, and 0 otherwise */
    1982             : static int
    1983      431054 : is_uniformizer(GEN a, GEN q, norm_S *S) { return !dvdii(get_norm(S,a), q); }
    1984             : 
    1985             : /* Return x * y, x, y are t_MAT (Fp-basis of in O_K/p), assume (x,y)=1.
    1986             :  * Either x or y may be NULL (= O_K), not both */
    1987             : static GEN
    1988      602550 : mul_intersect(GEN x, GEN y, GEN p)
    1989             : {
    1990      602550 :   if (!x) return y;
    1991      320328 :   if (!y) return x;
    1992      226254 :   return FpM_intersect_i(x, y, p);
    1993             : }
    1994             : /* Fp-basis of (ZK/pr): applied to the primes found in primedec_aux()
    1995             :  * true nf */
    1996             : static GEN
    1997      263566 : Fp_basis(GEN nf, GEN pr)
    1998             : {
    1999             :   long i, j, l;
    2000             :   GEN x, y;
    2001             :   /* already in basis form (from Buchman-Lenstra) ? */
    2002      263566 :   if (typ(pr) == t_MAT) return pr;
    2003             :   /* ordinary prid (from Kummer) */
    2004       62476 :   x = pr_hnf(nf, pr);
    2005       62476 :   l = lg(x);
    2006       62476 :   y = cgetg(l, t_MAT);
    2007      526316 :   for (i=j=1; i<l; i++)
    2008      463840 :     if (gequal1(gcoeff(x,i,i))) gel(y,j++) = gel(x,i);
    2009       62476 :   setlg(y, j); return y;
    2010             : }
    2011             : /* Let Ip = prod_{ P | p } P be the p-radical. The list L contains the
    2012             :  * P (mod Ip) seen as sub-Fp-vector spaces of ZK/Ip.
    2013             :  * Return the list of (Ip / P) (mod Ip).
    2014             :  * N.B: All ideal multiplications are computed as intersections of Fp-vector
    2015             :  * spaces. true nf */
    2016             : static GEN
    2017      183873 : get_LV(GEN nf, GEN L, GEN p, long N)
    2018             : {
    2019      183873 :   long i, l = lg(L)-1;
    2020             :   GEN LV, LW, A, B;
    2021             : 
    2022      183873 :   LV = cgetg(l+1, t_VEC);
    2023      183873 :   if (l == 1) { gel(LV,1) = matid(N); return LV; }
    2024       94074 :   LW = cgetg(l+1, t_VEC);
    2025      357640 :   for (i=1; i<=l; i++) gel(LW,i) = Fp_basis(nf, gel(L,i));
    2026             : 
    2027             :   /* A[i] = L[1]...L[i-1], i = 2..l */
    2028       94074 :   A = cgetg(l+1, t_VEC); gel(A,1) = NULL;
    2029      263566 :   for (i=1; i < l; i++) gel(A,i+1) = mul_intersect(gel(A,i), gel(LW,i), p);
    2030             :   /* B[i] = L[i+1]...L[l], i = 1..(l-1) */
    2031       94074 :   B = cgetg(l+1, t_VEC); gel(B,l) = NULL;
    2032      263566 :   for (i=l; i>=2; i--) gel(B,i-1) = mul_intersect(gel(B,i), gel(LW,i), p);
    2033      357640 :   for (i=1; i<=l; i++) gel(LV,i) = mul_intersect(gel(A,i), gel(B,i), p);
    2034       94074 :   return LV;
    2035             : }
    2036             : 
    2037             : static void
    2038           0 : errprime(GEN p) { pari_err_PRIME("idealprimedec",p); }
    2039             : 
    2040             : /* P = Fp-basis (over O_K/p) for pr.
    2041             :  * V = Z-basis for I_p/pr. ramif != 0 iff some pr|p is ramified.
    2042             :  * Return a p-uniformizer for pr. Assume pr not inert, i.e. m > 0 */
    2043             : static GEN
    2044      254466 : uniformizer(GEN nf, norm_S *S, GEN P, GEN V, GEN p, int ramif)
    2045             : {
    2046      254466 :   long i, l, f, m = lg(P)-1, N = nf_get_degree(nf);
    2047             :   GEN u, Mv, x, q;
    2048             : 
    2049      254466 :   f = N - m; /* we want v_p(Norm(x)) = p^f */
    2050      254466 :   q = powiu(p,f+1);
    2051             : 
    2052      254466 :   u = FpM_FpC_invimage(shallowconcat(P, V), col_ei(N,1), p);
    2053      254466 :   setlg(u, lg(P));
    2054      254466 :   u = centermod(ZM_ZC_mul(P, u), p);
    2055      254466 :   if (is_uniformizer(u, q, S)) return u;
    2056      135412 :   if (signe(gel(u,1)) <= 0) /* make sure u[1] in ]-p,p] */
    2057      114814 :     gel(u,1) = addii(gel(u,1), p); /* try u + p */
    2058             :   else
    2059       20598 :     gel(u,1) = subii(gel(u,1), p); /* try u - p */
    2060      135412 :   if (!ramif || is_uniformizer(u, q, S)) return u;
    2061             : 
    2062             :   /* P/p ramified, u in P^2, not in Q for all other Q|p */
    2063       73673 :   Mv = zk_multable(nf, Z_ZC_sub(gen_1,u));
    2064       73673 :   l = lg(P);
    2065       98871 :   for (i=1; i<l; i++)
    2066             :   {
    2067       98871 :     x = centermod(ZC_add(u, ZM_ZC_mul(Mv, gel(P,i))), p);
    2068       98871 :     if (is_uniformizer(x, q, S)) return x;
    2069             :   }
    2070           0 :   errprime(p);
    2071             :   return NULL; /* LCOV_EXCL_LINE */
    2072             : }
    2073             : 
    2074             : /*******************************************************************/
    2075             : /*                                                                 */
    2076             : /*                   BUCHMANN-LENSTRA ALGORITHM                    */
    2077             : /*                                                                 */
    2078             : /*******************************************************************/
    2079             : static GEN
    2080     3650022 : mk_pr(GEN p, GEN u, long e, long f, GEN t)
    2081     3650022 : { return mkvec5(p, u, utoipos(e), utoipos(f), t); }
    2082             : 
    2083             : /* nf a true nf, u in Z[X]/(T); pr = p Z_K + u Z_K of ramification index e */
    2084             : GEN
    2085     3257767 : idealprimedec_kummer(GEN nf,GEN u,long e,GEN p)
    2086             : {
    2087     3257767 :   GEN t, T = nf_get_pol(nf);
    2088     3257767 :   long f = degpol(u), N = degpol(T);
    2089             : 
    2090     3257767 :   if (f == N)
    2091             :   { /* inert */
    2092      535709 :     u = scalarcol_shallow(p,N);
    2093      535709 :     t = gen_1;
    2094             :   }
    2095             :   else
    2096             :   {
    2097     2722058 :     t = centermod(poltobasis(nf, FpX_div(T, u, p)), p);
    2098     2722058 :     u = centermod(poltobasis(nf, u), p);
    2099     2722058 :     if (e == 1)
    2100             :     { /* make sure v_pr(u) = 1 (automatic if e>1) */
    2101     2483940 :       GEN cw, w = Q_primitive_part(nf_to_scalar_or_alg(nf, u), &cw);
    2102     2483940 :       long v = cw? f - Q_pval(cw, p) * N: f;
    2103     2483940 :       if (ZpX_resultant_val(T, w, p, v + 1) > v)
    2104             :       {
    2105       92323 :         GEN c = gel(u,1);
    2106       92323 :         gel(u,1) = signe(c) > 0? subii(c, p): addii(c, p);
    2107             :       }
    2108             :     }
    2109     2722058 :     t = zk_multable(nf, t);
    2110             :   }
    2111     3257767 :   return mk_pr(p,u,e,f,t);
    2112             : }
    2113             : 
    2114             : typedef struct {
    2115             :   GEN nf, p;
    2116             :   long I;
    2117             : } eltmod_muldata;
    2118             : 
    2119             : static GEN
    2120      705411 : sqr_mod(void *data, GEN x)
    2121             : {
    2122      705411 :   eltmod_muldata *D = (eltmod_muldata*)data;
    2123      705411 :   return FpC_red(nfsqri(D->nf, x), D->p);
    2124             : }
    2125             : static GEN
    2126      298359 : ei_msqr_mod(void *data, GEN x)
    2127             : {
    2128      298359 :   GEN x2 = sqr_mod(data, x);
    2129      298359 :   eltmod_muldata *D = (eltmod_muldata*)data;
    2130      298359 :   return FpC_red(zk_ei_mul(D->nf, x2, D->I), D->p);
    2131             : }
    2132             : /* nf a true nf; compute lift(nf.zk[I]^p mod p) */
    2133             : static GEN
    2134      633597 : pow_ei_mod_p(GEN nf, long I, GEN p)
    2135             : {
    2136      633597 :   pari_sp av = avma;
    2137             :   eltmod_muldata D;
    2138      633597 :   long N = nf_get_degree(nf);
    2139      633597 :   GEN y = col_ei(N,I);
    2140      633597 :   if (I == 1) return y;
    2141      447726 :   D.nf = nf;
    2142      447726 :   D.p = p;
    2143      447726 :   D.I = I;
    2144      447726 :   y = gen_pow_fold(y, p, (void*)&D, &sqr_mod, &ei_msqr_mod);
    2145      447726 :   return gerepileupto(av,y);
    2146             : }
    2147             : 
    2148             : /* nf a true nf; return a Z basis of Z_K's p-radical, phi = x--> x^p-x */
    2149             : static GEN
    2150      183873 : pradical(GEN nf, GEN p, GEN *phi)
    2151             : {
    2152      183873 :   long i, N = nf_get_degree(nf);
    2153             :   GEN q,m,frob,rad;
    2154             : 
    2155             :   /* matrix of Frob: x->x^p over Z_K/p */
    2156      183873 :   frob = cgetg(N+1,t_MAT);
    2157      809214 :   for (i=1; i<=N; i++) gel(frob,i) = pow_ei_mod_p(nf,i,p);
    2158             : 
    2159      183873 :   m = frob; q = p;
    2160      261094 :   while (abscmpiu(q,N) < 0) { q = mulii(q,p); m = FpM_mul(m, frob, p); }
    2161      183873 :   rad = FpM_ker(m, p); /* m = Frob^k, s.t p^k >= N */
    2162      809214 :   for (i=1; i<=N; i++) gcoeff(frob,i,i) = subiu(gcoeff(frob,i,i), 1);
    2163      183873 :   *phi = frob; return rad;
    2164             : }
    2165             : 
    2166             : /* return powers of a: a^0, ... , a^d,  d = dim A */
    2167             : static GEN
    2168      136827 : get_powers(GEN mul, GEN p)
    2169             : {
    2170      136827 :   long i, d = lgcols(mul);
    2171      136827 :   GEN z, pow = cgetg(d+2,t_MAT), P = pow+1;
    2172             : 
    2173      136827 :   gel(P,0) = scalarcol_shallow(gen_1, d-1);
    2174      136827 :   z = gel(mul,1);
    2175      648925 :   for (i=1; i<=d; i++)
    2176             :   {
    2177      512098 :     gel(P,i) = z; /* a^i */
    2178      512098 :     if (i!=d) z = FpM_FpC_mul(mul, z, p);
    2179             :   }
    2180      136827 :   return pow;
    2181             : }
    2182             : 
    2183             : /* minimal polynomial of a in A (dim A = d).
    2184             :  * mul = multiplication table by a in A */
    2185             : static GEN
    2186      100925 : pol_min(GEN mul, GEN p)
    2187             : {
    2188      100925 :   pari_sp av = avma;
    2189      100925 :   GEN z = FpM_deplin(get_powers(mul, p), p);
    2190      100925 :   return gerepilecopy(av, RgV_to_RgX(z,0));
    2191             : }
    2192             : 
    2193             : static GEN
    2194      353089 : get_pr(GEN nf, norm_S *S, GEN p, GEN P, GEN V, int ramif, long N, long flim)
    2195             : {
    2196             :   GEN u, t;
    2197             :   long e, f;
    2198             : 
    2199      353089 :   if (typ(P) == t_VEC)
    2200             :   { /* already done (Kummer) */
    2201       62476 :     f = pr_get_f(P);
    2202       62476 :     if (flim > 0 && f > flim) return NULL;
    2203       61705 :     if (flim == -2) return (GEN)f;
    2204       61699 :     return P;
    2205             :   }
    2206      290613 :   f = N - (lg(P)-1);
    2207      290613 :   if (flim > 0 && f > flim) return NULL;
    2208      289242 :   if (flim == -2) return (GEN)f;
    2209             :   /* P = (p,u) prime. t is an anti-uniformizer: Z_K + t/p Z_K = P^(-1),
    2210             :    * so that v_P(t) = e(P/p)-1 */
    2211      288918 :   if (f == N) {
    2212       34452 :     u = scalarcol_shallow(p,N);
    2213       34452 :     t = gen_1;
    2214       34452 :     e = 1;
    2215             :   } else {
    2216             :     GEN mt;
    2217      254466 :     u = uniformizer(nf, S, P, V, p, ramif);
    2218      254466 :     t = FpM_deplin(zk_multable(nf,u), p);
    2219      254466 :     mt = zk_multable(nf, t);
    2220      254466 :     e = ramif? 1 + ZC_nfval(t,mk_pr(p,u,0,0,mt)): 1;
    2221      254466 :     t = mt;
    2222             :   }
    2223      288918 :   return mk_pr(p,u,e,f,t);
    2224             : }
    2225             : 
    2226             : /* true nf */
    2227             : static GEN
    2228      183873 : primedec_end(GEN nf, GEN L, GEN p, long flim)
    2229             : {
    2230      183873 :   long i, j, l = lg(L), N = nf_get_degree(nf);
    2231      183873 :   GEN LV = get_LV(nf, L,p,N);
    2232      183873 :   int ramif = dvdii(nf_get_disc(nf), p);
    2233      183873 :   norm_S S; init_norm(&S, nf, p);
    2234      536620 :   for (i = j = 1; i < l; i++)
    2235             :   {
    2236      353089 :     GEN P = get_pr(nf, &S, p, gel(L,i), gel(LV,i), ramif, N, flim);
    2237      353089 :     if (!P) continue;
    2238      350947 :     gel(L,j++) = P;
    2239      350947 :     if (flim == -1) return P;
    2240             :   }
    2241      183531 :   setlg(L, j); return L;
    2242             : }
    2243             : 
    2244             : /* prime ideal decomposition of p; if flim>0, restrict to f(P,p) <= flim
    2245             :  * if flim = -1 return only the first P
    2246             :  * if flim = -2 return only the f(P/p) in a t_VECSMALL; true nf */
    2247             : static GEN
    2248     2321157 : primedec_aux(GEN nf, GEN p, long flim)
    2249             : {
    2250     2321157 :   const long TYP = (flim == -2)? t_VECSMALL: t_VEC;
    2251     2321157 :   GEN E, F, L, Ip, phi, f, g, h, UN, T = nf_get_pol(nf);
    2252             :   long i, k, c, iL, N;
    2253             :   int kummer;
    2254             : 
    2255     2321157 :   F = FpX_factor(T, p);
    2256     2321157 :   E = gel(F,2);
    2257     2321157 :   F = gel(F,1);
    2258             : 
    2259     2321157 :   k = lg(F); if (k == 1) errprime(p);
    2260     2321157 :   if ( !dvdii(nf_get_index(nf),p) ) /* p doesn't divide index */
    2261             :   {
    2262     2136090 :     L = cgetg(k, TYP);
    2263     5208417 :     for (i=1; i<k; i++)
    2264             :     {
    2265     3548890 :       GEN t = gel(F,i);
    2266     3548890 :       long f = degpol(t);
    2267     3548890 :       if (flim > 0 && f > flim) { setlg(L, i); break; }
    2268     3076407 :       if (flim == -2)
    2269           0 :         L[i] = f;
    2270             :       else
    2271     3076407 :         gel(L,i) = idealprimedec_kummer(nf, t, E[i],p);
    2272     3076407 :       if (flim == -1) return gel(L,1);
    2273             :     }
    2274     2132010 :     return L;
    2275             :   }
    2276             : 
    2277      185067 :   kummer = 0;
    2278      185067 :   g = FpXV_prod(F, p);
    2279      185067 :   h = FpX_div(T,g,p);
    2280      185067 :   f = FpX_red(ZX_Z_divexact(ZX_sub(ZX_mul(g,h), T), p), p);
    2281             : 
    2282      185067 :   N = degpol(T);
    2283      185067 :   L = cgetg(N+1,TYP);
    2284      185067 :   iL = 1;
    2285      450236 :   for (i=1; i<k; i++)
    2286      266363 :     if (E[i] == 1 || signe(FpX_rem(f,gel(F,i),p)))
    2287       62476 :     {
    2288       63670 :       GEN t = gel(F,i);
    2289       63670 :       kummer = 1;
    2290       63670 :       gel(L,iL++) = idealprimedec_kummer(nf, t, E[i],p);
    2291       63670 :       if (flim == -1) return gel(L,1);
    2292             :     }
    2293             :     else /* F[i] | (f,g,h), happens at least once by Dedekind criterion */
    2294      202693 :       E[i] = 0;
    2295             : 
    2296             :   /* phi matrix of x -> x^p - x in algebra Z_K/p */
    2297      183873 :   Ip = pradical(nf,p,&phi);
    2298             : 
    2299             :   /* split etale algebra Z_K / (p,Ip) */
    2300      183873 :   h = cgetg(N+1,t_VEC);
    2301      183873 :   if (kummer)
    2302             :   { /* split off Kummer factors */
    2303       39629 :     GEN mb, b = NULL;
    2304      148142 :     for (i=1; i<k; i++)
    2305      108513 :       if (!E[i]) b = b? FpX_mul(b, gel(F,i), p): gel(F,i);
    2306       39629 :     if (!b) errprime(p);
    2307       39629 :     b = FpC_red(poltobasis(nf,b), p);
    2308       39629 :     mb = FpM_red(zk_multable(nf,b), p);
    2309             :     /* Fp-base of ideal (Ip, b) in ZK/p */
    2310       39629 :     gel(h,1) = FpM_image(shallowconcat(mb,Ip), p);
    2311             :   }
    2312             :   else
    2313      144244 :     gel(h,1) = Ip;
    2314             : 
    2315      183873 :   UN = col_ei(N, 1);
    2316      401557 :   for (c=1; c; c--)
    2317             :   { /* Let A:= (Z_K/p) / Ip etale; split A2 := A / Im H ~ Im M2
    2318             :        H * ? + M2 * Mi2 = Id_N ==> M2 * Mi2 projector A --> A2 */
    2319      217684 :     GEN M, Mi, M2, Mi2, phi2, mat1, H = gel(h,c); /* maximal rank */
    2320      217684 :     long dim, r = lg(H)-1;
    2321             : 
    2322      217684 :     M   = FpM_suppl(shallowconcat(H,UN), p);
    2323      217684 :     Mi  = FpM_inv(M, p);
    2324      217684 :     M2  = vecslice(M, r+1,N); /* M = (H|M2) invertible */
    2325      217684 :     Mi2 = rowslice(Mi,r+1,N);
    2326             :     /* FIXME: FpM_mul(,M2) could be done with vecpermute */
    2327      217684 :     phi2 = FpM_mul(Mi2, FpM_mul(phi,M2, p), p);
    2328      217684 :     mat1 = FpM_ker(phi2, p);
    2329      217684 :     dim = lg(mat1)-1; /* A2 product of 'dim' fields */
    2330      217684 :     if (dim > 1)
    2331             :     { /* phi2 v = 0 => a = M2 v in Ker phi, a not in Fp.1 + H */
    2332      100925 :       GEN R, a, mula, mul2, v = gel(mat1,2);
    2333             :       long n;
    2334             : 
    2335      100925 :       a = FpM_FpC_mul(M2,v, p); /* not a scalar */
    2336      100925 :       mula = FpM_red(zk_multable(nf,a), p);
    2337      100925 :       mul2 = FpM_mul(Mi2, FpM_mul(mula,M2, p), p);
    2338      100925 :       R = FpX_roots(pol_min(mul2,p), p); /* totally split mod p */
    2339      100925 :       n = lg(R)-1;
    2340      308866 :       for (i=1; i<=n; i++)
    2341             :       {
    2342      207941 :         GEN I = RgM_Rg_sub_shallow(mula, gel(R,i));
    2343      207941 :         gel(h,c++) = FpM_image(shallowconcat(H, I), p);
    2344             :       }
    2345      100925 :       if (n == dim)
    2346      259905 :         for (i=1; i<=n; i++) gel(L,iL++) = gel(h,--c);
    2347             :     }
    2348             :     else /* A2 field ==> H maximal, f = N-r = dim(A2) */
    2349      116759 :       gel(L,iL++) = H;
    2350             :   }
    2351      183873 :   setlg(L, iL);
    2352      183873 :   return primedec_end(nf, L, p, flim);
    2353             : }
    2354             : 
    2355             : GEN
    2356     2315223 : idealprimedec_limit_f(GEN nf, GEN p, long f)
    2357             : {
    2358     2315223 :   pari_sp av = avma;
    2359             :   GEN v;
    2360     2315223 :   if (typ(p) != t_INT) pari_err_TYPE("idealprimedec",p);
    2361     2315223 :   if (f < 0) pari_err_DOMAIN("idealprimedec", "f", "<", gen_0, stoi(f));
    2362     2315223 :   v = primedec_aux(checknf(nf), p, f);
    2363     2315223 :   v = gen_sort(v, (void*)&cmp_prime_over_p, &cmp_nodata);
    2364     2315223 :   return gerepileupto(av,v);
    2365             : }
    2366             : /* true nf */
    2367             : GEN
    2368        5616 : idealprimedec_galois(GEN nf, GEN p)
    2369             : {
    2370        5616 :   pari_sp av = avma;
    2371        5616 :   GEN v = primedec_aux(nf, p, -1);
    2372        5616 :   return gerepilecopy(av,v);
    2373             : }
    2374             : /* true nf */
    2375             : GEN
    2376         318 : idealprimedec_degrees(GEN nf, GEN p)
    2377             : {
    2378         318 :   pari_sp av = avma;
    2379         318 :   GEN v = primedec_aux(nf, p, -2);
    2380         318 :   vecsmall_sort(v); return gerepileuptoleaf(av, v);
    2381             : }
    2382             : GEN
    2383      433056 : idealprimedec_limit_norm(GEN nf, GEN p, GEN B)
    2384      433056 : { return idealprimedec_limit_f(nf, p, logint(B,p)); }
    2385             : GEN
    2386     1091426 : idealprimedec(GEN nf, GEN p)
    2387     1091426 : { return idealprimedec_limit_f(nf, p, 0); }
    2388             : static GEN
    2389       22812 : nf_pV_to_prVV(GEN nf, GEN x)
    2390       76842 : { pari_APPLY_same(idealprimedec(nf, gel(x,i))); }
    2391             : GEN
    2392       33090 : nf_pV_to_prV(GEN nf, GEN x)
    2393             : {
    2394       33090 :   if (lg(x) == 1) return leafcopy(x);
    2395       22812 :   return shallowconcat1(nf_pV_to_prVV(nf, x));
    2396             : }
    2397             : 
    2398             : /* return [Fp[x]: Fp] */
    2399             : static long
    2400        3522 : ffdegree(GEN x, GEN frob, GEN p)
    2401             : {
    2402        3522 :   pari_sp av = avma;
    2403        3522 :   long d, f = lg(frob)-1;
    2404        3522 :   GEN y = x;
    2405             : 
    2406       11322 :   for (d=1; d < f; d++)
    2407             :   {
    2408        9324 :     y = FpM_FpC_mul(frob, y, p);
    2409        9324 :     if (ZV_equal(y, x)) break;
    2410             :   }
    2411        3522 :   return gc_long(av,d);
    2412             : }
    2413             : 
    2414             : static GEN
    2415       79022 : lift_to_zk(GEN v, GEN c, long N)
    2416             : {
    2417       79022 :   GEN w = zerocol(N);
    2418       79022 :   long i, l = lg(c);
    2419      263610 :   for (i=1; i<l; i++) gel(w,c[i]) = gel(v,i);
    2420       79022 :   return w;
    2421             : }
    2422             : 
    2423             : /* return t = 1 mod pr, t = 0 mod p / pr^e(pr/p) */
    2424             : GEN
    2425      828426 : pr_anti_uniformizer(GEN nf, GEN pr)
    2426             : {
    2427      828426 :   long N = nf_get_degree(nf), e = pr_get_e(pr);
    2428             :   GEN p, b, z;
    2429             : 
    2430      828426 :   if (e * pr_get_f(pr) == N) return gen_1;
    2431      393684 :   p = pr_get_p(pr);
    2432      393684 :   b = pr_get_tau(pr); /* ZM */
    2433      393684 :   if (e != 1)
    2434             :   {
    2435       19530 :     GEN q = powiu(pr_get_p(pr), e-1);
    2436       19530 :     b = ZM_Z_divexact(ZM_powu(b,e), q);
    2437             :   }
    2438             :   /* b = tau^e / p^(e-1), v_pr(b) = 0, v_Q(b) >= e(Q/p) for other Q | p */
    2439      393684 :   z = ZM_hnfmodid(FpM_red(b,p), p); /* ideal (p) / pr^e, coprime to pr */
    2440      393684 :   z = idealaddtoone_raw(nf, pr, z);
    2441      393684 :   return Z_ZC_sub(gen_1, FpC_center(FpC_red(z,p), p, shifti(p,-1)));
    2442             : }
    2443             : 
    2444             : #define mpr_TAU 1
    2445             : #define mpr_FFP 2
    2446             : #define mpr_NFP 5
    2447             : #define SMALLMODPR 4
    2448             : #define LARGEMODPR 6
    2449             : static GEN
    2450     3010880 : modpr_TAU(GEN modpr)
    2451             : {
    2452     3010880 :   GEN tau = gel(modpr,mpr_TAU);
    2453     3010880 :   return isintzero(tau)? NULL: tau;
    2454             : }
    2455             : 
    2456             : /* prh = HNF matrix, which is identity but for the first line. Return a
    2457             :  * projector to ZK / prh ~ Z/prh[1,1] */
    2458             : GEN
    2459      883020 : dim1proj(GEN prh)
    2460             : {
    2461      883020 :   long i, N = lg(prh)-1;
    2462      883020 :   GEN ffproj = cgetg(N+1, t_VEC);
    2463      883020 :   GEN x, q = gcoeff(prh,1,1);
    2464      883020 :   gel(ffproj,1) = gen_1;
    2465     2036298 :   for (i=2; i<=N; i++)
    2466             :   {
    2467     1153278 :     x = gcoeff(prh,1,i);
    2468     1153278 :     if (signe(x)) x = subii(q,x);
    2469     1153278 :     gel(ffproj,i) = x;
    2470             :   }
    2471      883020 :   return ffproj;
    2472             : }
    2473             : 
    2474             : /* p not necessarily prime, but coprime to denom(basis) */
    2475             : GEN
    2476         174 : QXQV_to_FpM(GEN basis, GEN T, GEN p)
    2477             : {
    2478         174 :   long i, l = lg(basis), f = degpol(T);
    2479         174 :   GEN z = cgetg(l, t_MAT);
    2480        3870 :   for (i = 1; i < l; i++)
    2481             :   {
    2482        3696 :     GEN w = gel(basis,i);
    2483        3696 :     if (typ(w) == t_INT)
    2484           0 :       w = scalarcol_shallow(w, f);
    2485             :     else
    2486             :     {
    2487             :       GEN dx;
    2488        3696 :       w = Q_remove_denom(w, &dx);
    2489        3696 :       w = FpXQ_red(w, T, p);
    2490        3696 :       if (dx)
    2491             :       {
    2492           0 :         dx = Fp_inv(dx, p);
    2493           0 :         if (!equali1(dx)) w = FpX_Fp_mul(w, dx, p);
    2494             :       }
    2495        3696 :       w = RgX_to_RgC(w, f);
    2496             :     }
    2497        3696 :     gel(z,i) = w; /* w_i mod (T,p) */
    2498             :   }
    2499         174 :   return z;
    2500             : }
    2501             : 
    2502             : /* initialize reduction mod pr; if zk = 1, will only init data required to
    2503             :  * reduce *integral* element.  Realize (O_K/pr) as Fp[X] / (T), for a
    2504             :  * *monic* T; use variable vT for varn(T) */
    2505             : static GEN
    2506      992538 : modprinit(GEN nf, GEN pr, int zk, long vT)
    2507             : {
    2508      992538 :   pari_sp av = avma;
    2509             :   GEN res, tau, mul, x, p, T, pow, ffproj, nfproj, prh, c;
    2510             :   long N, i, k, f;
    2511             : 
    2512      992538 :   nf = checknf(nf); checkprid(pr);
    2513      992526 :   if (vT < 0) vT = nf_get_varn(nf);
    2514      992526 :   f = pr_get_f(pr);
    2515      992526 :   N = nf_get_degree(nf);
    2516      992526 :   prh = pr_hnf(nf, pr);
    2517      992526 :   tau = zk? gen_0: pr_anti_uniformizer(nf, pr);
    2518      992526 :   p = pr_get_p(pr);
    2519             : 
    2520      992526 :   if (f == 1)
    2521             :   {
    2522      867324 :     res = cgetg(SMALLMODPR, t_COL);
    2523      867324 :     gel(res,mpr_TAU) = tau;
    2524      867324 :     gel(res,mpr_FFP) = dim1proj(prh);
    2525      867324 :     gel(res,3) = pr; return gerepilecopy(av, res);
    2526             :   }
    2527             : 
    2528      125202 :   c = cgetg(f+1, t_VECSMALL);
    2529      125202 :   ffproj = cgetg(N+1, t_MAT);
    2530      514962 :   for (k=i=1; i<=N; i++)
    2531             :   {
    2532      389760 :     x = gcoeff(prh, i,i);
    2533      389760 :     if (!is_pm1(x)) { c[k] = i; gel(ffproj,i) = col_ei(N, i); k++; }
    2534             :     else
    2535      110304 :       gel(ffproj,i) = ZC_neg(gel(prh,i));
    2536             :   }
    2537      125202 :   ffproj = rowpermute(ffproj, c);
    2538      125202 :   if (! dvdii(nf_get_index(nf), p))
    2539             :   {
    2540       89300 :     GEN basis = nf_get_zkprimpart(nf), D = nf_get_zkden(nf);
    2541       89300 :     if (N == f)
    2542             :     { /* pr inert */
    2543       38826 :       T = nf_get_pol(nf);
    2544       38826 :       T = FpX_red(T,p);
    2545       38826 :       ffproj = RgV_to_RgM(basis, lg(basis)-1);
    2546             :     }
    2547             :     else
    2548             :     {
    2549       50474 :       T = RgV_RgC_mul(basis, pr_get_gen(pr));
    2550       50474 :       T = FpX_normalize(FpX_red(T,p),p);
    2551       50474 :       basis = FqV_red(vecpermute(basis,c), T, p);
    2552       50474 :       basis = RgV_to_RgM(basis, lg(basis)-1);
    2553       50474 :       ffproj = ZM_mul(basis, ffproj);
    2554             :     }
    2555       89300 :     setvarn(T, vT);
    2556       89300 :     ffproj = FpM_red(ffproj, p);
    2557       89300 :     if (!equali1(D))
    2558             :     {
    2559       28577 :       D = modii(D,p);
    2560       28577 :       if (!equali1(D)) ffproj = FpM_Fp_mul(ffproj, Fp_inv(D,p), p);
    2561             :     }
    2562             : 
    2563       89300 :     res = cgetg(SMALLMODPR+1, t_COL);
    2564       89300 :     gel(res,mpr_TAU) = tau;
    2565       89300 :     gel(res,mpr_FFP) = ffproj;
    2566       89300 :     gel(res,3) = pr;
    2567       89300 :     gel(res,4) = T; return gerepilecopy(av, res);
    2568             :   }
    2569             : 
    2570       35902 :   if (uisprime(f))
    2571             :   {
    2572       33904 :     mul = ei_multable(nf, c[2]);
    2573       33904 :     mul = vecpermute(mul, c);
    2574             :   }
    2575             :   else
    2576             :   {
    2577             :     GEN v, u, u2, frob;
    2578             :     long deg,deg1,deg2;
    2579             : 
    2580             :     /* matrix of Frob: x->x^p over Z_K/pr = < w[c1], ..., w[cf] > over Fp */
    2581        1998 :     frob = cgetg(f+1, t_MAT);
    2582       10254 :     for (i=1; i<=f; i++)
    2583             :     {
    2584        8256 :       x = pow_ei_mod_p(nf,c[i],p);
    2585        8256 :       gel(frob,i) = FpM_FpC_mul(ffproj, x, p);
    2586             :     }
    2587        1998 :     u = col_ei(f,2); k = 2;
    2588        1998 :     deg1 = ffdegree(u, frob, p);
    2589        3516 :     while (deg1 < f)
    2590             :     {
    2591        1518 :       k++; u2 = col_ei(f, k);
    2592        1518 :       deg2 = ffdegree(u2, frob, p);
    2593        1518 :       deg = ulcm(deg1,deg2);
    2594        1518 :       if (deg == deg1) continue;
    2595        1512 :       if (deg == deg2) { deg1 = deg2; u = u2; continue; }
    2596           6 :       u = ZC_add(u, u2);
    2597           6 :       while (ffdegree(u, frob, p) < deg) u = ZC_add(u, u2);
    2598           6 :       deg1 = deg;
    2599             :     }
    2600        1998 :     v = lift_to_zk(u,c,N);
    2601             : 
    2602        1998 :     mul = cgetg(f+1,t_MAT);
    2603        1998 :     gel(mul,1) = v; /* assume w_1 = 1 */
    2604        8256 :     for (i=2; i<=f; i++) gel(mul,i) = zk_ei_mul(nf,v,c[i]);
    2605             :   }
    2606             : 
    2607             :   /* Z_K/pr = Fp(v), mul = mul by v */
    2608       35902 :   mul = FpM_red(mul, p);
    2609       35902 :   mul = FpM_mul(ffproj, mul, p);
    2610             : 
    2611       35902 :   pow = get_powers(mul, p);
    2612       35902 :   T = RgV_to_RgX(FpM_deplin(pow, p), vT);
    2613       35902 :   nfproj = cgetg(f+1, t_MAT);
    2614      112926 :   for (i=1; i<=f; i++) gel(nfproj,i) = lift_to_zk(gel(pow,i), c, N);
    2615             : 
    2616       35902 :   setlg(pow, f+1);
    2617       35902 :   ffproj = FpM_mul(FpM_inv(pow, p), ffproj, p);
    2618             : 
    2619       35902 :   res = cgetg(LARGEMODPR, t_COL);
    2620       35902 :   gel(res,mpr_TAU) = tau;
    2621       35902 :   gel(res,mpr_FFP) = ffproj;
    2622       35902 :   gel(res,3) = pr;
    2623       35902 :   gel(res,4) = T;
    2624       35902 :   gel(res,mpr_NFP) = nfproj; return gerepilecopy(av, res);
    2625             : }
    2626             : 
    2627             : GEN
    2628           6 : nfmodprinit(GEN nf, GEN pr) { return modprinit(nf, pr, 0, -1); }
    2629             : GEN
    2630      150396 : zkmodprinit(GEN nf, GEN pr) { return modprinit(nf, pr, 1, -1); }
    2631             : GEN
    2632          66 : nfmodprinit0(GEN nf, GEN pr, long v) { return modprinit(nf, pr, 0, v); }
    2633             : 
    2634             : /* x may be a modpr */
    2635             : static int
    2636     3739622 : ok_modpr(GEN x)
    2637     3739622 : { return typ(x) == t_COL && lg(x) >= SMALLMODPR && lg(x) <= LARGEMODPR; }
    2638             : void
    2639         180 : checkmodpr(GEN x)
    2640             : {
    2641         180 :   if (!ok_modpr(x)) pari_err_TYPE("checkmodpr [use nfmodprinit]", x);
    2642         180 :   checkprid(modpr_get_pr(x));
    2643         180 : }
    2644             : GEN
    2645      118074 : get_modpr(GEN x)
    2646      118074 : { return ok_modpr(x)? x: NULL; }
    2647             : 
    2648             : int
    2649    19614274 : checkprid_i(GEN x)
    2650             : {
    2651    18912372 :   return (typ(x) == t_VEC && lg(x) == 6
    2652    18849762 :           && typ(gel(x,2)) == t_COL && typ(gel(x,3)) == t_INT
    2653    38526646 :           && typ(gel(x,5)) != t_COL); /* tau changed to t_MAT/t_INT in 2.6 */
    2654             : }
    2655             : void
    2656    15353470 : checkprid(GEN x)
    2657    15353470 : { if (!checkprid_i(x)) pari_err_TYPE("checkprid",x); }
    2658             : GEN
    2659      805278 : get_prid(GEN x)
    2660             : {
    2661      805278 :   long lx = lg(x);
    2662      805278 :   if (lx == 3 && typ(x) == t_VEC) x = gel(x,1);
    2663      805278 :   if (checkprid_i(x)) return x;
    2664      595434 :   if (ok_modpr(x)) {
    2665       92970 :     x = modpr_get_pr(x);
    2666       92970 :     if (checkprid_i(x)) return x;
    2667             :   }
    2668      502464 :   return NULL;
    2669             : }
    2670             : 
    2671             : static GEN
    2672     3025934 : to_ff_init(GEN nf, GEN *pr, GEN *T, GEN *p, int zk)
    2673             : {
    2674     3025934 :   GEN modpr = ok_modpr(*pr)? *pr: modprinit(nf, *pr, zk, -1);
    2675     3025922 :   *T = modpr_get_T(modpr);
    2676     3025922 :   *pr = modpr_get_pr(modpr);
    2677     3025922 :   *p = pr_get_p(*pr); return modpr;
    2678             : }
    2679             : 
    2680             : /* Return an element of O_K which is set to x Mod T */
    2681             : GEN
    2682        3864 : modpr_genFq(GEN modpr)
    2683             : {
    2684        3864 :   switch(lg(modpr))
    2685             :   {
    2686         786 :     case SMALLMODPR: /* Fp */
    2687         786 :       return gen_1;
    2688        1344 :     case LARGEMODPR:  /* painful case, p \mid index */
    2689        1344 :       return gmael(modpr,mpr_NFP, 2);
    2690        1734 :     default: /* trivial case : p \nmid index */
    2691             :     {
    2692        1734 :       long v = varn( modpr_get_T(modpr) );
    2693        1734 :       return pol_x(v);
    2694             :     }
    2695             :   }
    2696             : }
    2697             : 
    2698             : GEN
    2699     3009866 : nf_to_Fq_init(GEN nf, GEN *pr, GEN *T, GEN *p) {
    2700     3009866 :   GEN modpr = to_ff_init(nf,pr,T,p,0);
    2701     3009854 :   GEN tau = modpr_TAU(modpr);
    2702     3009854 :   if (!tau) gel(modpr,mpr_TAU) = pr_anti_uniformizer(nf, *pr);
    2703     3009854 :   return modpr;
    2704             : }
    2705             : GEN
    2706       16068 : zk_to_Fq_init(GEN nf, GEN *pr, GEN *T, GEN *p) {
    2707       16068 :   return to_ff_init(nf,pr,T,p,1);
    2708             : }
    2709             : 
    2710             : /* assume x in 'basis' form (t_COL) */
    2711             : GEN
    2712     5481719 : zk_to_Fq(GEN x, GEN modpr)
    2713             : {
    2714     5481719 :   GEN pr = modpr_get_pr(modpr), p = pr_get_p(pr);
    2715     5481719 :   GEN ffproj = gel(modpr,mpr_FFP);
    2716     5481719 :   GEN T = modpr_get_T(modpr);
    2717     5481719 :   return T? FpM_FpC_mul_FpX(ffproj,x, p, varn(T)): FpV_dotproduct(ffproj,x, p);
    2718             : }
    2719             : 
    2720             : /* REDUCTION Modulo a prime ideal */
    2721             : 
    2722             : /* nf a true nf, not GC-clean, OK for gerepileupto */
    2723             : static GEN
    2724    11915180 : nf_to_Fq_i(GEN nf, GEN x0, GEN modpr)
    2725             : {
    2726    11915180 :   GEN x = x0, den, pr = modpr_get_pr(modpr), p = pr_get_p(pr);
    2727    11915180 :   long tx = typ(x);
    2728             : 
    2729    11915180 :   if (tx == t_POLMOD) { x = gel(x,2); tx = typ(x); }
    2730    11915180 :   switch(tx)
    2731             :   {
    2732     6510085 :     case t_INT: return modii(x, p);
    2733        4778 :     case t_FRAC: return Rg_to_Fp(x, p);
    2734      175074 :     case t_POL:
    2735      175074 :       switch(lg(x))
    2736             :       {
    2737         192 :         case 2: return gen_0;
    2738       22116 :         case 3: return Rg_to_Fp(gel(x,2), p);
    2739             :       }
    2740      152766 :       x = Q_remove_denom(x, &den);
    2741      152766 :       x = poltobasis(nf, x);
    2742             :       /* content(x) and den may not be coprime */
    2743      152670 :       break;
    2744     5225243 :     case t_COL:
    2745     5225243 :       x = Q_remove_denom(x, &den);
    2746             :       /* content(x) and den are coprime */
    2747     5225243 :       if (lg(x)-1 == nf_get_degree(nf)) break;
    2748          48 :     default: pari_err_TYPE("Rg_to_ff",x);
    2749             :       return NULL;/*LCOV_EXCL_LINE*/
    2750             :   }
    2751     5377865 :   if (den)
    2752             :   {
    2753       42036 :     long v = Z_pvalrem(den, p, &den);
    2754       42036 :     if (v)
    2755             :     {
    2756        1542 :       if (tx == t_POL) v -= ZV_pvalrem(x, p, &x);
    2757             :       /* now v = valuation(true denominator of x) */
    2758        1542 :       if (v > 0)
    2759             :       {
    2760        1026 :         GEN tau = modpr_TAU(modpr);
    2761        1026 :         if (!tau) pari_err_TYPE("zk_to_ff", x0);
    2762        1026 :         x = nfmuli(nf,x, nfpow_u(nf, tau, v));
    2763        1026 :         v -= ZV_pvalrem(x, p, &x);
    2764             :       }
    2765        1542 :       if (v > 0) pari_err_INV("Rg_to_ff", mkintmod(gen_0,p));
    2766        1518 :       if (v) return gen_0;
    2767        1056 :       if (is_pm1(den)) den = NULL;
    2768             :     }
    2769       41550 :     x = FpC_red(x, p);
    2770             :   }
    2771     5377379 :   x = zk_to_Fq(x, modpr);
    2772     5377379 :   if (den)
    2773             :   {
    2774       41100 :     GEN c = Fp_inv(den, p);
    2775       41100 :     x = typ(x) == t_INT? Fp_mul(x,c,p): FpX_Fp_mul(x,c,p);
    2776             :   }
    2777     5377379 :   return x;
    2778             : }
    2779             : 
    2780             : GEN
    2781         180 : nfreducemodpr(GEN nf, GEN x, GEN modpr)
    2782             : {
    2783         180 :   pari_sp av = avma;
    2784         180 :   nf = checknf(nf); checkmodpr(modpr);
    2785         180 :   return gerepileupto(av, algtobasis(nf, Fq_to_nf(nf_to_Fq_i(nf,x,modpr),modpr)));
    2786             : }
    2787             : 
    2788             : GEN
    2789         300 : nfmodpr(GEN nf, GEN x, GEN pr)
    2790             : {
    2791         300 :   pari_sp av = avma;
    2792             :   GEN T, p, modpr;
    2793         300 :   nf = checknf(nf);
    2794         300 :   modpr = nf_to_Fq_init(nf, &pr, &T, &p);
    2795         294 :   if (typ(x) == t_MAT && lg(x) == 3)
    2796          36 :   {
    2797          42 :     GEN y, v = famat_nfvalrem(nf, x, pr, &y);
    2798          42 :     long s = signe(v);
    2799          42 :     if (s < 0) pari_err_INV("nfmodpr", mkintmod(gen_0,p));
    2800          36 :     if (s > 0)
    2801          24 :       x = gen_0;
    2802             :     else
    2803          12 :       x = FqV_factorback(nfV_to_FqV(gel(y,1), nf, modpr), gel(y,2), T, p);
    2804             :   }
    2805             :   else
    2806         252 :     x = nf_to_Fq_i(nf, x, modpr);
    2807         192 :   if (!T) return gerepileupto(av, Fp_to_mod(x, p));
    2808          48 :   x = Fq_to_FF(x, Tp_to_FF(T,p));
    2809          48 :   return gerepilecopy(av, x);
    2810             : }
    2811             : GEN
    2812          66 : nfmodprlift(GEN nf, GEN x, GEN pr)
    2813             : {
    2814          66 :   pari_sp av = avma;
    2815             :   GEN T, p, modpr;
    2816             :   long d;
    2817          66 :   nf = checknf(nf);
    2818          66 :   switch(typ(x))
    2819             :   {
    2820           6 :     case t_INT: return icopy(x);
    2821          24 :     case t_INTMOD: return icopy(gel(x,2));
    2822          12 :     case t_FFELT: break;
    2823          24 :     case t_VEC: case t_COL: case t_MAT:
    2824          54 :       pari_APPLY_same(nfmodprlift(nf,gel(x,i),pr));
    2825           0 :     default: pari_err_TYPE("nfmodprlit",x);
    2826             :   }
    2827          12 :   x = FF_to_FpXQ(x);
    2828          12 :   setvarn(x, nf_get_varn(nf));
    2829          12 :   d = degpol(x);
    2830          12 :   if (d <= 0) { set_avma(av); return d? gen_0: icopy(gel(x,2)); }
    2831          12 :   modpr = nf_to_Fq_init(nf, &pr, &T, &p);
    2832          12 :   return gerepilecopy(av, Fq_to_nf(x, modpr));
    2833             : }
    2834             : 
    2835             : /* lift A from residue field to nf */
    2836             : GEN
    2837     2644223 : Fq_to_nf(GEN A, GEN modpr)
    2838             : {
    2839             :   long dA;
    2840     2644223 :   if (typ(A) == t_INT || lg(modpr) < LARGEMODPR) return A;
    2841       38377 :   dA = degpol(A);
    2842       38377 :   if (dA <= 0) return dA ? gen_0: gel(A,2);
    2843       34784 :   return ZM_ZX_mul(gel(modpr,mpr_NFP), A);
    2844             : }
    2845             : GEN
    2846           0 : FqV_to_nfV(GEN x, GEN modpr)
    2847           0 : { pari_APPLY_same(Fq_to_nf(gel(x,i), modpr)) }
    2848             : GEN
    2849        2514 : FqM_to_nfM(GEN A, GEN modpr)
    2850             : {
    2851        2514 :   long i,j,h,l = lg(A);
    2852        2514 :   GEN B = cgetg(l, t_MAT);
    2853             : 
    2854        2514 :   if (l == 1) return B;
    2855        2256 :   h = lgcols(A);
    2856        9435 :   for (j=1; j<l; j++)
    2857             :   {
    2858        7179 :     GEN Aj = gel(A,j), Bj = cgetg(h,t_COL); gel(B,j) = Bj;
    2859       45195 :     for (i=1; i<h; i++) gel(Bj,i) = Fq_to_nf(gel(Aj,i), modpr);
    2860             :   }
    2861        2256 :   return B;
    2862             : }
    2863             : GEN
    2864        8585 : FqX_to_nfX(GEN x, GEN modpr)
    2865             : {
    2866        8585 :   if (typ(x) != t_POL) return icopy(x); /* scalar */
    2867       35319 :   pari_APPLY_pol(Fq_to_nf(gel(x,i), modpr));
    2868             : }
    2869             : 
    2870             : /* true nf */
    2871             : static GEN
    2872    11914748 : gc_nf_to_Fq(GEN nf, GEN A, GEN modpr)
    2873             : {
    2874    11914748 :   pari_sp av = avma;
    2875    11914748 :   return gerepileupto(av, nf_to_Fq_i(nf, A, modpr));
    2876             : }
    2877             : GEN
    2878    10832288 : nf_to_Fq(GEN nf, GEN A, GEN modpr)
    2879    10832288 : { return gc_nf_to_Fq(checknf(nf), A, modpr); }
    2880             : /* A t_VEC/t_COL */
    2881             : GEN
    2882      143496 : nfV_to_FqV(GEN x, GEN nf, GEN modpr)
    2883             : {
    2884      143496 :   nf = checknf(nf);
    2885      785859 :   pari_APPLY_same(gc_nf_to_Fq(nf, gel(x,i), modpr));
    2886             : }
    2887             : /* A  t_MAT */
    2888             : GEN
    2889        1604 : nfM_to_FqM(GEN A, GEN nf, GEN modpr)
    2890             : {
    2891        1604 :   long i,j,h,l = lg(A);
    2892        1604 :   GEN B = cgetg(l,t_MAT);
    2893             : 
    2894        1604 :   if (l == 1) return B;
    2895        1604 :   h = lgcols(A); nf = checknf(nf);
    2896       36532 :   for (j=1; j<l; j++)
    2897             :   {
    2898       34928 :     GEN Aj = gel(A,j), Bj = cgetg(h,t_COL); gel(B,j) = Bj;
    2899      262116 :     for (i=1; i<h; i++) gel(Bj,i) = gc_nf_to_Fq(nf, gel(Aj,i), modpr);
    2900             :   }
    2901        1604 :   return B;
    2902             : }
    2903             : /* A t_POL */
    2904             : GEN
    2905        7902 : nfX_to_FqX(GEN x, GEN nf, GEN modpr)
    2906             : {
    2907        7902 :   nf = checknf(nf);
    2908       41183 :   pari_APPLY_pol(gc_nf_to_Fq(nf, gel(x,i), modpr));
    2909             : }
    2910             : 
    2911             : /*******************************************************************/
    2912             : /*                                                                 */
    2913             : /*                       RELATIVE ROUND 2                          */
    2914             : /*                                                                 */
    2915             : /*******************************************************************/
    2916             : /* Shallow functions */
    2917             : /* FIXME: use a bb_field and export the nfX_* routines */
    2918             : static GEN
    2919        3474 : nfX_sub(GEN nf, GEN x, GEN y)
    2920             : {
    2921        3474 :   long i, lx = lg(x), ly = lg(y);
    2922             :   GEN z;
    2923        3474 :   if (ly <= lx) {
    2924        3474 :     z = cgetg(lx,t_POL); z[1] = x[1];
    2925       19776 :     for (i=2; i < ly; i++) gel(z,i) = nfsub(nf,gel(x,i),gel(y,i));
    2926        3474 :     for (   ; i < lx; i++) gel(z,i) = gel(x,i);
    2927        3474 :     z = normalizepol_lg(z, lx);
    2928             :   } else {
    2929           0 :     z = cgetg(ly,t_POL); z[1] = y[1];
    2930           0 :     for (i=2; i < lx; i++) gel(z,i) = nfsub(nf,gel(x,i),gel(y,i));
    2931           0 :     for (   ; i < ly; i++) gel(z,i) = gneg(gel(y,i));
    2932           0 :     z = normalizepol_lg(z, ly);
    2933             :   }
    2934        3474 :   return z;
    2935             : }
    2936             : /* FIXME: quadratic multiplication */
    2937             : static GEN
    2938       17636 : nfX_mul(GEN nf, GEN a, GEN b)
    2939             : {
    2940       17636 :   long da = degpol(a), db = degpol(b), dc, lc, k;
    2941             :   GEN c;
    2942       17636 :   if (da < 0 || db < 0) return gen_0;
    2943       17636 :   dc = da + db;
    2944       17636 :   if (dc == 0) return nfmul(nf, gel(a,2),gel(b,2));
    2945       17636 :   lc = dc+3;
    2946       17636 :   c = cgetg(lc, t_POL); c[1] = a[1];
    2947      144230 :   for (k = 0; k <= dc; k++)
    2948             :   {
    2949      126594 :     long i, I = minss(k, da);
    2950      126594 :     GEN d = NULL;
    2951      453356 :     for (i = maxss(k-db, 0); i <= I; i++)
    2952             :     {
    2953      326762 :       GEN e = nfmul(nf, gel(a, i+2), gel(b, k-i+2));
    2954      326762 :       d = d? nfadd(nf, d, e): e;
    2955             :     }
    2956      126594 :     gel(c, k+2) = d;
    2957             :   }
    2958       17636 :   return normalizepol_lg(c, lc);
    2959             : }
    2960             : /* assume b monic */
    2961             : static GEN
    2962       14162 : nfX_rem(GEN nf, GEN a, GEN b)
    2963             : {
    2964       14162 :   long da = degpol(a), db = degpol(b);
    2965       14162 :   if (da < 0) return gen_0;
    2966       14162 :   a = leafcopy(a);
    2967       34078 :   while (da >= db)
    2968             :   {
    2969       19916 :     long i, k = da;
    2970       19916 :     GEN A = gel(a, k+2);
    2971      163134 :     for (i = db-1, k--; i >= 0; i--, k--)
    2972      143218 :       gel(a,k+2) = nfsub(nf, gel(a,k+2), nfmul(nf, A, gel(b,i+2)));
    2973       19916 :     a = normalizepol_lg(a, lg(a)-1);
    2974       19916 :     da = degpol(a);
    2975             :   }
    2976       14162 :   return a;
    2977             : }
    2978             : static GEN
    2979       14162 : nfXQ_mul(GEN nf, GEN a, GEN b, GEN T)
    2980             : {
    2981       14162 :   GEN c = nfX_mul(nf, a, b);
    2982       14162 :   if (typ(c) != t_POL) return c;
    2983       14162 :   return nfX_rem(nf, c, T);
    2984             : }
    2985             : 
    2986             : static void
    2987        3594 : fill(long l, GEN H, GEN Hx, GEN I, GEN Ix)
    2988             : {
    2989             :   long i;
    2990        3594 :   if (typ(Ix) == t_VEC) /* standard */
    2991       13071 :     for (i=1; i<l; i++) { gel(H,i) = gel(Hx,i); gel(I,i) = gel(Ix,i); }
    2992             :   else /* constant ideal */
    2993        3282 :     for (i=1; i<l; i++) { gel(H,i) = gel(Hx,i); gel(I,i) = Ix; }
    2994        3594 : }
    2995             : 
    2996             : /* given MODULES x and y by their pseudo-bases, returns a pseudo-basis of the
    2997             :  * module generated by x and y. */
    2998             : static GEN
    2999        1797 : rnfjoinmodules_i(GEN nf, GEN Hx, GEN Ix, GEN Hy, GEN Iy)
    3000             : {
    3001        1797 :   long lx = lg(Hx), ly = lg(Hy), l = lx+ly-1;
    3002        1797 :   GEN H = cgetg(l, t_MAT), I = cgetg(l, t_VEC);
    3003        1797 :   fill(lx, H     , Hx, I     , Ix);
    3004        1797 :   fill(ly, H+lx-1, Hy, I+lx-1, Iy); return nfhnf(nf, mkvec2(H, I));
    3005             : }
    3006             : static GEN
    3007        1115 : rnfjoinmodules(GEN nf, GEN x, GEN y)
    3008             : {
    3009        1115 :   if (!x) return y;
    3010         540 :   if (!y) return x;
    3011         540 :   return rnfjoinmodules_i(nf, gel(x,1), gel(x,2), gel(y,1), gel(y,2));
    3012             : }
    3013             : 
    3014             : typedef struct {
    3015             :   GEN multab, T,p;
    3016             :   long h;
    3017             : } rnfeltmod_muldata;
    3018             : 
    3019             : static GEN
    3020       13876 : _sqr(void *data, GEN x)
    3021             : {
    3022       13876 :   rnfeltmod_muldata *D = (rnfeltmod_muldata *) data;
    3023        8876 :   GEN z = x? tablesqr(D->multab,x)
    3024       13876 :            : tablemul_ei_ej(D->multab,D->h,D->h);
    3025       13876 :   return FqC_red(z,D->T,D->p);
    3026             : }
    3027             : static GEN
    3028        3564 : _msqr(void *data, GEN x)
    3029             : {
    3030        3564 :   GEN x2 = _sqr(data, x), z;
    3031        3564 :   rnfeltmod_muldata *D = (rnfeltmod_muldata *) data;
    3032        3564 :   z = tablemul_ei(D->multab, x2, D->h);
    3033        3564 :   return FqC_red(z,D->T,D->p);
    3034             : }
    3035             : 
    3036             : /* Compute W[h]^n mod (T,p) in the extension, assume n >= 0. T a ZX */
    3037             : static GEN
    3038        5000 : rnfeltid_powmod(GEN multab, long h, GEN n, GEN T, GEN p)
    3039             : {
    3040        5000 :   pari_sp av = avma;
    3041             :   GEN y;
    3042             :   rnfeltmod_muldata D;
    3043             : 
    3044        5000 :   if (!signe(n)) return gen_1;
    3045             : 
    3046        5000 :   D.multab = multab;
    3047        5000 :   D.h = h;
    3048        5000 :   D.T = T;
    3049        5000 :   D.p = p;
    3050        5000 :   y = gen_pow_fold(NULL, n, (void*)&D, &_sqr, &_msqr);
    3051        5000 :   return gerepilecopy(av, y);
    3052             : }
    3053             : 
    3054             : /* P != 0 has at most degpol(P) roots. Look for an element in Fq which is not
    3055             :  * a root, cf repres() */
    3056             : static GEN
    3057          18 : FqX_non_root(GEN P, GEN T, GEN p)
    3058             : {
    3059          18 :   long dP = degpol(P), f, vT;
    3060             :   long i, j, k, pi, pp;
    3061             :   GEN v;
    3062             : 
    3063          18 :   if (dP == 0) return gen_1;
    3064          18 :   pp = is_bigint(p) ? dP+1: itos(p);
    3065          18 :   v = cgetg(dP + 2, t_VEC);
    3066          18 :   gel(v,1) = gen_0;
    3067          18 :   if (T)
    3068           0 :   { f = degpol(T); vT = varn(T); }
    3069             :   else
    3070          18 :   { f = 1; vT = 0; }
    3071          36 :   for (i=pi=1; i<=f; i++,pi*=pp)
    3072             :   {
    3073          18 :     GEN gi = i == 1? gen_1: pol_xn(i-1, vT), jgi = gi;
    3074          36 :     for (j=1; j<pp; j++)
    3075             :     {
    3076          36 :       for (k=1; k<=pi; k++)
    3077             :       {
    3078          18 :         GEN z = Fq_add(gel(v,k), jgi, T,p);
    3079          18 :         if (!gequal0(FqX_eval(P, z, T,p))) return z;
    3080          18 :         gel(v, j*pi+k) = z;
    3081             :       }
    3082          18 :       if (j < pp-1) jgi = Fq_add(jgi, gi, T,p); /* j*g[i] */
    3083             :     }
    3084             :   }
    3085          18 :   return NULL;
    3086             : }
    3087             : 
    3088             : /* true nf, x t_POL */
    3089             : static int
    3090        6954 : nfpolisintegral_i(GEN nf, GEN x)
    3091             : {
    3092        6954 :   GEN d, T = nf_get_pol(nf);
    3093        6954 :   long l = lg(x);
    3094        6954 :   if (varn(x) != varn(T)) pari_err_VAR("nfisintegral", x,T);
    3095        6954 :   if (l >= lg(T)) { x = RgX_rem(x, T); l = lg(x); }
    3096        6954 :   if (l == 2) return 1;
    3097        6954 :   if (l == 3)
    3098             :   {
    3099           0 :     switch(typ(gel(x,2)))
    3100             :     {
    3101           0 :       case t_INT: return 1;
    3102           0 :       case t_FRAC: return 0;
    3103           0 :       default: pari_err_TYPE("nfisintegral",x);
    3104             :     }
    3105             :   }
    3106        6954 :   x = Q_remove_denom(x, &d);
    3107        6954 :   if (!RgX_is_ZX(x)) pari_err_TYPE("nfisintegral",x);
    3108        6954 :   if (!d) return 1;
    3109         576 :   x = ZM_ZX_mul(nf_get_invzk(nf), x);
    3110         576 :   return ZV_Z_dvd(x, d);
    3111             : }
    3112             : static int
    3113        6954 : nfpolisintegral(GEN nf, GEN x)
    3114        6954 : { pari_sp av = avma; return gc_int(av, nfpolisintegral_i(nf, x)); }
    3115             : 
    3116             : /* true nf */
    3117             : static int
    3118       25494 : nfisintegral(GEN nf, GEN x)
    3119             : {
    3120       25494 :   switch(typ(x))
    3121             :   {
    3122       18534 :     case t_INT: return 1;
    3123           6 :     case t_FRAC: return 0;
    3124           0 :     case t_POLMOD:
    3125           0 :       x = checknfelt_mod(nf,x,"nfisintegral");
    3126           0 :       switch(typ(x))
    3127             :       {
    3128           0 :         case t_INT: return 1;
    3129           0 :         case t_FRAC: return 0;
    3130           0 :         case t_POL: return nfpolisintegral(nf,x);
    3131             :       }
    3132           0 :       break;
    3133        6954 :     case t_POL: return nfpolisintegral(nf,x);
    3134           0 :     case t_COL:
    3135           0 :       if (lg(x)-1 != nf_get_degree(nf)) break;
    3136           0 :       return RgV_is_ZV(x);
    3137             :   }
    3138           0 :   pari_err_TYPE("nfisintegral",x);
    3139             :   return 0; /* LCOV_EXCL_LINE */
    3140             : }
    3141             : /* true nf */
    3142             : static int
    3143        5994 : nfXisintegral(GEN nf, GEN x)
    3144             : {
    3145        5994 :   long i, l = lg(x);
    3146       31476 :   for (i = 2; i < l; i++)
    3147       25494 :     if (!nfisintegral(nf, gel(x,i))) return 0;
    3148        5982 :   return 1;
    3149             : }
    3150             : 
    3151             : /* Relative Dedekind criterion over (true) nf, applied to the order defined by a
    3152             :  * root of monic irreducible polynomial P, modulo the prime ideal pr. Assume
    3153             :  * vdisc = v_pr( disc(P) ).
    3154             :  * Return NULL if nf[X]/P is pr-maximal. Otherwise, return [flag, O, v]:
    3155             :  *   O = enlarged order, given by a pseudo-basis
    3156             :  *   flag = 1 if O is proven pr-maximal (may be 0 and O nevertheless pr-maximal)
    3157             :  *   v = v_pr(disc(O)). */
    3158             : static GEN
    3159        3498 : rnfdedekind_i(GEN nf, GEN P, GEN pr, long vdisc, long only_maximal)
    3160             : {
    3161             :   GEN Ppr, A, I, p, tau, g, h, k, base, T, gzk, hzk, prinvp, pal, nfT, modpr;
    3162             :   long m, vt, r, d, i, j, mpr;
    3163             : 
    3164        3498 :   if (vdisc < 0) pari_err_TYPE("rnfdedekind [non integral pol]", P);
    3165        3492 :   if (vdisc == 1) return NULL; /* pr-maximal */
    3166        3492 :   if (!only_maximal && !gequal1(leading_coeff(P)))
    3167           0 :     pari_err_IMPL( "the full Dedekind criterion in the nonmonic case");
    3168        3492 :   if (!nfXisintegral(nf, P))
    3169           0 :     pari_err_IMPL("non integral polynomial in rnfdedekind");
    3170             :   /* either monic OR only_maximal = 1 */
    3171        3492 :   m = degpol(P);
    3172        3492 :   nfT = nf_get_pol(nf);
    3173        3492 :   modpr = nf_to_Fq_init(nf,&pr, &T, &p);
    3174        3492 :   Ppr = nfX_to_FqX(P, nf, modpr);
    3175        3492 :   mpr = degpol(Ppr);
    3176        3492 :   if (mpr < m) /* nonmonic => only_maximal = 1 */
    3177             :   {
    3178          18 :     if (mpr < 0) return NULL;
    3179          18 :     if (! RgX_valrem(Ppr, &Ppr))
    3180             :     { /* nonzero constant coefficient */
    3181           0 :       Ppr = RgX_shift_shallow(RgX_recip_i(Ppr), m - mpr);
    3182           0 :       P = RgX_recip_i(P);
    3183             :     }
    3184             :     else
    3185             :     {
    3186          18 :       GEN z = FqX_non_root(Ppr, T, p);
    3187          18 :       if (!z) pari_err_IMPL( "Dedekind in the difficult case");
    3188           0 :       z = Fq_to_nf(z, modpr);
    3189           0 :       if (typ(z) == t_INT)
    3190           0 :         P = RgX_translate(P, z);
    3191             :       else
    3192           0 :         P = RgXQX_translate(P, z, T);
    3193           0 :       P = RgX_recip_i(P);
    3194           0 :       Ppr = nfX_to_FqX(P, nf, modpr); /* degpol(P) = degpol(Ppr) = m */
    3195             :     }
    3196             :   }
    3197        3474 :   A = gel(FqX_factor(Ppr,T,p),1);
    3198        3474 :   r = lg(A); /* > 1 */
    3199        3474 :   g = gel(A,1);
    3200        6138 :   for (i=2; i<r; i++) g = FqX_mul(g, gel(A,i), T, p);
    3201        3474 :   h = FqX_div(Ppr,g, T, p);
    3202        3474 :   gzk = FqX_to_nfX(g, modpr);
    3203        3474 :   hzk = FqX_to_nfX(h, modpr);
    3204        3474 :   k = nfX_sub(nf, P, nfX_mul(nf, gzk,hzk));
    3205        3474 :   tau = pr_get_tau(pr);
    3206        3474 :   switch(typ(tau))
    3207             :   {
    3208        1764 :     case t_INT: k = gdiv(k, p); break;
    3209        1710 :     case t_MAT: k = RgX_Rg_div(tablemulvec(NULL,tau, k), p); break;
    3210             :   }
    3211        3474 :   k = nfX_to_FqX(k, nf, modpr);
    3212        3474 :   k = FqX_normalize(FqX_gcd(FqX_gcd(g,h,  T,p), k, T,p), T,p);
    3213        3474 :   d = degpol(k);  /* <= m */
    3214        3474 :   if (!d) return NULL; /* pr-maximal */
    3215        1649 :   if (only_maximal) return gen_0; /* not maximal */
    3216             : 
    3217        1631 :   A = cgetg(m+d+1,t_MAT);
    3218        1631 :   I = cgetg(m+d+1,t_VEC); base = mkvec2(A, I);
    3219             :  /* base[2] temporarily multiplied by p, for the final nfhnfmod,
    3220             :   * which requires integral ideals */
    3221        1631 :   prinvp = pr_inv_p(pr); /* again multiplied by p */
    3222        8865 :   for (j=1; j<=m; j++)
    3223             :   {
    3224        7234 :     gel(A,j) = col_ei(m, j);
    3225        7234 :     gel(I,j) = p;
    3226             :   }
    3227        1631 :   pal = FqX_to_nfX(FqX_div(Ppr,k, T,p), modpr);
    3228        3550 :   for (   ; j<=m+d; j++)
    3229             :   {
    3230        1919 :     gel(A,j) = RgX_to_RgC(pal,m);
    3231        1919 :     gel(I,j) = prinvp;
    3232        1919 :     if (j < m+d) pal = RgXQX_rem(RgX_shift_shallow(pal,1),P,nfT);
    3233             :   }
    3234             :   /* the modulus is integral */
    3235        1631 :   base = nfhnfmod(nf,base, idealmulpowprime(nf, powiu(p,m), pr, utoineg(d)));
    3236        1631 :   gel(base,2) = gdiv(gel(base,2), p); /* cancel the factor p */
    3237        1631 :   vt = vdisc - 2*d;
    3238        1631 :   return mkvec3(vt < 2? gen_1: gen_0, base, stoi(vt));
    3239             : }
    3240             : 
    3241             : /* [L:K] = n */
    3242             : static GEN
    3243        1291 : triv_order(long n)
    3244             : {
    3245        1291 :   GEN z = cgetg(3, t_VEC);
    3246        1291 :   gel(z,1) = matid(n);
    3247        1291 :   gel(z,2) = const_vec(n, gen_1); return z;
    3248             : }
    3249             : 
    3250             : /* if flag is set, return gen_1 (resp. gen_0) if the order K[X]/(P)
    3251             :  * is pr-maximal (resp. not pr-maximal). */
    3252             : GEN
    3253          78 : rnfdedekind(GEN nf, GEN P, GEN pr, long flag)
    3254             : {
    3255          78 :   pari_sp av = avma;
    3256             :   GEN z, dP;
    3257             :   long v;
    3258             : 
    3259          78 :   nf = checknf(nf);
    3260          78 :   P = RgX_nffix("rnfdedekind", nf_get_pol(nf), P, 1);
    3261          78 :   dP = nfX_disc(nf, P);
    3262          78 :   if (gequal0(dP))
    3263           6 :     pari_err_DOMAIN("rnfdedekind","issquarefree(pol)","=",gen_0,P);
    3264          72 :   if (!pr)
    3265             :   {
    3266          18 :     GEN fa = idealfactor(nf, dP);
    3267          18 :     GEN Q = gel(fa,1), E = gel(fa,2);
    3268          18 :     pari_sp av2 = avma;
    3269          18 :     long i, l = lg(Q);
    3270          18 :     for (i = 1; i < l; i++, set_avma(av2))
    3271             :     {
    3272          18 :       v = itos(gel(E,i));
    3273          18 :       if (rnfdedekind_i(nf,P,gel(Q,i),v,1)) { set_avma(av); return gen_0; }
    3274           0 :       set_avma(av2);
    3275             :     }
    3276           0 :     set_avma(av); return gen_1;
    3277             :   }
    3278          54 :   else if (typ(pr) == t_VEC)
    3279             :   { /* flag = 1 is implicit */
    3280          54 :     if (lg(pr) == 1) { set_avma(av); return gen_1; }
    3281          54 :     if (typ(gel(pr,1)) == t_VEC)
    3282             :     { /* list of primes */
    3283          12 :       GEN Q = pr;
    3284          12 :       pari_sp av2 = avma;
    3285          12 :       long i, l = lg(Q);
    3286          12 :       for (i = 1; i < l; i++, set_avma(av2))
    3287             :       {
    3288          12 :         v = nfval(nf, dP, gel(Q,i));
    3289          12 :         if (rnfdedekind_i(nf,P,gel(Q,i),v,1)) { set_avma(av); return gen_0; }
    3290             :       }
    3291           0 :       set_avma(av); return gen_1;
    3292             :     }
    3293             :   }
    3294             :   /* single prime */
    3295          42 :   v = nfval(nf, dP, pr);
    3296          42 :   z = rnfdedekind_i(nf, P, pr, v, flag);
    3297          36 :   if (z)
    3298             :   {
    3299          18 :     if (flag) { set_avma(av); return gen_0; }
    3300          12 :     z = gerepilecopy(av, z);
    3301             :   }
    3302             :   else
    3303             :   {
    3304          18 :     set_avma(av); if (flag) return gen_1;
    3305           6 :     z = cgetg(4, t_VEC);
    3306           6 :     gel(z,1) = gen_1;
    3307           6 :     gel(z,2) = triv_order(degpol(P));
    3308           6 :     gel(z,3) = stoi(v);
    3309             :   }
    3310          18 :   return z;
    3311             : }
    3312             : 
    3313             : static int
    3314        6898 : ideal_is1(GEN x) {
    3315        6898 :   switch(typ(x))
    3316             :   {
    3317        3530 :     case t_INT: return is_pm1(x);
    3318        2906 :     case t_MAT: return RgM_isidentity(x);
    3319             :   }
    3320         462 :   return 0;
    3321             : }
    3322             : 
    3323             : /* return a in ideal A such that v_pr(a) = v_pr(A) */
    3324             : static GEN
    3325        3236 : minval(GEN nf, GEN A, GEN pr)
    3326             : {
    3327        3236 :   GEN ab = idealtwoelt(nf,A), a = gel(ab,1), b = gel(ab,2);
    3328        3236 :   if (nfval(nf,a,pr) > nfval(nf,b,pr)) a = b;
    3329        3236 :   return a;
    3330             : }
    3331             : 
    3332             : /* nf a true nf. Return NULL if power order is pr-maximal */
    3333             : static GEN
    3334        3426 : rnfmaxord(GEN nf, GEN pol, GEN pr, long vdisc)
    3335             : {
    3336        3426 :   pari_sp av = avma, av1;
    3337             :   long i, j, k, n, nn, vpol, cnt, sep;
    3338             :   GEN q, q1, p, T, modpr, W, I, p1;
    3339             :   GEN prhinv, mpi, Id;
    3340             : 
    3341        3426 :   if (DEBUGLEVEL>1) err_printf(" treating %Ps^%ld\n", pr, vdisc);
    3342        3426 :   modpr = nf_to_Fq_init(nf,&pr,&T,&p);
    3343        3426 :   av1 = avma;
    3344        3426 :   p1 = rnfdedekind_i(nf, pol, modpr, vdisc, 0);
    3345        3426 :   if (!p1) return gc_NULL(av);
    3346        1619 :   if (is_pm1(gel(p1,1))) return gerepilecopy(av,gel(p1,2));
    3347         713 :   sep = itos(gel(p1,3));
    3348         713 :   W = gmael(p1,2,1);
    3349         713 :   I = gmael(p1,2,2);
    3350         713 :   gerepileall(av1, 2, &W, &I);
    3351             : 
    3352         713 :   mpi = zk_multable(nf, pr_get_gen(pr));
    3353         713 :   n = degpol(pol); nn = n*n;
    3354         713 :   vpol = varn(pol);
    3355         713 :   q1 = q = pr_norm(pr);
    3356         875 :   while (abscmpiu(q1,n) < 0) q1 = mulii(q1,q);
    3357         713 :   Id = matid(n);
    3358         713 :   prhinv = pr_inv(pr);
    3359         713 :   av1 = avma;
    3360         713 :   for(cnt=1;; cnt++)
    3361         891 :   {
    3362        1604 :     GEN I0 = leafcopy(I), W0 = leafcopy(W);
    3363             :     GEN Wa, Winv, Ip, A, MW, MWmod, F, pseudo, C, G;
    3364        1604 :     GEN Tauinv = cgetg(n+1, t_VEC), Tau = cgetg(n+1, t_VEC);
    3365             : 
    3366        1604 :     if (DEBUGLEVEL>1) err_printf("    pass no %ld\n",cnt);
    3367        8208 :     for (j=1; j<=n; j++)
    3368             :     {
    3369             :       GEN tau, tauinv;
    3370        6604 :       if (ideal_is1(gel(I,j)))
    3371             :       {
    3372        3368 :         gel(I,j) = gel(Tau,j) = gel(Tauinv,j) = gen_1;
    3373        3368 :         continue;
    3374             :       }
    3375        3236 :       gel(Tau,j) = tau = minval(nf, gel(I,j), pr);
    3376        3236 :       gel(Tauinv,j) = tauinv = nfinv(nf, tau);
    3377        3236 :       gel(W,j) = nfC_nf_mul(nf, gel(W,j), tau);
    3378        3236 :       gel(I,j) = idealmul(nf, tauinv, gel(I,j)); /* v_pr(I[j]) = 0 */
    3379             :     }
    3380             :     /* W = (Z_K/pr)-basis of O/pr. O = (W0,I0) ~ (W, I) */
    3381             : 
    3382             :    /* compute MW: W_i*W_j = sum MW_k,(i,j) W_k */
    3383        1604 :     Wa = RgM_to_RgXV(W,vpol);
    3384        1604 :     Winv = nfM_inv(nf, W);
    3385        1604 :     MW = cgetg(nn+1, t_MAT);
    3386             :     /* W_1 = 1 */
    3387        8208 :     for (j=1; j<=n; j++) gel(MW, j) = gel(MW, (j-1)*n+1) = gel(Id,j);
    3388        6604 :     for (i=2; i<=n; i++)
    3389       19162 :       for (j=i; j<=n; j++)
    3390             :       {
    3391       14162 :         GEN z = nfXQ_mul(nf, gel(Wa,i), gel(Wa,j), pol);
    3392       14162 :         if (typ(z) != t_POL)
    3393           0 :           z = nfC_nf_mul(nf, gel(Winv,1), z);
    3394             :         else
    3395             :         {
    3396       14162 :           z = RgX_to_RgC(z, lg(Winv)-1);
    3397       14162 :           z = nfM_nfC_mul(nf, Winv, z);
    3398             :         }
    3399       14162 :         gel(MW, (i-1)*n+j) = gel(MW, (j-1)*n+i) = z;
    3400             :       }
    3401             : 
    3402             :     /* compute Ip =  pr-radical [ could use Ker(trace) if q large ] */
    3403        1604 :     MWmod = nfM_to_FqM(MW,nf,modpr);
    3404        1604 :     F = cgetg(n+1, t_MAT); gel(F,1) = gel(Id,1);
    3405        6604 :     for (j=2; j<=n; j++) gel(F,j) = rnfeltid_powmod(MWmod, j, q1, T,p);
    3406        1604 :     Ip = FqM_ker(F,T,p);
    3407        1604 :     if (lg(Ip) == 1) { W = W0; I = I0; break; }
    3408             : 
    3409             :     /* Fill C: W_k A_j = sum_i C_(i,j),k A_i */
    3410        1257 :     A = FqM_to_nfM(FqM_suppl(Ip,T,p), modpr);
    3411        3252 :     for (j = lg(Ip); j<=n; j++) gel(A,j) = nfC_multable_mul(gel(A,j), mpi);
    3412        1257 :     MW = nfM_mul(nf, nfM_inv(nf,A), MW);
    3413        1257 :     C = cgetg(n+1, t_MAT);
    3414        6411 :     for (k=1; k<=n; k++)
    3415             :     {
    3416        5154 :       GEN mek = vecslice(MW, (k-1)*n+1, k*n), Ck;
    3417        5154 :       gel(C,k) = Ck = cgetg(nn+1, t_COL);
    3418       32586 :       for (j = 1; j <= n; j++)
    3419             :       {
    3420       27432 :         GEN z = nfM_nfC_mul(nf, mek, gel(A,j));
    3421      207060 :         for (i = 1; i <= n; i++)
    3422      179628 :           gel(Ck, (j-1)*n+i) = gc_nf_to_Fq(nf,gel(z,i),modpr);
    3423             :       }
    3424             :     }
    3425        1257 :     G = FqM_to_nfM(FqM_ker(C,T,p), modpr);
    3426             : 
    3427        1257 :     pseudo = rnfjoinmodules_i(nf, G,prhinv, Id,I);
    3428             :     /* express W in terms of the power basis */
    3429        1257 :     W = nfM_mul(nf, W, gel(pseudo,1));
    3430        1257 :     I = gel(pseudo,2);
    3431             :     /* restore the HNF property W[i,i] = 1. NB: W upper triangular, with
    3432             :      * W[i,i] = Tau[i] */
    3433        6411 :     for (j=1; j<=n; j++)
    3434        5154 :       if (gel(Tau,j) != gen_1)
    3435             :       {
    3436        2313 :         gel(W,j) = nfC_nf_mul(nf, gel(W,j), gel(Tauinv,j));
    3437        2313 :         gel(I,j) = idealmul(nf, gel(Tau,j), gel(I,j));
    3438             :       }
    3439        1257 :     if (DEBUGLEVEL>3) err_printf(" new order:\n%Ps\n%Ps\n", W, I);
    3440        1257 :     if (sep <= 3 || gequal(I,I0)) break;
    3441             : 
    3442         891 :     if (gc_needed(av1,2))
    3443             :     {
    3444           0 :       if(DEBUGMEM>1) pari_warn(warnmem,"rnfmaxord");
    3445           0 :       gerepileall(av1,2, &W,&I);
    3446             :     }
    3447             :   }
    3448         713 :   return gerepilecopy(av, mkvec2(W, I));
    3449             : }
    3450             : 
    3451             : GEN
    3452      809205 : Rg_nffix(const char *f, GEN T, GEN c, int lift)
    3453             : {
    3454      809205 :   switch(typ(c))
    3455             :   {
    3456      441625 :     case t_INT: case t_FRAC: return c;
    3457       58915 :     case t_POL:
    3458       58915 :       if (lg(c) >= lg(T)) c = RgX_rem(c,T);
    3459       58915 :       break;
    3460      308659 :     case t_POLMOD:
    3461      308659 :       if (!RgX_equal_var(gel(c,1), T)) pari_err_MODULUS(f, gel(c,1),T);
    3462      308161 :       c = gel(c,2);
    3463      308161 :       switch(typ(c))
    3464             :       {
    3465      268633 :         case t_POL: break;
    3466       39528 :         case t_INT: case t_FRAC: return c;
    3467           0 :         default: pari_err_TYPE(f, c);
    3468             :       }
    3469      268633 :       break;
    3470           6 :     default: pari_err_TYPE(f,c);
    3471             :   }
    3472             :   /* typ(c) = t_POL */
    3473      327548 :   if (varn(c) != varn(T)) pari_err_VAR(f, c,T);
    3474      327536 :   switch(lg(c))
    3475             :   {
    3476       11489 :     case 2: return gen_0;
    3477       25774 :     case 3:
    3478       25774 :       c = gel(c,2); if (is_rational_t(typ(c))) return c;
    3479           0 :       pari_err_TYPE(f,c);
    3480             :   }
    3481      290273 :   RgX_check_QX(c, f);
    3482      290255 :   return lift? c: mkpolmod(c, T);
    3483             : }
    3484             : /* check whether x is a polynomials with coeffs in number field Q[y]/(T)
    3485             :  * and returned a normalized copy. If 'lift' is set return lifted coefs
    3486             :  * (t_POL/t_FRAC/t_INT) else t_POLMOD/t_FRAC/t_INT */
    3487             : GEN
    3488      276354 : RgX_nffix(const char *f, GEN T, GEN x, int lift)
    3489             : {
    3490      276354 :   long vT = varn(T);
    3491      276354 :   if (typ(x) != t_POL) pari_err_TYPE(stack_strcat(f," [t_POL expected]"), x);
    3492      276354 :   if (varncmp(varn(x), vT) >= 0) pari_err_PRIORITY(f, x, ">=", vT);
    3493     1028515 :   pari_APPLY_pol_normalized(Rg_nffix(f, T, gel(x,i), lift));
    3494             : }
    3495             : GEN
    3496          42 : RgV_nffix(const char *f, GEN T, GEN x, int lift)
    3497         102 : { pari_APPLY_same(Rg_nffix(f, T, gel(x,i), lift)); }
    3498             : 
    3499             : static GEN
    3500        2550 : get_d(GEN nf, GEN d)
    3501             : {
    3502        2550 :   GEN b = idealredmodpower(nf, d, 2, 100000);
    3503        2550 :   return nfmul(nf, d, nfsqr(nf,b));
    3504             : }
    3505             : 
    3506             : /* true nf */
    3507             : static GEN
    3508        3630 : pr_factorback(GEN nf, GEN fa)
    3509             : {
    3510        3630 :   GEN P = gel(fa,1), E = gel(fa,2), z = gen_1;
    3511        3630 :   long i, l = lg(P);
    3512        7061 :   for (i = 1; i < l; i++) z = idealmulpowprime(nf, z, gel(P,i), gel(E,i));
    3513        3630 :   return z;
    3514             : }
    3515             : /* true nf */
    3516             : static GEN
    3517        3630 : pr_factorback_scal(GEN nf, GEN fa)
    3518             : {
    3519        3630 :   GEN D = pr_factorback(nf,fa);
    3520        3630 :   if (typ(D) == t_MAT && RgM_isscalar(D,NULL)) D = gcoeff(D,1,1);
    3521        3630 :   return D;
    3522             : }
    3523             : 
    3524             : /* nf = base field K
    3525             :  * pol= monic polynomial in Z_K[X] defining a relative extension L = K[X]/(pol).
    3526             :  * Returns a pseudo-basis [A,I] of Z_L, set *pD to [D,d] and *pf to the
    3527             :  * index-ideal; rnf is used when lim != 0 and may be NULL */
    3528             : GEN
    3529        2508 : rnfallbase(GEN nf, GEN pol, GEN lim, GEN rnf, GEN *pD, GEN *pf, GEN *pDKP)
    3530             : {
    3531             :   long i, j, jf, l;
    3532             :   GEN fa, E, P, Ef, Pf, z, disc;
    3533             : 
    3534        2508 :   nf = checknf(nf); pol = liftpol_shallow(pol);
    3535        2508 :   if (!gequal1(leading_coeff(pol)))
    3536           6 :     pari_err_IMPL("nonmonic relative polynomials in rnfallbase");
    3537        2502 :   if (!nfXisintegral(nf, pol))
    3538          12 :     pari_err_IMPL("non integral polynomial in rnfallbase");
    3539        2490 :   disc = nf_to_scalar_or_basis(nf, nfX_disc(nf, pol));
    3540        2490 :   if (gequal0(disc))
    3541           6 :     pari_err_DOMAIN("rnfpseudobasis","issquarefree(pol)","=",gen_0, pol);
    3542        2484 :   if (lim)
    3543             :   {
    3544             :     GEN rnfeq, zknf, dzknf, U, vU, dA, A, MB, dB, BdB, vj, B, Tabs;
    3545         678 :     GEN D = idealhnf_shallow(nf, disc), extendP = NULL;
    3546         678 :     long rU, m = nf_get_degree(nf), n = degpol(pol), N = n*m;
    3547             :     nfmaxord_t S;
    3548             : 
    3549         678 :     if (typ(lim) == t_INT)
    3550         114 :       P = ZV_union_shallow(nf_get_ramified_primes(nf),
    3551         114 :                            gel(Z_factor_limit(gcoeff(D,1,1), itou(lim)), 1));
    3552             :     else
    3553             :     {
    3554         564 :       P = cgetg_copy(lim, &l);
    3555        1902 :       for (i = 1; i < l; i++)
    3556             :       {
    3557        1338 :         GEN p = gel(lim,i);
    3558        1338 :         if (typ(p) != t_INT) p = pr_get_p(p);
    3559        1338 :         gel(P,i) = p;
    3560             :       }
    3561         564 :       P = ZV_sort_uniq_shallow(P);
    3562             :     }
    3563         678 :     if (rnf)
    3564             :     {
    3565         636 :       rnfeq = rnf_get_map(rnf);
    3566         636 :       zknf = rnf_get_nfzk(rnf);
    3567             :     }
    3568             :     else
    3569             :     {
    3570          42 :       rnfeq = nf_rnfeq(nf, pol);
    3571          42 :       zknf = nf_nfzk(nf, rnfeq);
    3572             :     }
    3573         678 :     dzknf = gel(zknf,1);
    3574         678 :     if (gequal1(dzknf)) dzknf = NULL;
    3575         564 : RESTART:
    3576         696 :     if (extendP)
    3577             :     {
    3578          18 :       GEN oldP = P;
    3579          18 :       if (typ(extendP)==t_POL)
    3580             :       {
    3581           0 :         long l = lg(extendP);
    3582           0 :         for (i = 2; i < l; i++)
    3583             :         {
    3584           0 :           GEN q = gel(extendP,i);
    3585           0 :           if (typ(q) == t_FRAC) P = ZV_cba_extend(P, gel(q,2));
    3586             :         }
    3587             :       } else /*t_FRAC*/
    3588          18 :         P = ZV_cba_extend(P, gel(extendP,2));
    3589          18 :       if (ZV_equal(P, oldP))
    3590           0 :         pari_err(e_MISC, "rnfpseudobasis fails, try increasing B");
    3591          18 :       extendP = NULL;
    3592             :     }
    3593         696 :     Tabs = gel(rnfeq,1);
    3594         696 :     nfmaxord(&S, mkvec2(Tabs,P), 0);
    3595         696 :     B = RgXV_unscale(S.basis, S.unscale);
    3596         696 :     BdB = Q_remove_denom(B, &dB);
    3597         696 :     MB = RgXV_to_RgM(BdB, N); /* HNF */
    3598             : 
    3599         696 :     vU = cgetg(N+1, t_VEC);
    3600         696 :     vj = cgetg(N+1, t_VECSMALL);
    3601         696 :     gel(vU,1) = U = cgetg(m+1, t_MAT);
    3602         696 :     gel(U,1) = col_ei(N, 1);
    3603         696 :     A = dB? (dzknf? gdiv(dB,dzknf): dB): NULL;
    3604         696 :     if (A)
    3605             :     {
    3606         654 :       if (typ(A) != t_INT) { extendP = A; goto RESTART; }
    3607         636 :       if (equali1(A)) A = NULL;
    3608             :     }
    3609        1386 :     for (j = 2; j <= m; j++)
    3610             :     {
    3611         708 :       GEN t = gel(zknf,j);
    3612         708 :       if (!RgX_is_ZX(t)) { extendP = t; goto RESTART; }
    3613         708 :       if (A) t = ZX_Z_mul(t, A);
    3614         708 :       gel(U,j) = hnf_solve(MB, RgX_to_RgC(t, N));
    3615             :     }
    3616        4650 :     for (i = 2; i <= N; i++)
    3617             :     {
    3618        3972 :       GEN b = gel(BdB,i);
    3619        3972 :       gel(vU,i) = U = cgetg(m+1, t_MAT);
    3620        3972 :       gel(U,1) = hnf_solve(MB, RgX_to_RgC(b, N));
    3621        8712 :       for (j = 2; j <= m; j++)
    3622             :       {
    3623        4740 :         GEN t = ZX_rem(ZX_mul(b, gel(zknf,j)), Tabs);
    3624        4740 :         if (dzknf)
    3625             :         {
    3626        4212 :           t = RgX_Rg_div(t, dzknf);
    3627        4212 :           if (!RgX_is_ZX(t)) { extendP = t; goto RESTART; }
    3628             :         }
    3629        4740 :         gel(U,j) = hnf_solve(MB, RgX_to_RgC(t, N));
    3630             :       }
    3631             :     }
    3632         678 :     vj[1] = 1; U = gel(vU,1); rU = m;
    3633        1656 :     for (i = j = 2; i <= N; i++)
    3634             :     {
    3635        1650 :       GEN V = shallowconcat(U, gel(vU,i));
    3636        1650 :       if (ZM_rank(V) != rU)
    3637             :       {
    3638        1650 :         U = V; rU += m; vj[j++] = i;
    3639        1650 :         if (rU == N) break;
    3640             :       }
    3641             :     }
    3642         678 :     if (dB) for(;;)
    3643         936 :     {
    3644        1572 :       GEN c = gen_1, H = ZM_hnfmodid(U, dB);
    3645        1572 :       long ic = 0;
    3646       15186 :       for (i = 1; i <= N; i++)
    3647       13614 :         if (cmpii(gcoeff(H,i,i), c) > 0) { c = gcoeff(H,i,i); ic = i; }
    3648        1572 :       if (!ic) break;
    3649         936 :       vj[j++] = ic;
    3650         936 :       U = shallowconcat(H, gel(vU, ic));
    3651             :     }
    3652         678 :     setlg(vj, j);
    3653         678 :     B = vecpermute(B, vj);
    3654             : 
    3655         678 :     l = lg(B);
    3656         678 :     A = cgetg(l,t_MAT);
    3657        3942 :     for (j = 1; j < l; j++)
    3658             :     {
    3659        3264 :       GEN t = eltabstorel_lift(rnfeq, gel(B,j));
    3660        3264 :       gel(A,j) = Rg_to_RgC(t, n);
    3661             :     }
    3662         678 :     A = RgM_to_nfM(nf, A);
    3663         678 :     A = Q_remove_denom(A, &dA);
    3664         678 :     if (!dA)
    3665             :     { /* order is maximal */
    3666          54 :       z = triv_order(n);
    3667          54 :       if (pf) *pf = gen_1;
    3668             :     }
    3669             :     else
    3670             :     {
    3671             :       GEN fi;
    3672             :       /* the first n columns of A are probably in HNF already */
    3673         624 :       A = shallowconcat(vecslice(A,n+1,lg(A)-1), vecslice(A,1,n));
    3674         624 :       A = mkvec2(A, const_vec(l-1,gen_1));
    3675         624 :       if (DEBUGLEVEL > 2) err_printf("rnfallbase: nfhnf in dim %ld\n", l-1);
    3676         624 :       z = nfhnfmod(nf, A, nfdetint(nf,A));
    3677         624 :       gel(z,2) = gdiv(gel(z,2), dA);
    3678         624 :       fi = idealprod(nf,gel(z,2));
    3679         624 :       D = idealmul(nf, D, idealsqr(nf, fi));
    3680         624 :       if (pf) *pf = idealinv(nf, fi);
    3681             :     }
    3682         678 :     if (RgM_isscalar(D,NULL)) D = gcoeff(D,1,1);
    3683         678 :     if (pDKP) *pDKP = S.dKP;
    3684         678 :     *pD = mkvec2(D, get_d(nf, disc)); return z;
    3685             :   }
    3686        1806 :   fa = idealfactor(nf, disc);
    3687        1806 :   P = gel(fa,1); l = lg(P); z = NULL;
    3688        1806 :   E = gel(fa,2);
    3689        1806 :   Pf = cgetg(l, t_COL);
    3690        1806 :   Ef = cgetg(l, t_COL);
    3691        5057 :   for (i = j = jf = 1; i < l; i++)
    3692             :   {
    3693        3251 :     GEN pr = gel(P,i);
    3694        3251 :     long e = itos(gel(E,i));
    3695        3251 :     if (e > 1)
    3696             :     {
    3697        2412 :       GEN vD = rnfmaxord(nf, pol, pr, e);
    3698        2412 :       if (vD)
    3699             :       {
    3700        1115 :         long ef = idealprodval(nf, gel(vD,2), pr);
    3701        1115 :         z = rnfjoinmodules(nf, z, vD);
    3702        1115 :         if (ef) { gel(Pf, jf) = pr; gel(Ef, jf++) = stoi(-ef); }
    3703        1115 :         e += 2 * ef;
    3704             :       }
    3705             :     }
    3706        3251 :     if (e) { gel(P, j) = pr; gel(E, j++) = stoi(e); }
    3707             :   }
    3708        1806 :   setlg(P,j);
    3709        1806 :   setlg(E,j);
    3710        1806 :   if (pDKP) *pDKP = prV_primes(P);
    3711        1806 :   if (pf)
    3712             :   {
    3713        1758 :     setlg(Pf, jf);
    3714        1758 :     setlg(Ef, jf); *pf = pr_factorback_scal(nf, mkmat2(Pf,Ef));
    3715             :   }
    3716        1806 :   *pD = mkvec2(pr_factorback_scal(nf,fa), get_d(nf, disc));
    3717        1806 :   return z? z: triv_order(degpol(pol));
    3718             : }
    3719             : 
    3720             : static GEN
    3721        1404 : RgX_to_algX(GEN nf, GEN x)
    3722        7494 : { pari_APPLY_pol_normalized(nf_to_scalar_or_alg(nf, gel(x,i))); }
    3723             : 
    3724             : GEN
    3725        1416 : nfX_to_monic(GEN nf, GEN T, GEN *pL)
    3726             : {
    3727             :   GEN lT, g, a;
    3728        1416 :   long i, l = lg(T);
    3729        1416 :   if (l == 2) return pol_0(varn(T));
    3730        1416 :   if (l == 3) return pol_1(varn(T));
    3731        1416 :   nf = checknf(nf);
    3732        1416 :   T = Q_primpart(RgX_to_nfX(nf, T));
    3733        1416 :   lT = leading_coeff(T); if (pL) *pL = lT;
    3734        1416 :   if (isint1(T)) return T;
    3735        1416 :   g = cgetg_copy(T, &l); g[1] = T[1]; a = lT;
    3736        1416 :   gel(g, l-1) = gen_1;
    3737        1416 :   gel(g, l-2) = gel(T,l-2);
    3738        1416 :   if (l == 4) { gel(g,l-2) = nf_to_scalar_or_alg(nf, gel(g,l-2)); return g; }
    3739        1404 :   if (typ(lT) == t_INT)
    3740             :   {
    3741        1392 :     gel(g, l-3) = gmul(a, gel(T,l-3));
    3742        3264 :     for (i = l-4; i > 1; i--) { a = mulii(a,lT); gel(g,i) = gmul(a, gel(T,i)); }
    3743             :   }
    3744             :   else
    3745             :   {
    3746          12 :     gel(g, l-3) = nfmul(nf, a, gel(T,l-3));
    3747          30 :     for (i = l-3; i > 1; i--)
    3748             :     {
    3749          18 :       a = nfmul(nf,a,lT);
    3750          18 :       gel(g,i) = nfmul(nf, a, gel(T,i));
    3751             :     }
    3752             :   }
    3753        1404 :   return RgX_to_algX(nf, g);
    3754             : }
    3755             : 
    3756             : GEN
    3757         732 : rnfdisc_factored(GEN nf, GEN pol, GEN *pd)
    3758             : {
    3759             :   long i, j, l;
    3760             :   GEN fa, E, P, disc, lim;
    3761             : 
    3762         732 :   pol = rnfdisc_get_T(nf, pol, &lim);
    3763         732 :   disc = nf_to_scalar_or_basis(nf, nfX_disc(nf, pol));
    3764         732 :   if (gequal0(disc))
    3765           0 :     pari_err_DOMAIN("rnfdisc","issquarefree(pol)","=",gen_0, pol);
    3766         732 :   pol = nfX_to_monic(nf, pol, NULL);
    3767         732 :   fa = idealfactor_partial(nf, disc, lim);
    3768         732 :   P = gel(fa,1); l = lg(P);
    3769         732 :   E = gel(fa,2);
    3770        1980 :   for (i = j = 1; i < l; i++)
    3771             :   {
    3772        1248 :     long e = itos(gel(E,i));
    3773        1248 :     GEN pr = gel(P,i);
    3774        1248 :     if (e > 1)
    3775             :     {
    3776        1014 :       GEN vD = rnfmaxord(nf, pol, pr, e);
    3777        1014 :       if (vD) e += 2*idealprodval(nf, gel(vD,2), pr);
    3778             :     }
    3779        1248 :     if (e) { gel(P, j) = pr; gel(E, j++) = stoi(e); }
    3780             :   }
    3781         732 :   if (pd) *pd = get_d(nf, disc);
    3782         732 :   setlg(P, j);
    3783         732 :   setlg(E, j); return fa;
    3784             : }
    3785             : GEN
    3786          66 : rnfdiscf(GEN nf, GEN pol)
    3787             : {
    3788          66 :   pari_sp av = avma;
    3789             :   GEN d, fa;
    3790          66 :   nf = checknf(nf); fa = rnfdisc_factored(nf, pol, &d);
    3791          66 :   return gerepilecopy(av, mkvec2(pr_factorback_scal(nf,fa), d));
    3792             : }
    3793             : 
    3794             : GEN
    3795          30 : gen_if_principal(GEN bnf, GEN x)
    3796             : {
    3797          30 :   pari_sp av = avma;
    3798          30 :   GEN z = bnfisprincipal0(bnf,x, nf_GEN_IF_PRINCIPAL | nf_FORCE);
    3799          30 :   return isintzero(z)? gc_NULL(av): z;
    3800             : }
    3801             : 
    3802             : /* given bnf and a HNF pseudo-basis of a proj. module, simplify the HNF as
    3803             :  * much as possible. The resulting matrix will be upper triangular but the
    3804             :  * diagonal coefficients will not be equal to 1. The ideals are integral and
    3805             :  * primitive. */
    3806             : GEN
    3807           0 : rnfsimplifybasis(GEN bnf, GEN M)
    3808             : {
    3809           0 :   pari_sp av = avma;
    3810             :   long i, l;
    3811             :   GEN y, Az, Iz, nf, A, I;
    3812             : 
    3813           0 :   bnf = checkbnf(bnf); nf = bnf_get_nf(bnf);
    3814           0 :   if (!check_ZKmodule_i(M)) pari_err_TYPE("rnfsimplifybasis",M);
    3815           0 :   A = gel(M,1);
    3816           0 :   I = gel(M,2); l = lg(I);
    3817           0 :   Az = cgetg(l, t_MAT);
    3818           0 :   Iz = cgetg(l, t_VEC); y = mkvec2(Az, Iz);
    3819           0 :   for (i = 1; i < l; i++)
    3820             :   {
    3821             :     GEN c, d;
    3822           0 :     if (ideal_is1(gel(I,i)))
    3823             :     {
    3824           0 :       gel(Iz,i) = gen_1;
    3825           0 :       gel(Az,i) = gel(A,i); continue;
    3826             :     }
    3827             : 
    3828           0 :     gel(Iz,i) = Q_primitive_part(gel(I,i), &c);
    3829           0 :     gel(Az,i) = c? RgC_Rg_mul(gel(A,i),c): gel(A,i);
    3830           0 :     if (c && ideal_is1(gel(Iz,i))) continue;
    3831             : 
    3832           0 :     d = gen_if_principal(bnf, gel(Iz,i));
    3833           0 :     if (d)
    3834             :     {
    3835           0 :       gel(Iz,i) = gen_1;
    3836           0 :       gel(Az,i) = nfC_nf_mul(nf, gel(Az,i), d);
    3837             :     }
    3838             :   }
    3839           0 :   return gerepilecopy(av, y);
    3840             : }
    3841             : 
    3842             : static GEN
    3843          54 : get_module(GEN nf, GEN O, const char *s)
    3844             : {
    3845          54 :   if (typ(O) == t_POL) return rnfpseudobasis(nf, O);
    3846          48 :   if (!check_ZKmodule_i(O)) pari_err_TYPE(s, O);
    3847          48 :   return shallowcopy(O);
    3848             : }
    3849             : 
    3850             : GEN
    3851          12 : rnfdet(GEN nf, GEN M)
    3852             : {
    3853          12 :   pari_sp av = avma;
    3854             :   GEN D;
    3855          12 :   nf = checknf(nf);
    3856          12 :   M = get_module(nf, M, "rnfdet");
    3857          12 :   D = idealmul(nf, nfM_det(nf, gel(M,1)), idealprod(nf, gel(M,2)));
    3858          12 :   return gerepileupto(av, D);
    3859             : }
    3860             : 
    3861             : /* Given two fractional ideals a and b, gives x in a, y in b, z in b^-1,
    3862             :    t in a^-1 such that xt-yz=1. In the present version, z is in Z. */
    3863             : static void
    3864          54 : nfidealdet1(GEN nf, GEN a, GEN b, GEN *px, GEN *py, GEN *pz, GEN *pt)
    3865             : {
    3866             :   GEN x, uv, y, da, db;
    3867             : 
    3868          54 :   a = idealinv(nf,a);
    3869          54 :   a = Q_remove_denom(a, &da);
    3870          54 :   b = Q_remove_denom(b, &db);
    3871          54 :   x = idealcoprime(nf,a,b);
    3872          54 :   uv = idealaddtoone(nf, idealmul(nf,x,a), b);
    3873          54 :   y = gel(uv,2);
    3874          54 :   if (da) x = gmul(x,da);
    3875          54 :   if (db) y = gdiv(y,db);
    3876          54 :   *px = x;
    3877          54 :   *py = y;
    3878          54 :   *pz = db ? negi(db): gen_m1;
    3879          54 :   *pt = nfdiv(nf, gel(uv,1), x);
    3880          54 : }
    3881             : 
    3882             : /* given a pseudo-basis of a proj. module in HNF [A,I] (or [A,I,D,d]), gives
    3883             :  * an n x n matrix (not HNF) of a pseudo-basis and an ideal vector
    3884             :  * [1,...,1,I] such that M ~ Z_K^(n-1) x I. Uses the approximation theorem.*/
    3885             : GEN
    3886          24 : rnfsteinitz(GEN nf, GEN M)
    3887             : {
    3888          24 :   pari_sp av = avma;
    3889             :   long i, n;
    3890             :   GEN A, I;
    3891             : 
    3892          24 :   nf = checknf(nf);
    3893          24 :   M = get_module(nf, M, "rnfsteinitz");
    3894          24 :   A = RgM_to_nfM(nf, gel(M,1));
    3895          24 :   I = leafcopy(gel(M,2)); n = lg(A)-1;
    3896         162 :   for (i = 1; i < n; i++)
    3897             :   {
    3898         138 :     GEN c1, c2, b, a = gel(I,i);
    3899         138 :     gel(I,i) = gen_1;
    3900         138 :     if (ideal_is1(a)) continue;
    3901             : 
    3902          54 :     c1 = gel(A,i);
    3903          54 :     c2 = gel(A,i+1);
    3904          54 :     b = gel(I,i+1);
    3905          54 :     if (ideal_is1(b))
    3906             :     {
    3907           0 :       gel(A,i) = c2;
    3908           0 :       gel(A,i+1) = gneg(c1);
    3909           0 :       gel(I,i+1) = a;
    3910             :     }
    3911             :     else
    3912             :     {
    3913          54 :       pari_sp av2 = avma;
    3914             :       GEN x, y, z, t, c;
    3915          54 :       nfidealdet1(nf,a,b, &x,&y,&z,&t);
    3916          54 :       x = RgC_add(nfC_nf_mul(nf, c1, x), nfC_nf_mul(nf, c2, y));
    3917          54 :       y = RgC_add(nfC_nf_mul(nf, c1, z), nfC_nf_mul(nf, c2, t));
    3918          54 :       gerepileall(av2, 2, &x,&y);
    3919          54 :       gel(A,i) = x;
    3920          54 :       gel(A,i+1) = y;
    3921          54 :       gel(I,i+1) = Q_primitive_part(idealmul(nf,a,b), &c);
    3922          54 :       if (c) gel(A,i+1) = nfC_nf_mul(nf, gel(A,i+1), c);
    3923             :     }
    3924             :   }
    3925          24 :   gel(M,1) = A;
    3926          24 :   gel(M,2) = I; return gerepilecopy(av, M);
    3927             : }
    3928             : 
    3929             : /* Given bnf and a proj. module (or a t_POL -> rnfpseudobasis), and outputs a
    3930             :  * basis if it is free, an n+1-generating set if it is not */
    3931             : GEN
    3932          18 : rnfbasis(GEN bnf, GEN M)
    3933             : {
    3934          18 :   pari_sp av = avma;
    3935             :   long j, n;
    3936             :   GEN nf, A, I, cl, col, a;
    3937             : 
    3938          18 :   bnf = checkbnf(bnf); nf = bnf_get_nf(bnf);
    3939          18 :   M = get_module(nf, M, "rnfbasis");
    3940          18 :   I = gel(M,2); n = lg(I)-1;
    3941          84 :   j = 1; while (j < n && ideal_is1(gel(I,j))) j++;
    3942          18 :   if (j < n) { M = rnfsteinitz(nf,M); I = gel(M,2); }
    3943          18 :   A = gel(M,1);
    3944          18 :   col= gel(A,n); A = vecslice(A, 1, n-1);
    3945          18 :   cl = gel(I,n);
    3946          18 :   a = gen_if_principal(bnf, cl);
    3947          18 :   if (!a)
    3948             :   {
    3949           6 :     GEN v = idealtwoelt(nf, cl);
    3950           6 :     A = vec_append(A, gmul(gel(v,1), col));
    3951           6 :     a = gel(v,2);
    3952             :   }
    3953          18 :   A = vec_append(A, nfC_nf_mul(nf, col, a));
    3954          18 :   return gerepilecopy(av, A);
    3955             : }
    3956             : 
    3957             : /* Given a Z_K-module M (or a polynomial => rnfpseudobasis) outputs a
    3958             :  * Z_K-basis in HNF if it exists, zero if not */
    3959             : GEN
    3960           6 : rnfhnfbasis(GEN bnf, GEN M)
    3961             : {
    3962           6 :   pari_sp av = avma;
    3963             :   long j, l;
    3964             :   GEN nf, A, I, a;
    3965             : 
    3966           6 :   bnf = checkbnf(bnf); nf = bnf_get_nf(bnf);
    3967           6 :   if (typ(M) == t_POL) M = rnfpseudobasis(nf, M);
    3968             :   else
    3969             :   {
    3970           6 :     if (typ(M) != t_VEC) pari_err_TYPE("rnfhnfbasis", M);
    3971           6 :     if (lg(M) == 5) M = mkvec2(gel(M,1), gel(M,2));
    3972           6 :     M = nfhnf(nf, M); /* in case M is not in HNF */
    3973             :   }
    3974           6 :   A = shallowcopy(gel(M,1));
    3975           6 :   I = gel(M,2); l = lg(A);
    3976          36 :   for (j = 1; j < l; j++)
    3977             :   {
    3978          30 :     if (ideal_is1(gel(I,j))) continue;
    3979          12 :     a = gen_if_principal(bnf, gel(I,j));
    3980          12 :     if (!a) return gc_const(av, gen_0);
    3981          12 :     gel(A,j) = nfC_nf_mul(nf, gel(A,j), a);
    3982             :   }
    3983           6 :   return gerepilecopy(av,A);
    3984             : }
    3985             : 
    3986             : long
    3987           6 : rnfisfree(GEN bnf, GEN M)
    3988             : {
    3989           6 :   pari_sp av = avma;
    3990             :   GEN nf, P, I;
    3991             :   long l, j;
    3992             : 
    3993           6 :   bnf = checkbnf(bnf);
    3994           6 :   if (is_pm1( bnf_get_no(bnf) )) return 1;
    3995           0 :   nf = bnf_get_nf(bnf);
    3996           0 :   M = get_module(nf, M, "rnfisfree");
    3997           0 :   I = gel(M,2); l = lg(I); P = NULL;
    3998           0 :   for (j = 1; j < l; j++)
    3999           0 :     if (!ideal_is1(gel(I,j))) P = P? idealmul(nf, P, gel(I,j)): gel(I,j);
    4000           0 :   return gc_long(av, P? gequal0( isprincipal(bnf,P) ): 1);
    4001             : }
    4002             : 
    4003             : /**********************************************************************/
    4004             : /**                                                                  **/
    4005             : /**                   COMPOSITUM OF TWO NUMBER FIELDS                **/
    4006             : /**                                                                  **/
    4007             : /**********************************************************************/
    4008             : static GEN
    4009       22800 : compositum_fix(GEN nf, GEN A)
    4010             : {
    4011             :   int ok;
    4012       22800 :   if (nf)
    4013             :   {
    4014         840 :     A = RgXQX_red(A, nf_get_pol(nf));
    4015         840 :     A = Q_primpart(liftpol_shallow(A)); RgX_check_ZXX(A,"polcompositum");
    4016         840 :     ok = nfissquarefree(nf,A);
    4017             :   }
    4018             :   else
    4019             :   {
    4020       21960 :     A = Q_primpart(A); RgX_check_ZX(A,"polcompositum");
    4021       21960 :     ok = ZX_is_squarefree(A);
    4022             :   }
    4023       22800 :   if (!ok) pari_err_DOMAIN("polcompositum","issquarefree(arg)","=",gen_0,A);
    4024       22794 :   return A;
    4025             : }
    4026             : #define next_lambda(a) (a>0 ? -a : 1-a)
    4027             : 
    4028             : static long
    4029         438 : nfcompositum_lambda(GEN nf, GEN A, GEN B, long lambda)
    4030             : {
    4031         438 :   pari_sp av = avma;
    4032             :   forprime_t S;
    4033         438 :   GEN T = nf_get_pol(nf);
    4034         438 :   long vT = varn(T);
    4035             :   ulong p;
    4036         438 :   init_modular_big(&S);
    4037         438 :   p = u_forprime_next(&S);
    4038             :   while (1)
    4039          36 :   {
    4040             :     GEN Hp, Tp, a;
    4041         474 :     if (DEBUGLEVEL>4) err_printf("Trying lambda = %ld\n", lambda);
    4042         474 :     a = ZXX_to_FlxX(RgX_rescale(A, stoi(-lambda)), p, vT);
    4043         474 :     Tp = ZX_to_Flx(T, p);
    4044         474 :     Hp = FlxqX_composedsum(a, ZXX_to_FlxX(B, p, vT), Tp, p);
    4045         474 :     if (!FlxqX_is_squarefree(Hp, Tp, p))
    4046          36 :       { lambda = next_lambda(lambda); continue; }
    4047         438 :     if (DEBUGLEVEL>4) err_printf("Final lambda = %ld\n", lambda);
    4048         438 :     return gc_long(av, lambda);
    4049             :   }
    4050             : }
    4051             : 
    4052             : /* modular version */
    4053             : GEN
    4054       11496 : nfcompositum(GEN nf, GEN A, GEN B, long flag)
    4055             : {
    4056       11496 :   pari_sp av = avma;
    4057             :   int same;
    4058             :   long v, k;
    4059             :   GEN C, D, LPRS;
    4060             : 
    4061       11496 :   if (typ(A)!=t_POL) pari_err_TYPE("polcompositum",A);
    4062       11496 :   if (typ(B)!=t_POL) pari_err_TYPE("polcompositum",B);
    4063       11496 :   if (degpol(A)<=0 || degpol(B)<=0) pari_err_CONSTPOL("polcompositum");
    4064       11496 :   v = varn(A);
    4065       11496 :   if (varn(B) != v) pari_err_VAR("polcompositum", A,B);
    4066       11496 :   if (nf)
    4067             :   {
    4068         474 :     nf = checknf(nf);
    4069         468 :     if (varncmp(v,nf_get_varn(nf))>=0) pari_err_PRIORITY("polcompositum", nf, ">=",  v);
    4070             :   }
    4071       11460 :   same = (A == B || RgX_equal(A,B));
    4072       11460 :   A = compositum_fix(nf,A);
    4073       11454 :   B = same ? A: compositum_fix(nf,B);
    4074             : 
    4075       11454 :   D = LPRS = NULL; /* -Wall */
    4076       11454 :   k = same? -1: 1;
    4077       11454 :   if (nf)
    4078             :   {
    4079         438 :     long v0 = fetch_var();
    4080         438 :     GEN q, T = nf_get_pol(nf);
    4081         438 :     A = liftpol_shallow(A);
    4082         438 :     B = liftpol_shallow(B);
    4083         438 :     k = nfcompositum_lambda(nf, A, B, k);
    4084         438 :     if (flag&1)
    4085             :     {
    4086             :       GEN H0, H1;
    4087         168 :       GEN chgvar = deg1pol_shallow(stoi(k),pol_x(v0),v);
    4088         168 :       GEN B1 = poleval(QXQX_to_mod_shallow(B, T), chgvar);
    4089         168 :       C = RgX_resultant_all(QXQX_to_mod_shallow(A, T), B1, &q);
    4090         168 :       C = gsubst(C,v0,pol_x(v));
    4091         168 :       C = lift_if_rational(C);
    4092         168 :       H0 = gsubst(gel(q,2),v0,pol_x(v));
    4093         168 :       H1 = gsubst(gel(q,3),v0,pol_x(v));
    4094         168 :       if (typ(H0) != t_POL) H0 = scalarpol_shallow(H0,v);
    4095         168 :       if (typ(H1) != t_POL) H1 = scalarpol_shallow(H1,v);
    4096         168 :       H0 = lift_if_rational(H0);
    4097         168 :       H1 = lift_if_rational(H1);
    4098         168 :       LPRS = mkvec2(H0,H1);
    4099             :     }
    4100             :     else
    4101             :     {
    4102         270 :       C = nf_direct_compositum(nf, RgX_rescale(A,stoi(-k)), B);
    4103         270 :       setvarn(C, v); C = QXQX_to_mod_shallow(C, T);
    4104             :     }
    4105         438 :     C = RgX_normalize(C);
    4106             :   }
    4107             :   else
    4108             :   {
    4109       11016 :     B = leafcopy(B); setvarn(B,fetch_var_higher());
    4110        2700 :     C = (flag&1)? ZX_ZXY_resultant_all(A, B, &k, &LPRS)
    4111       11016 :                 : ZX_compositum(A, B, &k);
    4112       11016 :     setvarn(C, v);
    4113             :   }
    4114             :   /* C = Res_Y (A(Y), B(X + kY)) guaranteed squarefree */
    4115       11454 :   if (flag & 2)
    4116        8778 :     C = mkvec(C);
    4117             :   else
    4118             :   {
    4119        2676 :     if (same)
    4120             :     {
    4121          90 :       D = RgX_rescale(A, stoi(1 - k));
    4122          90 :       if (nf) D = RgX_normalize(QXQX_to_mod_shallow(D, nf_get_pol(nf)));
    4123          90 :       C = RgX_div(C, D);
    4124          90 :       if (degpol(C) <= 0)
    4125           0 :         C = mkvec(D);
    4126             :       else
    4127          90 :         C = shallowconcat(nf? gel(nffactor(nf,C),1): ZX_DDF(C), D);
    4128             :     }
    4129             :     else
    4130        2586 :       C = nf? gel(nffactor(nf,C),1): ZX_DDF(C);
    4131             :   }
    4132       11454 :   gen_sort_inplace(C, (void*)(nf?&cmp_RgX: &cmpii), &gen_cmp_RgX, NULL);
    4133       11454 :   if (flag&1)
    4134             :   { /* a,b,c root of A,B,C = compositum, c = b - k a */
    4135        2868 :     long i, l = lg(C);
    4136        2868 :     GEN a, b, mH0 = RgX_neg(gel(LPRS,1)), H1 = gel(LPRS,2);
    4137        2868 :     setvarn(mH0,v);
    4138        2868 :     setvarn(H1,v);
    4139        5802 :     for (i=1; i<l; i++)
    4140             :     {
    4141        2934 :       GEN D = gel(C,i);
    4142        2934 :       a = RgXQ_mul(mH0, nf? RgXQ_inv(H1,D): QXQ_inv(H1,D), D);
    4143        2934 :       b = gadd(pol_x(v), gmulsg(k,a));
    4144        2934 :       if (degpol(D) == 1) b = RgX_rem(b,D);
    4145        2934 :       gel(C,i) = mkvec4(D, mkpolmod(a,D), mkpolmod(b,D), stoi(-k));
    4146             :     }
    4147             :   }
    4148       11454 :   (void)delete_var();
    4149       11454 :   settyp(C, t_VEC);
    4150       11454 :   if (flag&2) C = gel(C,1);
    4151       11454 :   return gerepilecopy(av, C);
    4152             : }
    4153             : GEN
    4154       11022 : polcompositum0(GEN A, GEN B, long flag)
    4155       11022 : { return nfcompositum(NULL,A,B,flag); }
    4156             : 
    4157             : GEN
    4158          78 : compositum(GEN pol1,GEN pol2) { return polcompositum0(pol1,pol2,0); }
    4159             : GEN
    4160        2484 : compositum2(GEN pol1,GEN pol2) { return polcompositum0(pol1,pol2,1); }

Generated by: LCOV version 1.16