Line data Source code
1 : /* Copyright (C) 2000 The PARI group.
2 :
3 : This file is part of the PARI/GP package.
4 :
5 : PARI/GP is free software; you can redistribute it and/or modify it under the
6 : terms of the GNU General Public License as published by the Free Software
7 : Foundation; either version 2 of the License, or (at your option) any later
8 : version. It is distributed in the hope that it will be useful, but WITHOUT
9 : ANY WARRANTY WHATSOEVER.
10 :
11 : Check the License for details. You should have received a copy of it, along
12 : with the package; see the file 'COPYING'. If not, write to the Free Software
13 : Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */
14 :
15 : /*******************************************************************/
16 : /* */
17 : /* COMPUTATION OF STARK UNITS OF TOTALLY REAL FIELDS */
18 : /* */
19 : /*******************************************************************/
20 : #include "pari.h"
21 : #include "paripriv.h"
22 :
23 : #define DEBUGLEVEL DEBUGLEVEL_stark
24 :
25 : /* ComputeCoeff */
26 : typedef struct {
27 : GEN L0, L1, L11, L2; /* VECSMALL of p */
28 : GEN L1ray, L11ray; /* precomputed isprincipalray(pr), pr | p */
29 : GEN rayZ; /* precomputed isprincipalray(i), i < condZ */
30 : long condZ; /* generates cond(bnr) \cap Z, assumed small */
31 : } LISTray;
32 :
33 : /* Char evaluation */
34 : typedef struct {
35 : long ord;
36 : GEN *val, chi;
37 : } CHI_t;
38 :
39 : /* RecCoeff */
40 : typedef struct {
41 : GEN M, beta, B, U, nB;
42 : long v, G, N;
43 : } RC_data;
44 :
45 : /********************************************************************/
46 : /* Miscellaneous functions */
47 : /********************************************************************/
48 : static GEN
49 19572 : chi_get_c(GEN chi) { return gmael(chi,1,2); }
50 : static long
51 56539 : chi_get_deg(GEN chi) { return itou(gmael(chi,1,1)); }
52 :
53 : /* Compute the image of logelt by character chi, zeta_ord(chi)^n; return n */
54 : static ulong
55 15344 : CharEval_n(GEN chi, GEN logelt)
56 : {
57 15344 : GEN gn = ZV_dotproduct(chi_get_c(chi), logelt);
58 15344 : return umodiu(gn, chi_get_deg(chi));
59 : }
60 : /* Compute the image of logelt by character chi, as a complex number */
61 : static GEN
62 15288 : CharEval(GEN chi, GEN logelt)
63 : {
64 15288 : ulong n = CharEval_n(chi, logelt), d = chi_get_deg(chi);
65 15288 : long nn = Fl_center(n,d,d>>1);
66 15288 : GEN x = gel(chi,2);
67 15288 : x = gpowgs(x, labs(nn));
68 15288 : if (nn < 0) x = conj_i(x);
69 15288 : return x;
70 : }
71 :
72 : /* return n such that C(elt) = z^n */
73 : static ulong
74 699164 : CHI_eval_n(CHI_t *C, GEN logelt)
75 : {
76 699164 : GEN n = ZV_dotproduct(C->chi, logelt);
77 699164 : return umodiu(n, C->ord);
78 : }
79 : /* return C(elt) */
80 : static GEN
81 697351 : CHI_eval(CHI_t *C, GEN logelt)
82 : {
83 697351 : return C->val[CHI_eval_n(C, logelt)];
84 : }
85 :
86 : static void
87 4228 : init_CHI(CHI_t *c, GEN CHI, GEN z)
88 : {
89 4228 : long i, d = chi_get_deg(CHI);
90 4228 : GEN *v = (GEN*)new_chunk(d);
91 4228 : v[0] = gen_1;
92 4228 : if (d != 1)
93 : {
94 4228 : v[1] = z;
95 36617 : for (i=2; i<d; i++) v[i] = gmul(v[i-1], z);
96 : }
97 4228 : c->chi = chi_get_c(CHI);
98 4228 : c->ord = d;
99 4228 : c->val = v;
100 4228 : }
101 : /* as t_POLMOD */
102 : static void
103 2597 : init_CHI_alg(CHI_t *c, GEN CHI) {
104 2597 : long d = chi_get_deg(CHI);
105 : GEN z;
106 2597 : switch(d)
107 : {
108 0 : case 1: z = gen_1; break;
109 973 : case 2: z = gen_m1; break;
110 1624 : default: z = mkpolmod(pol_x(0), polcyclo(d,0));
111 : }
112 2597 : init_CHI(c,CHI, z);
113 2597 : }
114 : /* as t_COMPLEX */
115 : static void
116 1631 : init_CHI_C(CHI_t *c, GEN CHI) {
117 1631 : init_CHI(c,CHI, gel(CHI,2));
118 1631 : }
119 :
120 : typedef struct {
121 : long r; /* rank = lg(gen) */
122 : GEN j; /* current elt is gen[1]^j[1] ... gen[r]^j[r] */
123 : GEN cyc; /* t_VECSMALL of elementary divisors */
124 : } GROUP_t;
125 :
126 : static int
127 692881 : NextElt(GROUP_t *G)
128 : {
129 692881 : long i = 1;
130 692881 : if (G->r == 0) return 0; /* no more elt */
131 764442 : while (++G->j[i] == G->cyc[i]) /* from 0 to cyc[i]-1 */
132 : {
133 72373 : G->j[i] = 0;
134 72373 : if (++i > G->r) return 0; /* no more elt */
135 : }
136 692069 : return i; /* we have multiplied by gen[i] */
137 : }
138 :
139 : /* enumerate all group elements; trivial elt comes last */
140 : GEN
141 42224 : cyc2elts(GEN cyc)
142 : {
143 : long i, n;
144 : GEN z;
145 : GROUP_t G;
146 :
147 42224 : G.cyc = typ(cyc)==t_VECSMALL? cyc: gtovecsmall(cyc);
148 42224 : n = zv_prod(G.cyc);
149 42224 : G.r = lg(cyc)-1;
150 42224 : G.j = zero_zv(G.r);
151 :
152 42224 : z = cgetg(n+1, t_VEC);
153 42224 : gel(z,n) = leafcopy(G.j); /* trivial elt comes last */
154 671972 : for (i = 1; i < n; i++)
155 : {
156 629748 : (void)NextElt(&G);
157 629748 : gel(z,i) = leafcopy(G.j);
158 : }
159 42224 : return z;
160 : }
161 :
162 : /* nchi: a character given by a vector [d, (c_i)], e.g. from char_normalize
163 : * such that chi(x) = e((c . log(x)) / d) where log(x) on bnr.gen */
164 : static GEN
165 3899 : get_Char(GEN nchi, long prec)
166 3899 : { return mkvec2(nchi, rootsof1_cx(gel(nchi,1), prec)); }
167 :
168 : /* prime divisors of conductor */
169 : static GEN
170 448 : divcond(GEN bnr) {GEN bid = bnr_get_bid(bnr); return gel(bid_get_fact(bid),1);}
171 :
172 : /* vector of prime ideals dividing bnr but not bnrc */
173 : static GEN
174 161 : get_prdiff(GEN D, GEN Dc)
175 : {
176 161 : long n, i, l = lg(D);
177 161 : GEN diff = cgetg(l, t_COL);
178 448 : for (n = i = 1; i < l; i++)
179 287 : if (!tablesearch(Dc, gel(D,i), &cmp_prime_ideal)) gel(diff,n++) = gel(D,i);
180 161 : setlg(diff, n); return diff;
181 : }
182 :
183 : #define ch_prec(x) realprec(gel(x,1))
184 : #define ch_C(x) gel(x,1)
185 : #define ch_bnr(x) gel(x,2)
186 : #define ch_3(x) gel(x,3)
187 : #define ch_q(x) gel(x,3)[1]
188 : #define ch_CHI(x) gel(x,4)
189 : #define ch_diff(x) gel(x,5)
190 : #define ch_CHI0(x) gel(x,6)
191 : #define ch_small(x) gel(x,7)
192 : #define ch_comp(x) gel(x,7)[1]
193 : #define ch_phideg(x) gel(x,7)[2]
194 : static long
195 1393 : ch_deg(GEN dtcr) { return chi_get_deg(ch_CHI(dtcr)); }
196 :
197 : /********************************************************************/
198 : /* 1rst part: find the field K */
199 : /********************************************************************/
200 : static GEN AllStark(GEN data, long flag, long prec);
201 :
202 : /* Columns of C [HNF] give the generators of a subgroup of the finite abelian
203 : * group A [ in terms of implicit generators ], compute data to work in A/C:
204 : * 1) order
205 : * 2) structure
206 : * 3) the matrix A ->> A/C
207 : * 4) the subgroup C */
208 : static GEN
209 1302 : InitQuotient(GEN C)
210 : {
211 1302 : GEN U, D = ZM_snfall_i(C, &U, NULL, 1), h = ZV_prod(D);
212 1302 : return mkvec5(h, D, U, C, cyc_normalize(D));
213 : }
214 :
215 : /* lift chi character on A/C [Qt from InitQuotient] to character on A [cyc]*/
216 : static GEN
217 3465 : LiftChar(GEN Qt, GEN cyc, GEN chi)
218 : {
219 3465 : GEN ncyc = gel(Qt,5), U = gel(Qt,3), nchi = char_normalize(chi, ncyc);
220 3465 : GEN c = ZV_ZM_mul(gel(nchi,2), U), d = gel(nchi,1);
221 3465 : return char_denormalize(cyc, d, c);
222 : }
223 :
224 : /* Let C be a subgroup, system of representatives of the quotient */
225 : static GEN
226 322 : ag_subgroup_classes(GEN C)
227 : {
228 322 : GEN U, D = ZM_snfall_i(C, &U, NULL, 1), e = cyc2elts(D);
229 322 : long i, l = lg(e);
230 :
231 322 : if (ZM_isidentity(U))
232 1946 : for (i = 1; i < l; i++) (void)vecsmall_to_vec_inplace(gel(e,i));
233 : else
234 : {
235 14 : GEN Ui = ZM_inv(U,NULL);
236 84 : for (i = 1; i < l; i++) gel(e,i) = ZM_zc_mul(Ui, gel(e,i));
237 : }
238 322 : return e;
239 : }
240 :
241 : /* Let s: A -> B given by [P,cycA,cycB] A and B, compute the kernel of s. */
242 : GEN
243 448 : ag_kernel(GEN S)
244 : {
245 448 : GEN U, P = gel(S,1), cycA = gel(S,2), DB = diagonal_shallow(gel(S,3));
246 448 : long nA = lg(cycA)-1, rk;
247 :
248 448 : rk = nA + lg(DB) - lg(ZM_hnfall_i(shallowconcat(P, DB), &U, 1));
249 448 : return ZM_hnfmodid(matslice(U, 1,nA, 1,rk), cycA);
250 : }
251 : /* let H be a subgroup of A; return s(H) */
252 : GEN
253 1316 : ag_subgroup_image(GEN S, GEN H)
254 1316 : { return ZM_hnfmodid(ZM_mul(gel(S,1), H), gel(S,3)); }
255 :
256 : /* Let m and n be two moduli such that n|m and let C be a congruence
257 : group modulo n, compute the corresponding congruence group modulo m
258 : ie the kernel of the map Clk(m) ->> Clk(n)/C */
259 : static GEN
260 448 : ComputeKernel(GEN bnrm, GEN bnrn, GEN dtQ)
261 : {
262 448 : pari_sp av = avma;
263 448 : GEN S = bnrsurjection(bnrm, bnrn);
264 448 : GEN P = ZM_mul(gel(dtQ,3), gel(S,1));
265 448 : return gerepileupto(av, ag_kernel(mkvec3(P, gel(S,2), gel(dtQ,2))));
266 : }
267 :
268 : static long
269 1169 : cyc_is_cyclic(GEN cyc) { return lg(cyc) <= 2 || equali1(gel(cyc,2)); }
270 :
271 : /* Let H be a subgroup of cl(bnr)/sugbroup, return 1 if
272 : cl(bnr)/subgoup/H is cyclic and the signature of the
273 : corresponding field is equal to sig and no finite prime
274 : dividing cond(bnr) is totally split in this field. Return 0
275 : otherwise. */
276 : static long
277 518 : IsGoodSubgroup(GEN H, GEN bnr, GEN map)
278 : {
279 518 : pari_sp av = avma;
280 : GEN S, mod, modH, p1, U, P, PH, bnrH, iH, qH;
281 : long j;
282 :
283 518 : p1 = InitQuotient(H);
284 : /* quotient is non cyclic */
285 518 : if (!cyc_is_cyclic(gel(p1,2))) return gc_long(av,0);
286 :
287 252 : (void)ZM_hnfall_i(shallowconcat(map,H), &U, 0);
288 252 : setlg(U, lg(H));
289 924 : for (j = 1; j < lg(U); j++) setlg(gel(U,j), lg(H));
290 252 : p1 = ZM_hnfmodid(U, bnr_get_cyc(bnr)); /* H as a subgroup of bnr */
291 252 : modH = bnrconductor_raw(bnr, p1);
292 252 : mod = bnr_get_mod(bnr);
293 :
294 : /* is the signature correct? */
295 252 : if (!gequal(gel(modH,2), gel(mod,2))) return gc_long(av, 0);
296 :
297 : /* finite part are the same: OK */
298 182 : if (gequal(gel(modH,1), gel(mod,1))) return gc_long(av, 1);
299 :
300 : /* need to check the splitting of primes dividing mod but not modH */
301 63 : bnrH = Buchray(bnr, modH, nf_INIT);
302 63 : P = divcond(bnr);
303 63 : PH = divcond(bnrH);
304 63 : S = bnrsurjection(bnr, bnrH);
305 : /* H as a subgroup of bnrH */
306 63 : iH = ag_subgroup_image(S, p1);
307 63 : qH = InitQuotient(iH);
308 203 : for (j = 1; j < lg(P); j++)
309 : {
310 161 : GEN pr = gel(P, j), e;
311 : /* if pr divides modH, it is ramified, so it's good */
312 161 : if (tablesearch(PH, pr, cmp_prime_ideal)) continue;
313 : /* inertia degree of pr in bnr(modH)/H is charorder(e, cycH) */
314 56 : e = ZM_ZC_mul(gel(qH,3), isprincipalray(bnrH, pr));
315 56 : e = vecmodii(e, gel(qH,2));
316 56 : if (ZV_equal0(e)) return gc_long(av,0); /* f = 1 */
317 : }
318 42 : return gc_long(av,1);
319 : }
320 :
321 : /* compute list of nontrivial characters trivial on H, modulo complex
322 : * conjugation. If flag is set, impose a nontrivial conductor at infinity */
323 : static GEN
324 392 : AllChars(GEN bnr, GEN dtQ, long flag)
325 : {
326 392 : GEN v, vchi, cyc = bnr_get_cyc(bnr);
327 392 : long n, i, hD = itos(gel(dtQ,1));
328 : hashtable *S;
329 :
330 392 : v = cgetg(hD+1, t_VEC); /* nonconjugate chars */
331 392 : vchi = cyc2elts(gel(dtQ,2));
332 392 : S = hash_create(hD, (ulong(*)(void*))&hash_GEN,
333 : (int(*)(void*,void*))&ZV_equal, 1);
334 3857 : for (i = n = 1; i < hD; i++) /* remove i = hD: trivial char */
335 : { /* lift a character of D in Clk(m) */
336 3465 : GEN F, lchi = LiftChar(dtQ, cyc, zv_to_ZV(gel(vchi,i))), cchi = NULL;
337 :
338 3465 : if (hash_search(S, lchi)) continue;
339 2653 : F = bnrconductor_raw(bnr, lchi);
340 2653 : if (flag && gequal0(gel(F,2))) continue; /* f_oo(chi) trivial ? */
341 :
342 1267 : if (abscmpiu(charorder(cyc,lchi), 2) > 0)
343 : { /* nonreal chi: add its conjugate character to S */
344 812 : cchi = charconj(cyc, lchi);
345 812 : hash_insert(S, cchi, (void*)1);
346 : }
347 1267 : gel(v, n++) = cchi? mkvec3(lchi, F, cchi): mkvec2(lchi, F);
348 : }
349 392 : setlg(v, n); return v;
350 : }
351 :
352 : static GEN InitChar(GEN bnr, GEN CR, long flag, long prec);
353 : static void CharNewPrec(GEN data, long prec);
354 :
355 : /* Given a conductor and a subgroups, return the corresponding complexity and
356 : * precision required using quickpol. Fill data[5] with dataCR */
357 : static long
358 322 : CplxModulus(GEN data, long *newprec)
359 : {
360 322 : long dprec = DEFAULTPREC;
361 322 : pari_sp av = avma;
362 : for (;;)
363 0 : {
364 322 : GEN cpl, pol = AllStark(data, -1, dprec);
365 322 : cpl = RgX_fpnorml2(pol, LOWDEFAULTPREC);
366 322 : dprec = maxss(dprec, nbits2extraprec(gexpo(pol))) + EXTRAPREC64;
367 322 : if (!gequal0(cpl)) { *newprec = dprec; return gexpo(cpl); }
368 0 : set_avma(av);
369 0 : if (DEBUGLEVEL>1) pari_warn(warnprec, "CplxModulus", dprec);
370 0 : CharNewPrec(data, dprec);
371 : }
372 : }
373 :
374 : /* return A \cap B in abelian group defined by cyc. NULL = whole group */
375 : static GEN
376 567 : subgp_intersect(GEN cyc, GEN A, GEN B)
377 : {
378 : GEN H, U;
379 : long k, lH;
380 567 : if (!A) return B;
381 224 : if (!B) return A;
382 224 : H = ZM_hnfall_i(shallowconcat(A,B), &U, 1);
383 224 : setlg(U, lg(A)); lH = lg(H);
384 798 : for (k = 1; k < lg(U); k++) setlg(gel(U,k), lH);
385 224 : return ZM_hnfmodid(ZM_mul(A,U), cyc);
386 : }
387 :
388 : static void CharNewPrec(GEN dataCR, long prec);
389 : /* Let (f,C) be a conductor without infinite part and a congruence group mod f.
390 : * Compute (m,D) such that D is a congruence group of conductor m, f | m,
391 : * divisible by all the infinite places but one, D is a subgroup of index 2 of
392 : * Cm = Ker: Clk(m) -> Clk(f)/C. Consider further the subgroups H of Clk(m)/D
393 : * with cyclic quotient Clk(m)/H such that no place dividing m is totally split
394 : * in the extension KH corresponding to H: we want their intersection to be
395 : * trivial. These H correspond to (the kernels of Galois orbits of) characters
396 : * chi of Clk(m)/D such that chi(log_gen_arch(m_oo)) != 1 and for all pr | m
397 : * we either have
398 : * - chi(log_gen_pr(pr,1)) != 1 [pr | cond(chi) => ramified in KH]
399 : * - or [pr \nmid cond(chi)] chi lifted to Clk(m/pr^oo) is not trivial at pr.
400 : * We want the map from Clk(m)/D given by the vector of such characters to have
401 : * trivial kernel. Return bnr(m), D, Ck(m)/D and Clk(m)/Cm */
402 : static GEN
403 322 : FindModulus(GEN bnr, GEN dtQ, long *newprec)
404 : {
405 322 : const long LIMNORM = 400;
406 322 : long n, i, maxnorm, minnorm, N, pr, rb, iscyc, olde = LONG_MAX;
407 322 : pari_sp av = avma;
408 322 : GEN bnf, nf, f, varch, m, rep = NULL;
409 :
410 322 : bnf = bnr_get_bnf(bnr);
411 322 : nf = bnf_get_nf(bnf);
412 322 : N = nf_get_degree(nf);
413 322 : f = gel(bnr_get_mod(bnr), 1);
414 :
415 : /* if cpl < rb, it is not necessary to try another modulus */
416 322 : rb = expi( powii(mulii(nf_get_disc(nf), ZM_det_triangular(f)),
417 : gmul2n(bnr_get_no(bnr), 3)) );
418 :
419 : /* Initialization of the possible infinite part */
420 322 : varch = cgetg(N+1,t_VEC);
421 1106 : for (i = 1; i <= N; i++)
422 : {
423 784 : GEN a = const_vec(N,gen_1);
424 784 : gel(a, N+1-i) = gen_0;
425 784 : gel(varch, i) = a;
426 : }
427 322 : m = cgetg(3, t_VEC);
428 :
429 : /* Go from minnorm up to maxnorm; if necessary, increase these values.
430 : * If the extension is cyclic then a suitable conductor exists and we go on
431 : * until we find it. Else, stop at norm LIMNORM. */
432 322 : minnorm = 1;
433 322 : maxnorm = 50;
434 322 : iscyc = cyc_is_cyclic(gel(dtQ,2));
435 :
436 322 : if (DEBUGLEVEL>1)
437 0 : err_printf("Looking for a modulus of norm: ");
438 :
439 : for(;;)
440 0 : {
441 322 : GEN listid = ideallist0(nf, maxnorm, 4+8); /* ideals of norm <= maxnorm */
442 322 : pari_sp av1 = avma;
443 1463 : for (n = minnorm; n <= maxnorm; n++, set_avma(av1))
444 : {
445 1463 : GEN idnormn = gel(listid,n);
446 1463 : long nbidnn = lg(idnormn) - 1;
447 1463 : if (DEBUGLEVEL>1) err_printf(" %ld", n);
448 2296 : for (i = 1; i <= nbidnn; i++)
449 : { /* finite part of the conductor */
450 : long s;
451 :
452 1155 : gel(m,1) = idealmul(nf, f, gel(idnormn,i));
453 3213 : for (s = 1; s <= N; s++)
454 : { /* infinite part */
455 : GEN candD, Cm, bnrm;
456 : long lD, c;
457 :
458 2380 : gel(m,2) = gel(varch,s);
459 : /* compute Clk(m), check if m is a conductor */
460 2380 : bnrm = Buchray(bnf, m, nf_INIT);
461 2380 : if (!bnrisconductor(bnrm, NULL)) continue;
462 :
463 : /* compute Im(C) in Clk(m)... */
464 448 : Cm = ComputeKernel(bnrm, bnr, dtQ);
465 : /* ... and its subgroups of index 2 with conductor m */
466 448 : candD = subgrouplist_cond_sub(bnrm, Cm, mkvec(gen_2));
467 448 : lD = lg(candD);
468 455 : for (c = 1; c < lD; c++)
469 : {
470 329 : GEN data, CR, D = gel(candD,c), QD = InitQuotient(D);
471 329 : GEN ord = gel(QD,1), cyc = gel(QD,2), map = gel(QD,3);
472 : long e;
473 :
474 329 : if (!cyc_is_cyclic(cyc)) /* cyclic => suitable, else test */
475 : {
476 77 : GEN lH = subgrouplist(cyc, NULL), IK = NULL;
477 77 : long j, ok = 0;
478 574 : for (j = 1; j < lg(lH); j++)
479 : {
480 567 : GEN H = gel(lH, j), IH = subgp_intersect(cyc, IK, H);
481 : /* if H > IK, no need to test H */
482 567 : if (IK && gidentical(IH, IK)) continue;
483 518 : if (IsGoodSubgroup(H, bnrm, map))
484 : {
485 161 : IK = IH; /* intersection of all good subgroups */
486 161 : if (equalii(ord, ZM_det_triangular(IK))) { ok = 1; break; }
487 : }
488 : }
489 77 : if (!ok) continue;
490 : }
491 322 : CR = InitChar(bnrm, AllChars(bnrm, QD, 1), 0, DEFAULTPREC);
492 322 : data = mkvec4(bnrm, D, ag_subgroup_classes(Cm), CR);
493 322 : if (DEBUGLEVEL>1)
494 0 : err_printf("\nTrying modulus = %Ps and subgroup = %Ps\n",
495 : bnr_get_mod(bnrm), D);
496 322 : e = CplxModulus(data, &pr);
497 322 : if (DEBUGLEVEL>1) err_printf("cpl = 2^%ld\n", e);
498 322 : if (e < olde)
499 : {
500 322 : guncloneNULL(rep); rep = gclone(data);
501 322 : *newprec = pr; olde = e;
502 : }
503 322 : if (olde < rb) goto END; /* OK */
504 0 : if (DEBUGLEVEL>1) err_printf("Trying to find another modulus...");
505 : }
506 : }
507 833 : if (rep) goto END; /* OK */
508 : }
509 : }
510 : /* if necessary compute more ideals */
511 0 : minnorm = maxnorm;
512 0 : maxnorm <<= 1;
513 0 : if (!iscyc && maxnorm > LIMNORM) return NULL;
514 : }
515 322 : END:
516 322 : if (DEBUGLEVEL>1)
517 0 : err_printf("No, we're done!\nModulus = %Ps and subgroup = %Ps\n",
518 0 : bnr_get_mod(gel(rep,1)), gel(rep,2));
519 322 : CharNewPrec(rep, *newprec); return gerepilecopy(av, rep);
520 : }
521 :
522 : /********************************************************************/
523 : /* 2nd part: compute W(X) */
524 : /********************************************************************/
525 :
526 : /* find ilambda s.t. Diff*f*ilambda integral and coprime to f
527 : and ilambda >> 0 at foo, fa = factorization of f */
528 : static GEN
529 812 : get_ilambda(GEN nf, GEN fa, GEN foo)
530 : {
531 812 : GEN x, w, E2, P = gel(fa,1), E = gel(fa,2), D = nf_get_diff(nf);
532 812 : long i, l = lg(P);
533 812 : if (l == 1) return gen_1;
534 679 : w = cgetg(l, t_VEC);
535 679 : E2 = cgetg(l, t_COL);
536 1498 : for (i = 1; i < l; i++)
537 : {
538 819 : GEN pr = gel(P,i), t = pr_get_tau(pr);
539 819 : long e = itou(gel(E,i)), v = idealval(nf, D, pr);
540 819 : if (v) { D = idealdivpowprime(nf, D, pr, utoipos(v)); e += v; }
541 819 : gel(E2,i) = stoi(e+1);
542 819 : if (typ(t) == t_MAT) t = gel(t,1);
543 819 : gel(w,i) = gdiv(nfpow(nf, t, stoi(e)), powiu(pr_get_p(pr),e));
544 : }
545 679 : x = mkmat2(P, E2);
546 679 : return idealchinese(nf, mkvec2(x, foo), w);
547 : }
548 : /* compute the list of W(chi) such that Ld(s,chi) = W(chi) Ld(1 - s, chi*),
549 : * for all chi in LCHI. All chi have the same conductor (= cond(bnr)). */
550 : static GEN
551 1015 : ArtinNumber(GEN bnr, GEN LCHI, long prec)
552 : {
553 1015 : long ic, i, j, nz, nChar = lg(LCHI)-1;
554 : pari_sp av2;
555 : GEN sqrtnc, cond, condZ, cond0, cond1, nf, T, cyc, vN, vB, diff, vt, idh;
556 : GEN zid, gen, z, nchi, indW, W, classe, s0, s, den, ilambda, sarch;
557 : CHI_t **lC;
558 : GROUP_t G;
559 :
560 1015 : lC = (CHI_t**)new_chunk(nChar + 1);
561 1015 : indW = cgetg(nChar + 1, t_VECSMALL);
562 1015 : W = cgetg(nChar + 1, t_VEC);
563 3528 : for (ic = 0, i = 1; i <= nChar; i++)
564 : {
565 2513 : GEN CHI = gel(LCHI,i);
566 2513 : if (chi_get_deg(CHI) <= 2) { gel(W,i) = gen_1; continue; }
567 1631 : ic++; indW[ic] = i;
568 1631 : lC[ic] = (CHI_t*)new_chunk(sizeof(CHI_t));
569 1631 : init_CHI_C(lC[ic], CHI);
570 : }
571 1015 : if (!ic) return W;
572 812 : nChar = ic;
573 :
574 812 : nf = bnr_get_nf(bnr);
575 812 : diff = nf_get_diff(nf);
576 812 : T = nf_get_Tr(nf);
577 812 : cond = bnr_get_mod(bnr);
578 812 : cond0 = gel(cond,1); condZ = gcoeff(cond0,1,1);
579 812 : cond1 = gel(cond,2);
580 :
581 812 : sqrtnc = gsqrt(idealnorm(nf, cond0), prec);
582 812 : ilambda = get_ilambda(nf, bid_get_fact(bnr_get_bid(bnr)), cond1);
583 812 : idh = idealmul(nf, ilambda, idealmul(nf, diff, cond0)); /* integral */
584 812 : ilambda = Q_remove_denom(ilambda, &den);
585 812 : z = den? rootsof1_cx(den, prec): NULL;
586 :
587 : /* compute a system of generators of (Ok/cond)^*, we'll make them
588 : * cond1-positive in the main loop */
589 812 : zid = Idealstar(nf, cond0, nf_GEN);
590 812 : cyc = abgrp_get_cyc(zid);
591 812 : gen = abgrp_get_gen(zid);
592 812 : nz = lg(gen) - 1;
593 812 : sarch = nfarchstar(nf, cond0, vec01_to_indices(cond1));
594 :
595 812 : nchi = cgetg(nChar+1, t_VEC);
596 2443 : for (ic = 1; ic <= nChar; ic++) gel(nchi,ic) = cgetg(nz + 1, t_VECSMALL);
597 1673 : for (i = 1; i <= nz; i++)
598 : {
599 861 : if (is_bigint(gel(cyc,i)))
600 0 : pari_err_OVERFLOW("ArtinNumber [conductor too large]");
601 861 : gel(gen,i) = set_sign_mod_divisor(nf, NULL, gel(gen,i), sarch);
602 861 : classe = isprincipalray(bnr, gel(gen,i));
603 2674 : for (ic = 1; ic <= nChar; ic++) {
604 1813 : GEN n = gel(nchi,ic);
605 1813 : n[i] = CHI_eval_n(lC[ic], classe);
606 : }
607 : }
608 :
609 : /* Sum chi(beta) * exp(2i * Pi * Tr(beta * ilambda) where beta
610 : runs through the classes of (Ok/cond0)^* and beta cond1-positive */
611 812 : vt = gel(T,1); /* ( Tr(w_i) )_i */
612 812 : if (typ(ilambda) == t_COL)
613 588 : vt = ZV_ZM_mul(vt, zk_multable(nf, ilambda));
614 : else
615 224 : vt = ZC_Z_mul(vt, ilambda);
616 : /*vt = den . (Tr(w_i * ilambda))_i */
617 812 : G.cyc = gtovecsmall(cyc);
618 812 : G.r = nz;
619 812 : G.j = zero_zv(nz);
620 812 : vN = zero_Flm_copy(nz, nChar);
621 :
622 812 : av2 = avma;
623 812 : vB = const_vec(nz, gen_1);
624 812 : s0 = z? powgi(z, modii(gel(vt,1), den)): gen_1; /* for beta = 1 */
625 812 : s = const_vec(nChar, s0);
626 :
627 63133 : while ( (i = NextElt(&G)) )
628 : {
629 62321 : GEN b = gel(vB,i);
630 62321 : b = nfmuli(nf, b, gel(gen,i));
631 62321 : b = typ(b) == t_COL? FpC_red(b, condZ): modii(b, condZ);
632 125020 : for (j=1; j<=i; j++) gel(vB,j) = b;
633 :
634 257236 : for (ic = 1; ic <= nChar; ic++)
635 : {
636 194915 : GEN v = gel(vN,ic), n = gel(nchi,ic);
637 194915 : v[i] = Fl_add(v[i], n[i], lC[ic]->ord);
638 195601 : for (j=1; j<i; j++) v[j] = v[i];
639 : }
640 :
641 62321 : gel(vB,i) = b = set_sign_mod_divisor(nf, NULL, b, sarch);
642 62321 : if (!z)
643 0 : s0 = gen_1;
644 : else
645 : {
646 62321 : b = typ(b) == t_COL? ZV_dotproduct(vt, b): mulii(gel(vt,1),b);
647 62321 : s0 = powgi(z, modii(b,den));
648 : }
649 257236 : for (ic = 1; ic <= nChar; ic++)
650 : {
651 194915 : GEN v = gel(vN,ic), val = lC[ic]->val[ v[i] ];
652 194915 : gel(s,ic) = gadd(gel(s,ic), gmul(val, s0));
653 : }
654 :
655 62321 : if (gc_needed(av2, 1))
656 : {
657 1 : if (DEBUGMEM > 1) pari_warn(warnmem,"ArtinNumber");
658 1 : gerepileall(av2, 2, &s, &vB);
659 : }
660 : }
661 :
662 812 : classe = isprincipalray(bnr, idh);
663 812 : z = powIs(- (lg(gel(sarch,1))-1));
664 :
665 2443 : for (ic = 1; ic <= nChar; ic++)
666 : {
667 1631 : s0 = gmul(gel(s,ic), CHI_eval(lC[ic], classe));
668 1631 : gel(W, indW[ic]) = gmul(gdiv(s0, sqrtnc), z);
669 : }
670 812 : return W;
671 : }
672 :
673 : static GEN
674 735 : AllArtinNumbers(GEN CR, long prec)
675 : {
676 735 : pari_sp av = avma;
677 735 : GEN vChar = gel(CR,1), dataCR = gel(CR,2);
678 735 : long j, k, cl = lg(dataCR) - 1, J = lg(vChar)-1;
679 735 : GEN W = cgetg(cl+1,t_VEC), WbyCond, LCHI;
680 :
681 1673 : for (j = 1; j <= J; j++)
682 : {
683 938 : GEN LChar = gel(vChar,j), ldata = vecpermute(dataCR, LChar);
684 938 : GEN dtcr = gel(ldata,1), bnr = ch_bnr(dtcr);
685 938 : long l = lg(LChar);
686 :
687 938 : if (DEBUGLEVEL>1)
688 0 : err_printf("* Root Number: cond. no %ld/%ld (%ld chars)\n", j, J, l-1);
689 938 : LCHI = cgetg(l, t_VEC);
690 3374 : for (k = 1; k < l; k++) gel(LCHI,k) = ch_CHI0(gel(ldata,k));
691 938 : WbyCond = ArtinNumber(bnr, LCHI, prec);
692 3374 : for (k = 1; k < l; k++) gel(W,LChar[k]) = gel(WbyCond,k);
693 : }
694 735 : return gerepilecopy(av, W);
695 : }
696 :
697 : /* compute the constant W of the functional equation of
698 : Lambda(chi). If flag = 1 then chi is assumed to be primitive */
699 : GEN
700 77 : bnrrootnumber(GEN bnr, GEN chi, long flag, long prec)
701 : {
702 77 : pari_sp av = avma;
703 : GEN cyc, W;
704 :
705 77 : if (flag < 0 || flag > 1) pari_err_FLAG("bnrrootnumber");
706 77 : checkbnr(bnr);
707 77 : if (flag)
708 : {
709 0 : cyc = bnr_get_cyc(bnr);
710 0 : if (!char_check(cyc,chi)) pari_err_TYPE("bnrrootnumber [character]", chi);
711 : }
712 : else
713 : {
714 77 : bnr_char_sanitize(&bnr, &chi);
715 77 : cyc = bnr_get_cyc(bnr);
716 : }
717 77 : chi = char_normalize(chi, cyc_normalize(cyc));
718 77 : chi = get_Char(chi, prec);
719 77 : W = ArtinNumber(bnr, mkvec(chi), prec);
720 77 : return gerepilecopy(av, gel(W,1));
721 : }
722 :
723 : /********************************************************************/
724 : /* 3rd part: initialize the characters */
725 : /********************************************************************/
726 :
727 : /* Let chi be a character, A(chi) corresponding to the primes dividing diff
728 : * at s = flag. If s = 0, returns [r, A] where r is the order of vanishing
729 : * at s = 0 corresponding to diff. */
730 : static GEN
731 2184 : AChi(GEN dtcr, long *r, long flag, long prec)
732 : {
733 2184 : GEN A, diff = ch_diff(dtcr), bnrc = ch_bnr(dtcr), chi = ch_CHI0(dtcr);
734 2184 : long i, l = lg(diff);
735 :
736 2184 : A = gen_1; *r = 0;
737 2296 : for (i = 1; i < l; i++)
738 : {
739 112 : GEN B, pr = gel(diff,i), z = CharEval(chi, isprincipalray(bnrc, pr));
740 112 : if (flag)
741 0 : B = gsubsg(1, gdiv(z, pr_norm(pr)));
742 112 : else if (gequal1(z))
743 : {
744 21 : B = glog(pr_norm(pr), prec);
745 21 : (*r)++;
746 : }
747 : else
748 91 : B = gsubsg(1, z);
749 112 : A = gmul(A, B);
750 : }
751 2184 : return A;
752 : }
753 : /* simplified version of Achi: return 1 if L(0,chi) = 0 */
754 : static int
755 1029 : L_vanishes_at_0(GEN D)
756 : {
757 1029 : GEN diff = ch_diff(D), bnrc = ch_bnr(D), chi = ch_CHI0(D);
758 1029 : long i, l = lg(diff);
759 1071 : for (i = 1; i < l; i++)
760 : {
761 56 : GEN pr = gel(diff,i);
762 56 : if (!CharEval_n(chi, isprincipalray(bnrc, pr))) return 1;
763 : }
764 1015 : return 0;
765 : }
766 :
767 : static GEN
768 532 : _data3(GEN arch, long r2)
769 : {
770 532 : GEN z = cgetg(4, t_VECSMALL);
771 532 : long i, r1 = lg(arch) - 1, q = 0;
772 1701 : for (i = 1; i <= r1; i++) if (signe(gel(arch,i))) q++;
773 532 : z[1] = q;
774 532 : z[2] = r1 - q;
775 532 : z[3] = r2; return z;
776 : }
777 : static void
778 1701 : ch_get3(GEN dtcr, long *a, long *b, long *c)
779 1701 : { GEN v = ch_3(dtcr); *a = v[1]; *b = v[2]; *c = v[3]; }
780 : static GEN
781 735 : get_C(GEN nf, long prec)
782 : {
783 735 : long r2 = nf_get_r2(nf), N = nf_get_degree(nf);
784 735 : return gmul2n(sqrtr_abs(divir(nf_get_disc(nf), powru(mppi(prec),N))), -r2);
785 : }
786 : /* sort chars according to conductor */
787 : static GEN
788 385 : sortChars(GEN ch)
789 : {
790 385 : long j, l = lg(ch);
791 385 : GEN F = cgetg(l, t_VEC);
792 1652 : for (j = 1; j < l; j++) gel(F, j) = gmael(ch,j,2);
793 385 : return vec_equiv(F);
794 : }
795 :
796 : /* Given a list [chi, F = cond(chi)] of characters over Cl(bnr), return
797 : * [vChar, dataCR], where vChar contains the equivalence classes of
798 : * characters with the same conductor, and dataCR contains for each character:
799 : * - bnr(F)
800 : * - the constant C(F) [t_REAL]
801 : * - [q, r1 - q, r2, rc] where
802 : * q = number of real places in F
803 : * rc = max{r1 + r2 - q + 1, r2 + q}
804 : * - diff(chi) primes dividing m but not F
805 : * - chi in bnr(m)
806 : * - chi in bnr(F).
807 : * If all is unset, only compute characters s.t. L(chi,0) != 0 */
808 : static GEN
809 385 : InitChar(GEN bnr, GEN ch, long all, long prec)
810 : {
811 385 : GEN bnf = checkbnf(bnr), nf = bnf_get_nf(bnf), mod = bnr_get_mod(bnr);
812 385 : GEN C, dataCR, ncyc, vChar = sortChars(ch);
813 385 : long n, l, r2 = nf_get_r2(nf), prec2 = precdbl(prec) + EXTRAPREC64;
814 385 : long lv = lg(vChar);
815 :
816 385 : C = get_C(nf, prec2);
817 385 : ncyc = cyc_normalize(bnr_get_cyc(bnr));
818 :
819 385 : dataCR = cgetg_copy(ch, &l);
820 917 : for (n = 1; n < lv; n++)
821 : {
822 532 : GEN D, bnrc, v = gel(vChar, n); /* indices of chars of given conductor */
823 532 : long a, i = v[1], lc = lg(v);
824 532 : GEN F = gmael(ch,i,2);
825 :
826 532 : gel(dataCR, i) = D = cgetg(8, t_VEC);
827 532 : ch_C(D) = mulrr(C, gsqrt(ZM_det_triangular(gel(F,1)), prec2));
828 532 : ch_3(D) = _data3(gel(F,2), r2);
829 532 : if (gequal(F, mod))
830 : {
831 371 : ch_bnr(D) = bnrc = bnr;
832 371 : ch_diff(D) = cgetg(1, t_VEC);
833 : }
834 : else
835 : {
836 161 : ch_bnr(D) = bnrc = Buchray(bnf, F, nf_INIT);
837 161 : ch_diff(D) = get_prdiff(divcond(bnr), divcond(bnrc));
838 : }
839 1799 : for (a = 1; a < lc; a++)
840 : {
841 1267 : long i = v[a];
842 1267 : GEN chi = gmael(ch,i,1);
843 :
844 1267 : if (a > 1) gel(dataCR, i) = D = leafcopy(D);
845 1267 : chi = char_normalize(chi,ncyc);
846 1267 : ch_CHI(D) = get_Char(chi, prec2);
847 1267 : if (bnrc == bnr)
848 1050 : ch_CHI0(D) = ch_CHI(D);
849 : else
850 : {
851 217 : chi = bnrchar_primitive(bnr, chi, bnrc);
852 217 : ch_CHI0(D) = get_Char(chi, prec2);
853 : }
854 : /* set last */
855 1267 : ch_small(D) = mkvecsmall2(all || !L_vanishes_at_0(D),
856 1267 : eulerphiu(itou(gel(chi,1))));
857 : }
858 : }
859 385 : return mkvec2(vChar, dataCR);
860 : }
861 :
862 : /* recompute dataCR with the new precision, modify bnr components in place */
863 : static void
864 350 : CharNewPrec(GEN data, long prec)
865 : {
866 350 : long j, l, prec2 = precdbl(prec) + EXTRAPREC64;
867 350 : GEN C, nf, dataCR = gmael(data,4,2), D = gel(dataCR,1);
868 :
869 350 : if (ch_prec(D) >= prec2) return;
870 350 : nf = bnr_get_nf(ch_bnr(D));
871 350 : if (nf_get_prec(nf) < prec) nf = nfnewprec_shallow(nf, prec); /* not prec2 */
872 350 : C = get_C(nf, prec2); l = lg(dataCR);
873 1519 : for (j = 1; j < l; j++)
874 : {
875 : GEN f0;
876 1169 : D = gel(dataCR,j); f0 = gel(bnr_get_mod(ch_bnr(D)), 1);
877 1169 : ch_C(D) = mulrr(C, gsqrt(ZM_det_triangular(f0), prec2));
878 1169 : gmael(ch_bnr(D), 1, 7) = nf;
879 1169 : ch_CHI(D) = get_Char(gel(ch_CHI(D),1), prec2);
880 1169 : ch_CHI0(D)= get_Char(gel(ch_CHI0(D),1), prec2);
881 : }
882 : }
883 :
884 : /********************************************************************/
885 : /* 4th part: compute the coefficients an(chi) */
886 : /* */
887 : /* matan entries are arrays of ints containing the coefficients of */
888 : /* an(chi) as a polmod modulo polcyclo(order(chi)) */
889 : /********************************************************************/
890 :
891 : static void
892 1368550 : _0toCoeff(int *rep, long deg)
893 : {
894 : long i;
895 6841980 : for (i=0; i<deg; i++) rep[i] = 0;
896 1368550 : }
897 :
898 : /* transform a polmod into Coeff */
899 : static void
900 394440 : Polmod2Coeff(int *rep, GEN polmod, long deg)
901 : {
902 : long i;
903 394440 : if (typ(polmod) == t_POLMOD)
904 : {
905 282396 : GEN pol = gel(polmod,2);
906 282396 : long d = degpol(pol);
907 :
908 282396 : pol += 2;
909 1270442 : for (i=0; i<=d; i++) rep[i] = itos(gel(pol,i));
910 694276 : for ( ; i<deg; i++) rep[i] = 0;
911 : }
912 : else
913 : {
914 112044 : rep[0] = itos(polmod);
915 125670 : for (i=1; i<deg; i++) rep[i] = 0;
916 : }
917 394440 : }
918 :
919 : /* initialize a deg * n matrix of ints */
920 : static int**
921 4186 : InitMatAn(long n, long deg, long flag)
922 : {
923 : long i, j;
924 4186 : int *a, **A = (int**)pari_malloc((n+1)*sizeof(int*));
925 4186 : A[0] = NULL;
926 5892609 : for (i = 1; i <= n; i++)
927 : {
928 5888423 : a = (int*)pari_malloc(deg*sizeof(int));
929 5888423 : A[i] = a; a[0] = (i == 1 || flag);
930 19110815 : for (j = 1; j < deg; j++) a[j] = 0;
931 : }
932 4186 : return A;
933 : }
934 :
935 : static void
936 6608 : FreeMat(int **A, long n)
937 : {
938 : long i;
939 5908387 : for (i = 0; i <= n; i++)
940 5901779 : if (A[i]) pari_free((void*)A[i]);
941 6608 : pari_free((void*)A);
942 6608 : }
943 :
944 : /* initialize Coeff reduction */
945 : static int**
946 2422 : InitReduction(long d, long deg)
947 : {
948 : long j;
949 2422 : pari_sp av = avma;
950 : int **A;
951 : GEN polmod, pol;
952 :
953 2422 : A = (int**)pari_malloc(deg*sizeof(int*));
954 2422 : pol = polcyclo(d, 0);
955 11592 : for (j = 0; j < deg; j++)
956 : {
957 9170 : A[j] = (int*)pari_malloc(deg*sizeof(int));
958 9170 : polmod = gmodulo(pol_xn(deg+j, 0), pol);
959 9170 : Polmod2Coeff(A[j], polmod, deg);
960 : }
961 :
962 2422 : set_avma(av); return A;
963 : }
964 :
965 : #if 0
966 : void
967 : pan(int **an, long n, long deg)
968 : {
969 : long i,j;
970 : for (i = 1; i <= n; i++)
971 : {
972 : err_printf("n = %ld: ",i);
973 : for (j = 0; j < deg; j++) err_printf("%d ",an[i][j]);
974 : err_printf("\n");
975 : }
976 : }
977 : #endif
978 :
979 : /* returns 0 if c is zero, 1 otherwise. */
980 : static int
981 7574308 : IsZero(int* c, long deg)
982 : {
983 : long i;
984 25159695 : for (i = 0; i < deg; i++)
985 19789001 : if (c[i]) return 0;
986 5370694 : return 1;
987 : }
988 :
989 : /* set c0 <-- c0 * c1 */
990 : static void
991 2118883 : MulCoeff(int *c0, int* c1, int** reduc, long deg)
992 : {
993 : long i,j;
994 : int c, *T;
995 :
996 2118883 : if (IsZero(c0,deg)) return;
997 :
998 1128589 : T = (int*)new_chunk(2*deg);
999 13916839 : for (i = 0; i < 2*deg; i++)
1000 : {
1001 12788250 : c = 0;
1002 161443073 : for (j = 0; j <= i; j++)
1003 148654823 : if (j < deg && j > i - deg) c += c0[j] * c1[i-j];
1004 12788250 : T[i] = c;
1005 : }
1006 7522714 : for (i = 0; i < deg; i++)
1007 : {
1008 6394125 : c = T[i];
1009 77524474 : for (j = 0; j < deg; j++) c += reduc[j][i] * T[deg+j];
1010 6394125 : c0[i] = c;
1011 : }
1012 : }
1013 :
1014 : /* c0 <- c0 + c1 * c2 */
1015 : static void
1016 5455425 : AddMulCoeff(int *c0, int *c1, int* c2, int** reduc, long deg)
1017 : {
1018 : long i, j;
1019 : pari_sp av;
1020 : int c, *t;
1021 :
1022 5455425 : if (IsZero(c2,deg)) return;
1023 1075025 : if (!c1) /* c1 == 1 */
1024 : {
1025 680477 : for (i = 0; i < deg; i++) c0[i] += c2[i];
1026 285138 : return;
1027 : }
1028 789887 : av = avma;
1029 789887 : t = (int*)new_chunk(2*deg); /* = c1 * c2, not reduced */
1030 5809769 : for (i = 0; i < 2*deg; i++)
1031 : {
1032 5019882 : c = 0;
1033 36510313 : for (j = 0; j <= i; j++)
1034 31490431 : if (j < deg && j > i - deg) c += c1[j] * c2[i-j];
1035 5019882 : t[i] = c;
1036 : }
1037 3299828 : for (i = 0; i < deg; i++)
1038 : {
1039 2509941 : c = t[i];
1040 17000186 : for (j = 0; j < deg; j++) c += reduc[j][i] * t[deg+j];
1041 2509941 : c0[i] += c;
1042 : }
1043 789887 : set_avma(av);
1044 : }
1045 :
1046 : /* evaluate the Coeff. No Garbage collector */
1047 : static GEN
1048 3764622 : EvalCoeff(GEN z, int* c, long deg)
1049 : {
1050 : long i,j;
1051 : GEN e, r;
1052 :
1053 3764622 : if (!c) return gen_0;
1054 : #if 0
1055 : /* standard Horner */
1056 : e = stoi(c[deg - 1]);
1057 : for (i = deg - 2; i >= 0; i--)
1058 : e = gadd(stoi(c[i]), gmul(z, e));
1059 : #else
1060 : /* specific attention to sparse polynomials */
1061 3764622 : e = NULL;
1062 5602253 : for (i = deg-1; i >=0; i=j-1)
1063 : {
1064 13383401 : for (j=i; c[j] == 0; j--)
1065 11545770 : if (j==0)
1066 : {
1067 3061217 : if (!e) return NULL;
1068 368411 : if (i!=j) z = gpowgs(z,i-j+1);
1069 368411 : return gmul(e,z);
1070 : }
1071 1837631 : if (e)
1072 : {
1073 765815 : r = (i==j)? z: gpowgs(z,i-j+1);
1074 765815 : e = gadd(gmul(e,r), stoi(c[j]));
1075 : }
1076 : else
1077 1071816 : e = stoi(c[j]);
1078 : }
1079 : #endif
1080 703405 : return e;
1081 : }
1082 :
1083 : /* a2 <- copy the n x m array */
1084 : static void
1085 310912 : CopyCoeff(int** a, int** a2, long n, long m)
1086 : {
1087 : long i,j;
1088 :
1089 4574071 : for (i = 1; i <= n; i++)
1090 : {
1091 4263159 : int *b = a[i], *b2 = a2[i];
1092 15526345 : for (j = 0; j < m; j++) b2[j] = b[j];
1093 : }
1094 310912 : }
1095 :
1096 : static void
1097 310912 : an_AddMul(int **an,int **an2, long np, long n, long deg, GEN chi, int **reduc)
1098 : {
1099 310912 : GEN chi2 = chi;
1100 : long q, qk, k;
1101 310912 : int *c, *c2 = (int*)new_chunk(deg);
1102 :
1103 310912 : CopyCoeff(an, an2, n/np, deg);
1104 310912 : for (q=np;;)
1105 : {
1106 344029 : if (gequal1(chi2)) c = NULL; else { Polmod2Coeff(c2, chi2, deg); c = c2; }
1107 5799454 : for(k = 1, qk = q; qk <= n; k++, qk += q)
1108 5455425 : AddMulCoeff(an[qk], c, an2[k], reduc, deg);
1109 344029 : if (! (q = umuluu_le(q,np, n)) ) break;
1110 :
1111 33117 : chi2 = gmul(chi2, chi);
1112 : }
1113 310912 : }
1114 :
1115 : /* correct the coefficients an(chi) according with diff(chi) in place */
1116 : static void
1117 2422 : CorrectCoeff(GEN dtcr, int** an, int** reduc, long n, long deg)
1118 : {
1119 2422 : pari_sp av = avma;
1120 : long lg, j;
1121 : pari_sp av1;
1122 : int **an2;
1123 : GEN bnrc, diff;
1124 : CHI_t C;
1125 :
1126 2422 : diff = ch_diff(dtcr); lg = lg(diff) - 1;
1127 2422 : if (!lg) return;
1128 :
1129 175 : if (DEBUGLEVEL>2) err_printf("diff(CHI) = %Ps", diff);
1130 175 : bnrc = ch_bnr(dtcr);
1131 175 : init_CHI_alg(&C, ch_CHI0(dtcr));
1132 :
1133 175 : an2 = InitMatAn(n, deg, 0);
1134 175 : av1 = avma;
1135 378 : for (j = 1; j <= lg; j++)
1136 : {
1137 203 : GEN pr = gel(diff,j);
1138 203 : long Np = upr_norm(pr);
1139 203 : GEN chi = CHI_eval(&C, isprincipalray(bnrc, pr));
1140 203 : an_AddMul(an,an2,Np,n,deg,chi,reduc);
1141 203 : set_avma(av1);
1142 : }
1143 175 : FreeMat(an2, n); set_avma(av);
1144 : }
1145 :
1146 : /* compute the coefficients an in the general case */
1147 : static int**
1148 1589 : ComputeCoeff(GEN dtcr, LISTray *R, long n, long deg)
1149 : {
1150 1589 : pari_sp av = avma, av2;
1151 : long i, l;
1152 : int **an, **reduc, **an2;
1153 : GEN L;
1154 : CHI_t C;
1155 :
1156 1589 : init_CHI_alg(&C, ch_CHI(dtcr));
1157 1589 : an = InitMatAn(n, deg, 0);
1158 1589 : an2 = InitMatAn(n, deg, 0);
1159 1589 : reduc = InitReduction(C.ord, deg);
1160 1589 : av2 = avma;
1161 :
1162 1589 : L = R->L1; l = lg(L);
1163 312298 : for (i=1; i<l; i++, set_avma(av2))
1164 : {
1165 310709 : long np = L[i];
1166 310709 : GEN chi = CHI_eval(&C, gel(R->L1ray,i));
1167 310709 : an_AddMul(an,an2,np,n,deg,chi,reduc);
1168 : }
1169 1589 : FreeMat(an2, n);
1170 :
1171 1589 : CorrectCoeff(dtcr, an, reduc, n, deg);
1172 1589 : FreeMat(reduc, deg-1);
1173 1589 : set_avma(av); return an;
1174 : }
1175 :
1176 : /********************************************************************/
1177 : /* 5th part: compute L-functions at s=1 */
1178 : /********************************************************************/
1179 : static void
1180 504 : deg11(LISTray *R, long p, GEN bnr, GEN pr) {
1181 504 : GEN z = isprincipalray(bnr, pr);
1182 504 : vecsmalltrunc_append(R->L1, p);
1183 504 : vectrunc_append(R->L1ray, z);
1184 504 : }
1185 : static void
1186 32142 : deg12(LISTray *R, long p, GEN bnr, GEN Lpr) {
1187 32142 : GEN z = isprincipalray(bnr, gel(Lpr,1));
1188 32142 : vecsmalltrunc_append(R->L11, p);
1189 32142 : vectrunc_append(R->L11ray, z);
1190 32142 : }
1191 : static void
1192 42 : deg0(LISTray *R, long p) { vecsmalltrunc_append(R->L0, p); }
1193 : static void
1194 34039 : deg2(LISTray *R, long p) { vecsmalltrunc_append(R->L2, p); }
1195 :
1196 : static void
1197 224 : InitPrimesQuad(GEN bnr, ulong N0, LISTray *R)
1198 : {
1199 224 : pari_sp av = avma;
1200 224 : GEN bnf = bnr_get_bnf(bnr), cond = gel(bnr_get_mod(bnr), 1);
1201 224 : long p,i,l, condZ = itos(gcoeff(cond,1,1)), contZ = itos(content(cond));
1202 224 : GEN prime, Lpr, nf = bnf_get_nf(bnf), dk = nf_get_disc(nf);
1203 : forprime_t T;
1204 :
1205 224 : l = 1 + primepi_upper_bound(N0);
1206 224 : R->L0 = vecsmalltrunc_init(l);
1207 224 : R->L2 = vecsmalltrunc_init(l); R->condZ = condZ;
1208 224 : R->L1 = vecsmalltrunc_init(l); R->L1ray = vectrunc_init(l);
1209 224 : R->L11= vecsmalltrunc_init(l); R->L11ray= vectrunc_init(l);
1210 224 : prime = utoipos(2);
1211 224 : u_forprime_init(&T, 2, N0);
1212 66951 : while ( (p = u_forprime_next(&T)) )
1213 : {
1214 66727 : prime[2] = p;
1215 66727 : switch (kroiu(dk, p))
1216 : {
1217 34060 : case -1: /* inert */
1218 34060 : if (condZ % p == 0) deg0(R,p); else deg2(R,p);
1219 34060 : break;
1220 32359 : case 1: /* split */
1221 32359 : Lpr = idealprimedec(nf, prime);
1222 32359 : if (condZ % p != 0) deg12(R, p, bnr, Lpr);
1223 217 : else if (contZ % p == 0) deg0(R,p);
1224 : else
1225 : {
1226 217 : GEN pr = idealval(nf, cond, gel(Lpr,1))? gel(Lpr,2): gel(Lpr,1);
1227 217 : deg11(R, p, bnr, pr);
1228 : }
1229 32359 : break;
1230 308 : default: /* ramified */
1231 308 : if (condZ % p == 0)
1232 21 : deg0(R,p);
1233 : else
1234 287 : deg11(R, p, bnr, idealprimedec_galois(nf,prime));
1235 308 : break;
1236 : }
1237 : }
1238 : /* precompute isprincipalray(x), x in Z */
1239 224 : R->rayZ = cgetg(condZ, t_VEC);
1240 3521 : for (i=1; i<condZ; i++)
1241 3297 : gel(R->rayZ,i) = (ugcd(i,condZ) == 1)? isprincipalray(bnr, utoipos(i)): gen_0;
1242 224 : gerepileall(av, 7, &(R->L0), &(R->L2), &(R->rayZ),
1243 : &(R->L1), &(R->L1ray), &(R->L11), &(R->L11ray) );
1244 224 : }
1245 :
1246 : static void
1247 511 : InitPrimes(GEN bnr, ulong N0, LISTray *R)
1248 : {
1249 511 : GEN bnf = bnr_get_bnf(bnr), cond = gel(bnr_get_mod(bnr), 1);
1250 511 : long p, l, condZ, N = lg(cond)-1;
1251 511 : GEN DL, prime, BOUND, nf = bnf_get_nf(bnf);
1252 : forprime_t T;
1253 :
1254 511 : R->condZ = condZ = itos(gcoeff(cond,1,1));
1255 511 : l = primepi_upper_bound(N0) * N;
1256 511 : DL = cgetg(N+1, t_VEC);
1257 511 : R->L1 = vecsmalltrunc_init(l);
1258 511 : R->L1ray = vectrunc_init(l);
1259 511 : u_forprime_init(&T, 2, N0);
1260 511 : prime = utoipos(2);
1261 511 : BOUND = utoi(N0);
1262 113946 : while ( (p = u_forprime_next(&T)) )
1263 : {
1264 113435 : pari_sp av = avma;
1265 : long j, k, lP;
1266 : GEN P;
1267 113435 : prime[2] = p;
1268 113435 : if (DEBUGLEVEL>1 && (p & 2047) == 1) err_printf("%ld ", p);
1269 113435 : P = idealprimedec_limit_norm(nf, prime, BOUND); lP = lg(P);
1270 226310 : for (j = 1; j < lP; j++)
1271 : {
1272 112875 : GEN pr = gel(P,j), dl = NULL;
1273 112875 : if (condZ % p || !idealval(nf, cond, pr))
1274 : {
1275 112406 : dl = gclone( isprincipalray(bnr, pr) );
1276 112406 : vecsmalltrunc_append(R->L1, upowuu(p, pr_get_f(pr)));
1277 : }
1278 112875 : gel(DL,j) = dl;
1279 : }
1280 113435 : set_avma(av);
1281 226310 : for (k = 1; k < j; k++)
1282 : {
1283 112875 : if (!DL[k]) continue;
1284 112406 : vectrunc_append(R->L1ray, ZC_copy(gel(DL,k)));
1285 112406 : gunclone(gel(DL,k));
1286 : }
1287 : }
1288 511 : }
1289 :
1290 : static GEN /* cf polcoef */
1291 406524 : _sercoeff(GEN x, long n)
1292 : {
1293 406524 : long i = n - valp(x);
1294 406524 : return (i < 0)? gen_0: gel(x,i+2);
1295 : }
1296 :
1297 : static void
1298 406524 : affect_coeff(GEN q, long n, GEN y, long t)
1299 : {
1300 406524 : GEN x = _sercoeff(q,-n);
1301 406524 : if (x == gen_0) gel(y,n) = NULL;
1302 206264 : else { affgr(x, gel(y,n)); shiftr_inplace(gel(y,n), t); }
1303 406524 : }
1304 : /* (x-i)(x-(i+1)) */
1305 : static GEN
1306 103854 : d2(long i) { return deg2pol_shallow(gen_1, utoineg(2*i+1), muluu(i,i+1), 0); }
1307 : /* x-i */
1308 : static GEN
1309 311618 : d1(long i) { return deg1pol_shallow(gen_1, stoi(-i), 0); }
1310 :
1311 : typedef struct {
1312 : GEN c1, aij, bij, cS, cT, powracpi;
1313 : long i0, a,b,c, r, rc1, rc2;
1314 : } ST_t;
1315 :
1316 : /* compute the principal part at the integers s = 0, -1, -2, ..., -i0
1317 : * of Gamma((s+1)/2)^a Gamma(s/2)^b Gamma(s)^c / (s - z) with z = 0 and 1 */
1318 : static void
1319 308 : ppgamma(ST_t *T, long prec)
1320 : {
1321 : GEN G, G1, G2, A, E, O, x, sqpi, aij, bij;
1322 308 : long c = T->c, r = T->r, i0 = T->i0, i, j, s, t, dx;
1323 : pari_sp av;
1324 :
1325 308 : T->aij = aij = cgetg(i0+1, t_VEC);
1326 308 : T->bij = bij = cgetg(i0+1, t_VEC);
1327 104162 : for (i = 1; i <= i0; i++)
1328 : {
1329 : GEN p1, p2;
1330 103854 : gel(aij,i) = p1 = cgetg(r+1, t_VEC);
1331 103854 : gel(bij,i) = p2 = cgetg(r+1, t_VEC);
1332 307116 : for (j=1; j<=r; j++) { gel(p1,j) = cgetr(prec); gel(p2,j) = cgetr(prec); }
1333 : }
1334 308 : av = avma; x = pol_x(0);
1335 308 : sqpi = sqrtr_abs(mppi(prec)); /* Gamma(1/2) */
1336 :
1337 308 : G1 = gexp(integser(psi1series(r-1, 0, prec)), prec); /* Gamma(1 + x) */
1338 308 : G = shallowcopy(G1); setvalp(G,-1); /* Gamma(x) */
1339 :
1340 : /* expansion of log(Gamma(u) / Gamma(1/2)) at u = 1/2 */
1341 308 : G2 = cgetg(r+2, t_SER);
1342 308 : G2[1] = evalsigne(1) | _evalvalp(1) | evalvarn(0);
1343 308 : gel(G2,2) = gneg(gadd(gmul2n(mplog2(prec), 1), mpeuler(prec)));
1344 644 : for (i = 1; i < r; i++) gel(G2,i+2) = mulri(gel(G1,i+2), int2um1(i));
1345 308 : G2 = gmul(sqpi, gexp(G2, prec)); /* Gamma(1/2 + x) */
1346 :
1347 : /* We simplify to get one of the following two expressions
1348 : * if (b > a) : sqrt(Pi)^a 2^{a-au} Gamma(u)^{a+c} Gamma( u/2 )^{|b-a|}
1349 : * if (b <= a): sqrt(Pi)^b 2^{b-bu} Gamma(u)^{b+c} Gamma((u+1)/2)^{|b-a|} */
1350 308 : if (T->b > T->a)
1351 : {
1352 56 : t = T->a; s = T->b; dx = 1;
1353 56 : E = ser_unscale(G, ghalf);
1354 56 : O = gmul2n(gdiv(ser_unscale(G2, ghalf), d1(1)), 1); /* Gamma((x-1)/2) */
1355 : }
1356 : else
1357 : {
1358 252 : t = T->b; s = T->a; dx = 0;
1359 252 : E = ser_unscale(G2, ghalf);
1360 252 : O = ser_unscale(G, ghalf);
1361 : }
1362 : /* (sqrt(Pi) 2^{1-x})^t Gamma(x)^{t+c} */
1363 308 : A = gmul(gmul(powru(gmul2n(sqpi,1), t), gpowgs(G, t+c)),
1364 : gpow(gen_2, RgX_to_ser(gmulgs(x,-t), r+2), prec));
1365 : /* A * Gamma((x - dx + 1)/2)^{s-t} */
1366 308 : E = gmul(A, gpowgs(E, s-t));
1367 : /* A * Gamma((x - dx)/2)^{s-t} */
1368 308 : O = gdiv(gmul(A, gpowgs(O, s-t)), gpowgs(gsubgs(x, 1), t+c));
1369 52235 : for (i = 0; i < i0/2; i++)
1370 : {
1371 51927 : GEN p1, q1, A1 = gel(aij,2*i+1), B1 = gel(bij,2*i+1);
1372 51927 : GEN p2, q2, A2 = gel(aij,2*i+2), B2 = gel(bij,2*i+2);
1373 51927 : long t1 = i * (s+t), t2 = t1 + t;
1374 :
1375 51927 : p1 = gdiv(E, d1(2*i));
1376 51927 : q1 = gdiv(E, d1(2*i+1));
1377 51927 : p2 = gdiv(O, d1(2*i+1));
1378 51927 : q2 = gdiv(O, d1(2*i+2));
1379 153558 : for (j = 1; j <= r; j++)
1380 : {
1381 101631 : affect_coeff(p1, j, A1, t1); affect_coeff(q1, j, B1, t1);
1382 101631 : affect_coeff(p2, j, A2, t2); affect_coeff(q2, j, B2, t2);
1383 : }
1384 51927 : E = gdiv(E, gmul(gpowgs(d1(2*i+1+dx), s-t), gpowgs(d2(2*i+1), t+c)));
1385 51927 : O = gdiv(O, gmul(gpowgs(d1(2*i+2+dx), s-t), gpowgs(d2(2*i+2), t+c)));
1386 : }
1387 308 : set_avma(av);
1388 308 : }
1389 :
1390 : /* chi != 1. Return L(1, chi) if fl & 1, else [r, c] where L(s, chi) ~ c s^r
1391 : * at s = 0. */
1392 : static GEN
1393 1393 : GetValue(GEN dtcr, GEN W, GEN S, GEN T, long fl, long prec)
1394 : {
1395 : GEN cf, z;
1396 : long q, b, c, r;
1397 1393 : int isreal = (ch_deg(dtcr) <= 2);
1398 :
1399 1393 : ch_get3(dtcr, &q, &b, &c);
1400 1393 : if (fl & 1)
1401 : { /* S(chi) + W(chi).T(chi)) / (C(chi) sqrt(Pi)^{r1 - q}) */
1402 196 : cf = gmul(ch_C(dtcr), powruhalf(mppi(prec), b));
1403 :
1404 196 : z = gadd(S, gmul(W, T));
1405 196 : if (isreal) z = real_i(z);
1406 196 : z = gdiv(z, cf);
1407 196 : if (fl & 2) z = gmul(z, AChi(dtcr, &r, 1, prec));
1408 : }
1409 : else
1410 : { /* (W(chi).S(conj(chi)) + T(chi)) / (sqrt(Pi)^q 2^{r1 - q}) */
1411 1197 : cf = gmul2n(powruhalf(mppi(prec), q), b);
1412 :
1413 1197 : z = gadd(gmul(W, conj_i(S)), conj_i(T));
1414 1197 : if (isreal) z = real_i(z);
1415 1197 : z = gdiv(z, cf); r = 0;
1416 1197 : if (fl & 2) z = gmul(z, AChi(dtcr, &r, 0, prec));
1417 1197 : z = mkvec2(utoi(b + c + r), z);
1418 : }
1419 1393 : return z;
1420 : }
1421 :
1422 : /* return the order and the first nonzero term of L(s, chi0)
1423 : at s = 0. If flag != 0, adjust the value to get L_S(s, chi0). */
1424 : static GEN
1425 35 : GetValue1(GEN bnr, long flag, long prec)
1426 : {
1427 35 : GEN bnf = bnr_get_bnf(bnr), nf = bnf_get_nf(bnf);
1428 35 : GEN h = bnf_get_no(bnf), R = bnf_get_reg(bnf);
1429 35 : GEN c = gdivgs(mpmul(h, R), -bnf_get_tuN(bnf));
1430 35 : long r = lg(nf_get_roots(nf)) - 2; /* r1 + r2 - 1 */;
1431 35 : if (flag)
1432 : {
1433 0 : GEN diff = divcond(bnr);
1434 : long i, l;
1435 0 : l = lg(diff) - 1; r += l;
1436 0 : for (i = 1; i <= l; i++) c = gmul(c, glog(pr_norm(gel(diff,i)), prec));
1437 : }
1438 35 : return mkvec2(utoi(r), c);
1439 : }
1440 :
1441 : /********************************************************************/
1442 : /* 6th part: recover the coefficients */
1443 : /********************************************************************/
1444 : static long
1445 2508 : TestOne(GEN plg, RC_data *d)
1446 : {
1447 2508 : long j, v = d->v;
1448 2508 : GEN z = gsub(d->beta, gel(plg,v));
1449 2508 : if (expo(z) >= d->G) return 0;
1450 6705 : for (j = 1; j < lg(plg); j++)
1451 4683 : if (j != v && mpcmp(d->B, mpabs_shallow(gel(plg,j))) < 0) return 0;
1452 2022 : return 1;
1453 : }
1454 :
1455 : static GEN
1456 461 : chk_reccoeff_init(FP_chk_fun *chk, GEN r, GEN mat)
1457 : {
1458 461 : RC_data *d = (RC_data*)chk->data;
1459 461 : (void)r; d->U = mat; return d->nB;
1460 : }
1461 :
1462 : static GEN
1463 425 : chk_reccoeff(void *data, GEN x)
1464 : {
1465 425 : RC_data *d = (RC_data*)data;
1466 425 : GEN v = gmul(d->U, x), z = gel(v,1);
1467 :
1468 425 : if (!gequal1(z)) return NULL;
1469 418 : *++v = evaltyp(t_COL) | evallg( lg(d->M) );
1470 418 : if (TestOne(gmul(d->M, v), d)) return v;
1471 0 : return NULL;
1472 : }
1473 :
1474 : /* Using Cohen's method */
1475 : static GEN
1476 461 : RecCoeff3(GEN nf, RC_data *d, long prec)
1477 : {
1478 : GEN A, M, nB, cand, p1, B2, C2, tB, beta2, nf2, Bd;
1479 461 : GEN beta = d->beta, B = d->B;
1480 461 : long N = d->N, v = d->v, e, BIG;
1481 461 : long i, j, k, ct = 0, prec2;
1482 461 : FP_chk_fun chk = { &chk_reccoeff, &chk_reccoeff_init, NULL, NULL, 0 };
1483 461 : chk.data = (void*)d;
1484 :
1485 461 : d->G = minss(-10, -prec2nbits(prec) >> 4);
1486 461 : BIG = maxss(32, -2*d->G);
1487 461 : tB = sqrtnr(real2n(BIG-N,DEFAULTPREC), N-1);
1488 461 : Bd = grndtoi(gmin_shallow(B, tB), &e);
1489 461 : if (e > 0) return NULL; /* failure */
1490 461 : Bd = addiu(Bd, 1);
1491 461 : prec2 = nbits2prec( expi(Bd) + 192 );
1492 461 : prec2 = maxss(precdbl(prec), prec2);
1493 461 : B2 = sqri(Bd);
1494 461 : C2 = shifti(B2, BIG<<1);
1495 :
1496 461 : LABrcf: ct++;
1497 461 : beta2 = gprec_w(beta, prec2);
1498 461 : nf2 = nfnewprec_shallow(nf, prec2);
1499 461 : d->M = M = nf_get_M(nf2);
1500 :
1501 461 : A = cgetg(N+2, t_MAT);
1502 1935 : for (i = 1; i <= N+1; i++) gel(A,i) = cgetg(N+2, t_COL);
1503 :
1504 461 : gcoeff(A, 1, 1) = gadd(gmul(C2, gsqr(beta2)), B2);
1505 1474 : for (j = 2; j <= N+1; j++)
1506 : {
1507 1013 : p1 = gmul(C2, gmul(gneg_i(beta2), gcoeff(M, v, j-1)));
1508 1013 : gcoeff(A, 1, j) = gcoeff(A, j, 1) = p1;
1509 : }
1510 1474 : for (i = 2; i <= N+1; i++)
1511 2669 : for (j = i; j <= N+1; j++)
1512 : {
1513 1656 : p1 = gen_0;
1514 5514 : for (k = 1; k <= N; k++)
1515 : {
1516 3858 : GEN p2 = gmul(gcoeff(M, k, j-1), gcoeff(M, k, i-1));
1517 3858 : if (k == v) p2 = gmul(C2, p2);
1518 3858 : p1 = gadd(p1,p2);
1519 : }
1520 1656 : gcoeff(A, i, j) = gcoeff(A, j, i) = p1;
1521 : }
1522 :
1523 461 : nB = mului(N+1, B2);
1524 461 : d->nB = nB;
1525 461 : cand = fincke_pohst(A, nB, -1, prec2, &chk);
1526 :
1527 461 : if (!cand)
1528 : {
1529 0 : if (ct > 3) return NULL;
1530 0 : prec2 = precdbl(prec2);
1531 0 : if (DEBUGLEVEL>1) pari_warn(warnprec,"RecCoeff", prec2);
1532 0 : goto LABrcf;
1533 : }
1534 :
1535 461 : cand = gel(cand,1);
1536 461 : if (lg(cand) == 2) return gel(cand,1);
1537 :
1538 252 : if (DEBUGLEVEL>1) err_printf("RecCoeff3: no solution found!\n");
1539 252 : return NULL;
1540 : }
1541 :
1542 : /* Using linear dependence relations */
1543 : static GEN
1544 2065 : RecCoeff2(GEN nf, RC_data *d, long prec)
1545 : {
1546 : pari_sp av;
1547 2065 : GEN vec, M = nf_get_M(nf), beta = d->beta;
1548 2065 : long bit, min, max, lM = lg(M);
1549 :
1550 2065 : d->G = minss(-20, -prec2nbits(prec) >> 4);
1551 :
1552 2065 : vec = vec_prepend(row(M, d->v), gneg(beta));
1553 2065 : min = (long)prec2nbits_mul(prec, 0.75);
1554 2065 : max = (long)prec2nbits_mul(prec, 0.98);
1555 2065 : av = avma;
1556 2631 : for (bit = max; bit >= min; bit-=32, set_avma(av))
1557 : {
1558 : long e;
1559 2170 : GEN v = lindep_bit(vec, bit), z = gel(v,1);
1560 2170 : if (!signe(z)) continue;
1561 2090 : *++v = evaltyp(t_COL) | evallg(lM);
1562 2090 : v = grndtoi(gdiv(v, z), &e);
1563 2090 : if (e > 0) break;
1564 2090 : if (TestOne(RgM_RgC_mul(M, v), d)) return v;
1565 : }
1566 : /* failure */
1567 461 : return RecCoeff3(nf,d,prec);
1568 : }
1569 :
1570 : /* Attempts to find a polynomial with coefficients in nf such that
1571 : its coefficients are close to those of pol at the place v and
1572 : less than B at all the other places */
1573 : static GEN
1574 595 : RecCoeff(GEN nf, GEN pol, long v, long prec)
1575 : {
1576 595 : long j, md, cl = degpol(pol);
1577 595 : pari_sp av = avma;
1578 : RC_data d;
1579 :
1580 : /* if precision(pol) is too low, abort */
1581 3955 : for (j = 2; j <= cl+1; j++)
1582 : {
1583 3381 : GEN t = gel(pol, j);
1584 3381 : if (prec2nbits(precision(t)) - gexpo(t) < 34) return NULL;
1585 : }
1586 :
1587 574 : md = cl/2;
1588 574 : pol = leafcopy(pol);
1589 :
1590 574 : d.N = nf_get_degree(nf);
1591 574 : d.v = v;
1592 :
1593 2387 : for (j = 1; j <= cl; j++)
1594 : { /* start with the coefficients in the middle,
1595 : since they are the harder to recognize! */
1596 2065 : long cf = md + (j%2? j/2: -j/2);
1597 2065 : GEN t, bound = shifti(binomial(utoipos(cl), cf), cl-cf);
1598 :
1599 2065 : if (DEBUGLEVEL>1) err_printf("RecCoeff (cf = %ld, B = %Ps)\n", cf, bound);
1600 2065 : d.beta = real_i( gel(pol,cf+2) );
1601 2065 : d.B = bound;
1602 2065 : if (! (t = RecCoeff2(nf, &d, prec)) ) return NULL;
1603 1813 : gel(pol, cf+2) = coltoalg(nf,t);
1604 : }
1605 322 : gel(pol,cl+2) = gen_1;
1606 322 : return gerepilecopy(av, pol);
1607 : }
1608 :
1609 : /* an[q * i] *= chi for all (i,p)=1 */
1610 : static void
1611 149140 : an_mul(int **an, long p, long q, long n, long deg, GEN chi, int **reduc)
1612 : {
1613 : pari_sp av;
1614 : long c,i;
1615 : int *T;
1616 :
1617 149140 : if (gequal1(chi)) return;
1618 138646 : av = avma;
1619 138646 : T = (int*)new_chunk(deg); Polmod2Coeff(T,chi, deg);
1620 3009848 : for (c = 1, i = q; i <= n; i += q, c++)
1621 2871202 : if (c == p) c = 0; else MulCoeff(an[i], T, reduc, deg);
1622 138646 : set_avma(av);
1623 : }
1624 : /* an[q * i] = 0 for all (i,p)=1 */
1625 : static void
1626 133310 : an_set0_coprime(int **an, long p, long q, long n, long deg)
1627 : {
1628 : long c,i;
1629 1679399 : for (c = 1, i = q; i <= n; i += q, c++)
1630 1546089 : if (c == p) c = 0; else _0toCoeff(an[i], deg);
1631 133310 : }
1632 : /* an[q * i] = 0 for all i */
1633 : static void
1634 140 : an_set0(int **an, long p, long n, long deg)
1635 : {
1636 : long i;
1637 64663 : for (i = p; i <= n; i += p) _0toCoeff(an[i], deg);
1638 140 : }
1639 :
1640 : /* compute the coefficients an for the quadratic case */
1641 : static int**
1642 833 : computean(GEN dtcr, LISTray *R, long n, long deg)
1643 : {
1644 833 : pari_sp av = avma, av2;
1645 : long i, p, q, condZ, l;
1646 : int **an, **reduc;
1647 : GEN L, chi, chi1;
1648 : CHI_t C;
1649 :
1650 833 : init_CHI_alg(&C, ch_CHI(dtcr));
1651 833 : condZ= R->condZ;
1652 :
1653 833 : an = InitMatAn(n, deg, 1);
1654 833 : reduc = InitReduction(C.ord, deg);
1655 833 : av2 = avma;
1656 :
1657 : /* all pr | p divide cond */
1658 833 : L = R->L0; l = lg(L);
1659 973 : for (i=1; i<l; i++) an_set0(an,L[i],n,deg);
1660 :
1661 : /* 1 prime of degree 2 */
1662 833 : L = R->L2; l = lg(L);
1663 132494 : for (i=1; i<l; i++, set_avma(av2))
1664 : {
1665 131661 : p = L[i];
1666 131661 : if (condZ == 1) chi = C.val[0]; /* 1 */
1667 131507 : else chi = CHI_eval(&C, gel(R->rayZ, p%condZ));
1668 131661 : chi1 = chi;
1669 131661 : for (q=p;;)
1670 : {
1671 133310 : an_set0_coprime(an, p,q,n,deg); /* v_p(q) odd */
1672 133310 : if (! (q = umuluu_le(q,p, n)) ) break;
1673 :
1674 5560 : an_mul(an,p,q,n,deg,chi,reduc);
1675 5560 : if (! (q = umuluu_le(q,p, n)) ) break;
1676 1649 : chi = gmul(chi, chi1);
1677 : }
1678 : }
1679 :
1680 : /* 1 prime of degree 1 */
1681 833 : L = R->L1; l = lg(L);
1682 2856 : for (i=1; i<l; i++, set_avma(av2))
1683 : {
1684 2023 : p = L[i];
1685 2023 : chi = CHI_eval(&C, gel(R->L1ray,i));
1686 2023 : chi1 = chi;
1687 2023 : for(q=p;;)
1688 : {
1689 9168 : an_mul(an,p,q,n,deg,chi,reduc);
1690 9168 : if (! (q = umuluu_le(q,p, n)) ) break;
1691 7145 : chi = gmul(chi, chi1);
1692 : }
1693 : }
1694 :
1695 : /* 2 primes of degree 1 */
1696 833 : L = R->L11; l = lg(L);
1697 126472 : for (i=1; i<l; i++, set_avma(av2))
1698 : {
1699 : GEN ray1, ray2, chi11, chi12, chi2;
1700 :
1701 125639 : p = L[i]; ray1 = gel(R->L11ray,i); /* use pr1 pr2 = (p) */
1702 125639 : if (condZ == 1)
1703 112 : ray2 = ZC_neg(ray1);
1704 : else
1705 125527 : ray2 = ZC_sub(gel(R->rayZ, p%condZ), ray1);
1706 125639 : chi11 = CHI_eval(&C, ray1);
1707 125639 : chi12 = CHI_eval(&C, ray2);
1708 :
1709 125639 : chi1 = gadd(chi11, chi12);
1710 125639 : chi2 = chi12;
1711 125639 : for(q=p;;)
1712 : {
1713 134412 : an_mul(an,p,q,n,deg,chi1,reduc);
1714 134412 : if (! (q = umuluu_le(q,p, n)) ) break;
1715 8773 : chi2 = gmul(chi2, chi12);
1716 8773 : chi1 = gadd(chi2, gmul(chi1, chi11));
1717 : }
1718 : }
1719 :
1720 833 : CorrectCoeff(dtcr, an, reduc, n, deg);
1721 833 : FreeMat(reduc, deg-1);
1722 833 : set_avma(av); return an;
1723 : }
1724 :
1725 : /* return the vector of A^i/i for i = 1...n */
1726 : static GEN
1727 259 : mpvecpowdiv(GEN A, long n)
1728 : {
1729 259 : pari_sp av = avma;
1730 : long i;
1731 259 : GEN v = powersr(A, n);
1732 259 : GEN w = cgetg(n+1, t_VEC);
1733 259 : gel(w,1) = rcopy(gel(v,2));
1734 485716 : for (i=2; i<=n; i++) gel(w,i) = divru(gel(v,i+1), i);
1735 259 : return gerepileupto(av, w);
1736 : }
1737 :
1738 : static void GetST0(GEN bnr, GEN *pS, GEN *pT, GEN CR, long prec);
1739 : /* allocate memory for GetST answer */
1740 : static void
1741 448 : ST_alloc(GEN *pS, GEN *pT, long l, long prec)
1742 : {
1743 : long j;
1744 448 : *pS = cgetg(l, t_VEC);
1745 448 : *pT = cgetg(l, t_VEC);
1746 2051 : for (j = 1; j < l; j++)
1747 : {
1748 1603 : gel(*pS,j) = cgetc(prec);
1749 1603 : gel(*pT,j) = cgetc(prec);
1750 : }
1751 448 : }
1752 :
1753 : /* compute S and T for the quadratic case. The following cases are:
1754 : * 1) bnr complex;
1755 : * 2) bnr real and no infinite place divide cond_chi (TODO);
1756 : * 3) bnr real and one infinite place divide cond_chi;
1757 : * 4) bnr real and both infinite places divide cond_chi (TODO) */
1758 : static void
1759 259 : QuadGetST(GEN bnr, GEN *pS, GEN *pT, GEN CR, long prec)
1760 : {
1761 : pari_sp av, av1, av2;
1762 : long ncond, n, j, k, n0;
1763 259 : GEN vChar = gel(CR,1), dataCR = gel(CR,2), S, T, an, cs, N0, C;
1764 : LISTray LIST;
1765 :
1766 : /* initializations */
1767 259 : ST_alloc(pS, pT, lg(dataCR), prec); T = *pT; S = *pS;
1768 259 : av = avma;
1769 259 : ncond = lg(vChar)-1;
1770 259 : C = cgetg(ncond+1, t_VEC);
1771 259 : N0 = cgetg(ncond+1, t_VECSMALL);
1772 259 : cs = cgetg(ncond+1, t_VECSMALL);
1773 259 : n0 = 0;
1774 518 : for (j = 1; j <= ncond; j++)
1775 : {
1776 294 : GEN dtcr = gel(dataCR, mael(vChar,j,1)), c = ch_C(dtcr);
1777 : long r1, r2;
1778 :
1779 294 : gel(C,j) = c;
1780 294 : nf_get_sign(bnr_get_nf(ch_bnr(dtcr)), &r1, &r2);
1781 294 : if (r1 == 2) /* real quadratic */
1782 : {
1783 280 : cs[j] = 2 + ch_q(dtcr);
1784 280 : if (cs[j] == 2 || cs[j] == 4)
1785 : { /* NOT IMPLEMENTED YET */
1786 35 : GetST0(bnr, pS, pT, CR, prec);
1787 35 : return;
1788 : }
1789 : /* FIXME: is this value of N0 correct for the general case ? */
1790 245 : N0[j] = (long)prec2nbits_mul(prec, 0.35 * gtodouble(c));
1791 : }
1792 : else /* complex quadratic */
1793 : {
1794 14 : cs[j] = 1;
1795 14 : N0[j] = (long)prec2nbits_mul(prec, 0.7 * gtodouble(c));
1796 : }
1797 259 : if (n0 < N0[j]) n0 = N0[j];
1798 : }
1799 224 : if (DEBUGLEVEL>1) err_printf("N0 = %ld\n", n0);
1800 224 : InitPrimesQuad(bnr, n0, &LIST);
1801 :
1802 224 : av1 = avma;
1803 : /* loop over conductors */
1804 483 : for (j = 1; j <= ncond; j++)
1805 : {
1806 259 : GEN c0 = gel(C,j), c1 = divur(1, c0), c2 = divur(2, c0);
1807 259 : GEN ec1 = mpexp(c1), ec2 = mpexp(c2), LChar = gel(vChar,j);
1808 : GEN vf0, vf1, cf0, cf1;
1809 259 : const long nChar = lg(LChar)-1, NN = N0[j];
1810 :
1811 259 : if (DEBUGLEVEL>1)
1812 0 : err_printf("* conductor no %ld/%ld (N = %ld)\n\tInit: ", j,ncond,NN);
1813 259 : if (realprec(ec1) > prec) ec1 = rtor(ec1, prec);
1814 259 : if (realprec(ec2) > prec) ec2 = rtor(ec2, prec);
1815 259 : switch(cs[j])
1816 : {
1817 14 : case 1:
1818 14 : cf0 = gen_1;
1819 14 : cf1 = c0;
1820 14 : vf0 = mpveceint1(rtor(c1, prec), ec1, NN);
1821 14 : vf1 = mpvecpowdiv(invr(ec1), NN); break;
1822 :
1823 245 : case 3:
1824 245 : cf0 = sqrtr(mppi(prec));
1825 245 : cf1 = gmul2n(cf0, 1);
1826 245 : cf0 = gmul(cf0, c0);
1827 245 : vf0 = mpvecpowdiv(invr(ec2), NN);
1828 245 : vf1 = mpveceint1(rtor(c2, prec), ec2, NN); break;
1829 :
1830 0 : default:
1831 0 : cf0 = cf1 = NULL; /* FIXME: not implemented */
1832 0 : vf0 = vf1 = NULL;
1833 : }
1834 1099 : for (k = 1; k <= nChar; k++)
1835 : {
1836 840 : long u = LChar[k], d, c;
1837 840 : GEN dtcr = gel(dataCR, u), z, s, t;
1838 : int **matan;
1839 :
1840 840 : if (!ch_comp(dtcr)) continue;
1841 833 : if (DEBUGLEVEL>1) err_printf("\tchar no: %ld (%ld/%ld)\n", u,k,nChar);
1842 833 : d = ch_phideg(dtcr);
1843 833 : z = gel(ch_CHI(dtcr), 2); s = t = gen_0; av2 = avma;
1844 833 : matan = computean(gel(dataCR,u), &LIST, NN, d);
1845 1722878 : for (n = 1, c = 0; n <= NN; n++)
1846 1722045 : if ((an = EvalCoeff(z, matan[n], d)))
1847 : {
1848 455032 : s = gadd(s, gmul(an, gel(vf0,n)));
1849 455032 : t = gadd(t, gmul(an, gel(vf1,n)));
1850 455032 : if (++c == 256) { gerepileall(av2,2, &s,&t); c = 0; }
1851 : }
1852 833 : gaffect(gmul(cf0, s), gel(S,u));
1853 833 : gaffect(gmul(cf1, conj_i(t)), gel(T,u));
1854 833 : FreeMat(matan,NN); set_avma(av2);
1855 : }
1856 259 : if (DEBUGLEVEL>1) err_printf("\n");
1857 259 : set_avma(av1);
1858 : }
1859 224 : set_avma(av);
1860 : }
1861 :
1862 : /* s += t*u. All 3 of them t_REAL, except we allow s or u = NULL (for 0) */
1863 : static GEN
1864 49039438 : _addmulrr(GEN s, GEN t, GEN u)
1865 : {
1866 49039438 : if (u)
1867 : {
1868 48778009 : GEN v = mulrr(t, u);
1869 48778009 : return s? addrr(s, v): v;
1870 : }
1871 261429 : return s;
1872 : }
1873 : /* s += t. Both real, except we allow s or t = NULL (for exact 0) */
1874 : static GEN
1875 99843892 : _addrr(GEN s, GEN t)
1876 99843892 : { return t? (s? addrr(s, t): t) : s; }
1877 :
1878 : /* S & T for the general case. This is time-critical: optimize */
1879 : static void
1880 500087 : get_cS_cT(ST_t *T, long n)
1881 : {
1882 : pari_sp av;
1883 : GEN csurn, nsurc, lncsurn, A, B, s, t, Z, aij, bij;
1884 : long i, j, r, i0;
1885 :
1886 500087 : if (gel(T->cS,n)) return;
1887 :
1888 237664 : av = avma;
1889 237664 : aij = T->aij; i0= T->i0;
1890 237664 : bij = T->bij; r = T->r;
1891 237664 : Z = cgetg(r+1, t_VEC);
1892 237664 : gel(Z,1) = NULL; /* unused */
1893 :
1894 237664 : csurn = divru(T->c1, n);
1895 237664 : nsurc = invr(csurn);
1896 237664 : lncsurn = logr_abs(csurn);
1897 :
1898 237664 : if (r > 1)
1899 : {
1900 237489 : gel(Z,2) = lncsurn; /* r >= 2 */
1901 241584 : for (i = 3; i <= r; i++)
1902 4095 : gel(Z,i) = divru(mulrr(gel(Z,i-1), lncsurn), i-1);
1903 : /* Z[i] = ln^(i-1)(c1/n) / (i-1)! */
1904 : }
1905 :
1906 : /* i = i0 */
1907 237664 : A = gel(aij,i0); t = _addrr(NULL, gel(A,1));
1908 237664 : B = gel(bij,i0); s = _addrr(NULL, gel(B,1));
1909 479248 : for (j = 2; j <= r; j++)
1910 : {
1911 241584 : s = _addmulrr(s, gel(Z,j),gel(B,j));
1912 241584 : t = _addmulrr(t, gel(Z,j),gel(A,j));
1913 : }
1914 49565450 : for (i = i0 - 1; i > 1; i--)
1915 : {
1916 49327786 : A = gel(aij,i); if (t) t = mulrr(t, nsurc);
1917 49327786 : B = gel(bij,i); if (s) s = mulrr(s, nsurc);
1918 73364337 : for (j = odd(i)? T->rc2: T->rc1; j > 1; j--)
1919 : {
1920 24036551 : s = _addmulrr(s, gel(Z,j),gel(B,j));
1921 24036551 : t = _addmulrr(t, gel(Z,j),gel(A,j));
1922 : }
1923 49327786 : s = _addrr(s, gel(B,1));
1924 49327786 : t = _addrr(t, gel(A,1));
1925 : }
1926 : /* i = 1 */
1927 237664 : A = gel(aij,1); if (t) t = mulrr(t, nsurc);
1928 237664 : B = gel(bij,1); if (s) s = mulrr(s, nsurc);
1929 237664 : s = _addrr(s, gel(B,1));
1930 237664 : t = _addrr(t, gel(A,1));
1931 479248 : for (j = 2; j <= r; j++)
1932 : {
1933 241584 : s = _addmulrr(s, gel(Z,j),gel(B,j));
1934 241584 : t = _addmulrr(t, gel(Z,j),gel(A,j));
1935 : }
1936 237664 : s = _addrr(s, T->b? mulrr(csurn, gel(T->powracpi,T->b+1)): csurn);
1937 237664 : if (!s) s = gen_0;
1938 237664 : if (!t) t = gen_0;
1939 237664 : gel(T->cS,n) = gclone(s);
1940 237664 : gel(T->cT,n) = gclone(t); set_avma(av);
1941 : }
1942 :
1943 : static void
1944 497 : clear_cScT(ST_t *T, long N)
1945 : {
1946 497 : GEN cS = T->cS, cT = T->cT;
1947 : long i;
1948 1464166 : for (i=1; i<=N; i++)
1949 1463669 : if (cS[i]) {
1950 237664 : gunclone(gel(cS,i));
1951 237664 : gunclone(gel(cT,i)); gel(cS,i) = gel(cT,i) = NULL;
1952 : }
1953 497 : }
1954 :
1955 : static void
1956 308 : init_cScT(ST_t *T, GEN dtcr, long N, long prec)
1957 : {
1958 308 : ch_get3(dtcr, &T->a, &T->b, &T->c);
1959 308 : T->rc1 = T->a + T->c;
1960 308 : T->rc2 = T->b + T->c;
1961 308 : T->r = maxss(T->rc2+1, T->rc1); /* >= 2 */
1962 308 : ppgamma(T, prec);
1963 308 : clear_cScT(T, N);
1964 308 : }
1965 :
1966 : /* return a t_REAL */
1967 : static GEN
1968 511 : zeta_get_limx(long r1, long r2, long bit)
1969 : {
1970 511 : pari_sp av = avma;
1971 : GEN p1, p2, c0, c1, A0;
1972 511 : long r = r1 + r2, N = r + r2;
1973 :
1974 : /* c1 = N 2^(-2r2 / N) */
1975 511 : c1 = mulrs(powrfrac(real2n(1, DEFAULTPREC), -2*r2, N), N);
1976 :
1977 511 : p1 = powru(Pi2n(1, DEFAULTPREC), r - 1);
1978 511 : p2 = mulir(powuu(N,r), p1); shiftr_inplace(p2, -r2);
1979 511 : c0 = sqrtr( divrr(p2, powru(c1, r+1)) );
1980 :
1981 511 : A0 = logr_abs( gmul2n(c0, bit) ); p2 = divrr(A0, c1);
1982 511 : p1 = divrr(mulur(N*(r+1), logr_abs(p2)), addsr(2*(r+1), gmul2n(A0,2)));
1983 511 : return gerepileuptoleaf(av, divrr(addrs(p1, 1), powruhalf(p2, N)));
1984 : }
1985 : /* N_0 = floor( C_K / limx ). Large */
1986 : static long
1987 630 : zeta_get_N0(GEN C, GEN limx)
1988 : {
1989 : long e;
1990 630 : pari_sp av = avma;
1991 630 : GEN z = gcvtoi(gdiv(C, limx), &e); /* avoid truncation error */
1992 630 : if (e >= 0 || is_bigint(z))
1993 0 : pari_err_OVERFLOW("zeta_get_N0 [need too many primes]");
1994 630 : return gc_long(av, itos(z));
1995 : }
1996 :
1997 : static GEN
1998 1897 : eval_i(long r1, long r2, GEN limx, long i)
1999 : {
2000 1897 : GEN t = powru(limx, i);
2001 1897 : if (!r1) t = mulrr(t, powru(mpfactr(i , DEFAULTPREC), r2));
2002 1897 : else if (!r2) t = mulrr(t, powru(mpfactr(i/2, DEFAULTPREC), r1));
2003 : else {
2004 0 : GEN u1 = mpfactr(i/2, DEFAULTPREC);
2005 0 : GEN u2 = mpfactr(i, DEFAULTPREC);
2006 0 : if (r1 == r2) t = mulrr(t, powru(mulrr(u1,u2), r1));
2007 0 : else t = mulrr(t, mulrr(powru(u1,r1), powru(u2,r2)));
2008 : }
2009 1897 : return t;
2010 : }
2011 :
2012 : /* "small" even i such that limx^i ( (i\2)! )^r1 ( i! )^r2 > B. */
2013 : static long
2014 189 : get_i0(long r1, long r2, GEN B, GEN limx)
2015 : {
2016 189 : long imin = 1, imax = 1400;
2017 196 : while (mpcmp(eval_i(r1,r2,limx, imax), B) < 0) { imin = imax; imax *= 2; }
2018 1890 : while(imax - imin >= 4)
2019 : {
2020 1701 : long m = (imax + imin) >> 1;
2021 1701 : if (mpcmp(eval_i(r1,r2,limx, m), B) >= 0) imax = m; else imin = m;
2022 : }
2023 189 : return imax & ~1; /* make it even */
2024 : }
2025 : /* limx = zeta_get_limx(r1, r2, bit), a t_REAL */
2026 : static long
2027 189 : zeta_get_i0(long r1, long r2, long bit, GEN limx)
2028 : {
2029 189 : pari_sp av = avma;
2030 189 : GEN B = gmul(sqrtr( divrr(powrs(mppi(DEFAULTPREC), r2-3), limx) ),
2031 : gmul2n(powuu(5, r1), bit + r2));
2032 189 : return gc_long(av, get_i0(r1, r2, B, limx));
2033 : }
2034 :
2035 : static void
2036 189 : GetST0(GEN bnr, GEN *pS, GEN *pT, GEN CR, long prec)
2037 : {
2038 : pari_sp av, av1, av2;
2039 : long n, j, k, jc, n0, prec2, i0, r1, r2, ncond;
2040 189 : GEN nf = bnr_get_nf(bnr);
2041 189 : GEN vChar = gel(CR,1), dataCR = gel(CR,2), N0, C, an, limx, S, T;
2042 : LISTray LIST;
2043 : ST_t cScT;
2044 :
2045 189 : ST_alloc(pS, pT, lg(dataCR), prec); T = *pT; S = *pS;
2046 189 : av = avma;
2047 189 : nf_get_sign(nf,&r1,&r2);
2048 189 : ncond = lg(vChar)-1;
2049 189 : C = cgetg(ncond+1, t_VEC);
2050 189 : N0 = cgetg(ncond+1, t_VECSMALL);
2051 189 : n0 = 0;
2052 189 : limx = zeta_get_limx(r1, r2, prec2nbits(prec));
2053 497 : for (j = 1; j <= ncond; j++)
2054 : {
2055 308 : GEN dtcr = gel(dataCR, mael(vChar,j,1)), c = ch_C(dtcr);
2056 308 : gel(C,j) = c;
2057 308 : N0[j] = zeta_get_N0(c, limx);
2058 308 : if (n0 < N0[j]) n0 = N0[j];
2059 : }
2060 189 : cScT.i0 = i0 = zeta_get_i0(r1, r2, prec2nbits(prec), limx);
2061 189 : if (DEBUGLEVEL>1) err_printf("i0 = %ld, N0 = %ld\n",i0, n0);
2062 189 : InitPrimes(bnr, n0, &LIST);
2063 189 : prec2 = precdbl(prec) + EXTRAPREC64;
2064 189 : cScT.powracpi = powersr(sqrtr(mppi(prec2)), r1);
2065 189 : cScT.cS = cgetg(n0+1, t_VEC);
2066 189 : cScT.cT = cgetg(n0+1, t_VEC);
2067 707013 : for (j=1; j<=n0; j++) gel(cScT.cS,j) = gel(cScT.cT,j) = NULL;
2068 :
2069 189 : av1 = avma;
2070 497 : for (jc = 1; jc <= ncond; jc++)
2071 : {
2072 308 : GEN LChar = gel(vChar,jc);
2073 308 : long nChar = lg(LChar)-1, N = N0[jc];
2074 :
2075 : /* Can discard completely a conductor if all chars satisfy L(0,chi) = 0
2076 : * Not sure whether this is possible. */
2077 308 : if (DEBUGLEVEL>1)
2078 0 : err_printf("* conductor no %ld/%ld (N = %ld)\n\tInit: ", jc,ncond,N);
2079 :
2080 308 : cScT.c1 = gel(C,jc);
2081 308 : init_cScT(&cScT, gel(dataCR, LChar[1]), N, prec2);
2082 308 : av2 = avma;
2083 875 : for (k = 1; k <= nChar; k++)
2084 : {
2085 567 : long d, c, u = LChar[k];
2086 567 : GEN dtcr = gel(dataCR, u), z, s, t;
2087 : int **matan;
2088 :
2089 567 : if (!ch_comp(dtcr)) continue;
2090 560 : if (DEBUGLEVEL>1) err_printf("\tchar no: %ld (%ld/%ld)\n", u,k,nChar);
2091 560 : z = gel(ch_CHI(dtcr), 2);
2092 560 : d = ch_phideg(dtcr); s = t = gen_0;
2093 560 : matan = ComputeCoeff(dtcr, &LIST, N, d);
2094 1741087 : for (n = 1, c = 0; n <= N; n++)
2095 1740527 : if ((an = EvalCoeff(z, matan[n], d)))
2096 : {
2097 500087 : get_cS_cT(&cScT, n);
2098 500087 : s = gadd(s, gmul(an, gel(cScT.cS,n)));
2099 500087 : t = gadd(t, gmul(an, gel(cScT.cT,n)));
2100 500087 : if (++c == 256) { gerepileall(av2,2, &s,&t); c = 0; }
2101 : }
2102 560 : gaffect(s, gel(S,u));
2103 560 : gaffect(conj_i(t), gel(T,u));
2104 560 : FreeMat(matan, N); set_avma(av2);
2105 : }
2106 308 : if (DEBUGLEVEL>1) err_printf("\n");
2107 308 : set_avma(av1);
2108 : }
2109 189 : clear_cScT(&cScT, n0);
2110 189 : set_avma(av);
2111 189 : }
2112 :
2113 : static void
2114 413 : GetST(GEN bnr, GEN *pS, GEN *pT, GEN CR, long prec)
2115 : {
2116 413 : if (nf_get_degree(bnr_get_nf(bnr)) == 2)
2117 259 : QuadGetST(bnr, pS, pT, CR, prec);
2118 : else
2119 154 : GetST0(bnr, pS, pT, CR, prec);
2120 413 : }
2121 :
2122 : /*******************************************************************/
2123 : /* */
2124 : /* Class fields of real quadratic fields using Stark units */
2125 : /* */
2126 : /*******************************************************************/
2127 : /* compute the Hilbert class field using genus class field theory when
2128 : the exponent of the class group is exactly 2 (trivial group not covered) */
2129 : /* Cf Herz, Construction of class fields, LNM 21, Theorem 1 (VII-6) */
2130 : static GEN
2131 14 : GenusFieldQuadReal(GEN disc)
2132 : {
2133 14 : long i, i0 = 0, l;
2134 14 : pari_sp av = avma;
2135 14 : GEN T = NULL, p0 = NULL, P;
2136 :
2137 14 : P = gel(Z_factor(disc), 1);
2138 14 : l = lg(P);
2139 42 : for (i = 1; i < l; i++)
2140 : {
2141 35 : GEN p = gel(P,i);
2142 35 : if (mod4(p) == 3) { p0 = p; i0 = i; break; }
2143 : }
2144 14 : l--; /* remove last prime */
2145 14 : if (i0 == l) l--; /* ... remove p0 and last prime */
2146 49 : for (i = 1; i < l; i++)
2147 : {
2148 35 : GEN p = gel(P,i), d, t;
2149 35 : if (i == i0) continue;
2150 28 : if (absequaliu(p, 2))
2151 14 : switch (mod32(disc))
2152 : {
2153 14 : case 8: d = gen_2; break;
2154 0 : case 24: d = shifti(p0, 1); break;
2155 0 : default: d = p0; break;
2156 : }
2157 : else
2158 14 : d = (mod4(p) == 1)? p: mulii(p0, p);
2159 28 : t = mkpoln(3, gen_1, gen_0, negi(d)); /* x^2 - d */
2160 28 : T = T? ZX_compositum_disjoint(T, t): t;
2161 : }
2162 14 : return gerepileupto(av, polredbest(T, 0));
2163 : }
2164 : static GEN
2165 406 : GenusFieldQuadImag(GEN disc)
2166 : {
2167 : long i, l;
2168 406 : pari_sp av = avma;
2169 406 : GEN T = NULL, P;
2170 :
2171 406 : P = gel(absZ_factor(disc), 1);
2172 406 : l = lg(P);
2173 406 : l--; /* remove last prime */
2174 1183 : for (i = 1; i < l; i++)
2175 : {
2176 777 : GEN p = gel(P,i), d, t;
2177 777 : if (absequaliu(p, 2))
2178 231 : switch (mod32(disc))
2179 : {
2180 56 : case 24: d = gen_2; break; /* disc = 8 mod 32 */
2181 42 : case 8: d = gen_m2; break; /* disc =-8 mod 32 */
2182 133 : default: d = gen_m1; break;
2183 : }
2184 : else
2185 546 : d = (mod4(p) == 1)? p: negi(p);
2186 777 : t = mkpoln(3, gen_1, gen_0, negi(d)); /* x^2 - d */
2187 777 : T = T? ZX_compositum_disjoint(T, t): t;
2188 : }
2189 406 : return gerepileupto(av, polredbest(T, 0));
2190 : }
2191 :
2192 : /* if flag != 0, computes a fast and crude approximation of the result */
2193 : static GEN
2194 644 : AllStark(GEN data, long flag, long newprec)
2195 : {
2196 644 : const long BND = 300;
2197 644 : long cl, i, j, cpt = 0, N, h, v, n, r1, r2, den;
2198 : pari_sp av, av2;
2199 : int **matan;
2200 644 : GEN bnr = gel(data,1), nf = bnr_get_nf(bnr), p1, p2, S, T;
2201 644 : GEN CR = gel(data,4), dataCR = gel(CR,2);
2202 : GEN polrelnum, polrel, Lp, W, vzeta, C, cond1, L1, an;
2203 : LISTray LIST;
2204 : pari_timer ti;
2205 :
2206 644 : nf_get_sign(nf, &r1,&r2);
2207 644 : N = nf_get_degree(nf);
2208 644 : cond1 = gel(bnr_get_mod(bnr), 2);
2209 :
2210 644 : v = 1;
2211 1344 : while (gequal1(gel(cond1,v))) v++;
2212 644 : cl = lg(dataCR)-1;
2213 644 : h = itos(ZM_det_triangular(gel(data,2))) >> 1;
2214 :
2215 672 : LABDOUB:
2216 672 : if (DEBUGLEVEL) timer_start(&ti);
2217 672 : av = avma;
2218 672 : W = AllArtinNumbers(CR, newprec);
2219 672 : if (DEBUGLEVEL) timer_printf(&ti,"Compute W");
2220 672 : Lp = cgetg(cl + 1, t_VEC);
2221 672 : if (!flag)
2222 : {
2223 350 : GetST(bnr, &S, &T, CR, newprec);
2224 350 : if (DEBUGLEVEL) timer_printf(&ti, "S&T");
2225 1519 : for (i = 1; i <= cl; i++)
2226 : {
2227 1169 : GEN chi = gel(dataCR, i), v = gen_0;
2228 1169 : if (ch_comp(chi))
2229 1155 : v = gel(GetValue(chi, gel(W,i), gel(S,i), gel(T,i), 2, newprec), 2);
2230 1169 : gel(Lp, i) = v;
2231 : }
2232 : }
2233 : else
2234 : { /* compute a crude approximation of the result */
2235 322 : C = cgetg(cl + 1, t_VEC);
2236 1351 : for (i = 1; i <= cl; i++) gel(C,i) = ch_C(gel(dataCR, i));
2237 322 : n = zeta_get_N0(vecmax(C), zeta_get_limx(r1, r2, prec2nbits(newprec)));
2238 322 : if (n > BND) n = BND;
2239 322 : if (DEBUGLEVEL) err_printf("N0 in QuickPol: %ld \n", n);
2240 322 : InitPrimes(bnr, n, &LIST);
2241 :
2242 322 : L1 = cgetg(cl+1, t_VEC);
2243 : /* use L(1) = sum (an / n) */
2244 1351 : for (i = 1; i <= cl; i++)
2245 : {
2246 1029 : GEN dtcr = gel(dataCR,i);
2247 1029 : long d = ch_phideg(dtcr);
2248 1029 : matan = ComputeCoeff(dtcr, &LIST, n, d);
2249 1029 : av2 = avma;
2250 1029 : p1 = real_0(newprec); p2 = gel(ch_CHI(dtcr), 2);
2251 303079 : for (j = 1; j <= n; j++)
2252 302050 : if ( (an = EvalCoeff(p2, matan[j], d)) )
2253 116697 : p1 = gadd(p1, gdivgu(an, j));
2254 1029 : gel(L1,i) = gerepileupto(av2, p1);
2255 1029 : FreeMat(matan, n);
2256 : }
2257 322 : p1 = gmul2n(powruhalf(mppi(newprec), N-2), 1);
2258 :
2259 1351 : for (i = 1; i <= cl; i++)
2260 : {
2261 : long r;
2262 1029 : GEN WW, A = AChi(gel(dataCR,i), &r, 0, newprec);
2263 1029 : WW = gmul(gel(C,i), gmul(A, gel(W,i)));
2264 1029 : gel(Lp,i) = gdiv(gmul(WW, conj_i(gel(L1,i))), p1);
2265 : }
2266 : }
2267 :
2268 672 : p1 = gel(data,3);
2269 672 : den = flag ? h: 2*h;
2270 672 : vzeta = cgetg(h + 1, t_VEC);
2271 4333 : for (i = 1; i <= h; i++)
2272 : {
2273 3661 : GEN z = gen_0, sig = gel(p1,i);
2274 18837 : for (j = 1; j <= cl; j++)
2275 : {
2276 15176 : GEN dtcr = gel(dataCR,j), CHI = ch_CHI(dtcr);
2277 15176 : GEN t = mulreal(gel(Lp,j), CharEval(CHI, sig));
2278 15176 : if (chi_get_deg(CHI) != 2) t = gmul2n(t, 1); /* character not real */
2279 15176 : z = gadd(z, t);
2280 : }
2281 3661 : gel(vzeta,i) = gmul2n(gcosh(gdivgu(z,den), newprec), 1);
2282 : }
2283 672 : polrelnum = roots_to_pol(vzeta, 0);
2284 672 : if (DEBUGLEVEL)
2285 : {
2286 0 : if (DEBUGLEVEL>1) {
2287 0 : err_printf("polrelnum = %Ps\n", polrelnum);
2288 0 : err_printf("zetavalues = %Ps\n", vzeta);
2289 0 : if (!flag)
2290 0 : err_printf("Checking the square-root of the Stark unit...\n");
2291 : }
2292 0 : timer_printf(&ti, "Compute %s", flag? "quickpol": "polrelnum");
2293 : }
2294 672 : if (flag) return gerepilecopy(av, polrelnum);
2295 :
2296 : /* try to recognize this polynomial */
2297 350 : polrel = RecCoeff(nf, polrelnum, v, newprec);
2298 350 : if (!polrel)
2299 : {
2300 1785 : for (j = 1; j <= h; j++)
2301 1540 : gel(vzeta,j) = gsubgs(gsqr(gel(vzeta,j)), 2);
2302 245 : polrelnum = roots_to_pol(vzeta, 0);
2303 245 : if (DEBUGLEVEL)
2304 : {
2305 0 : if (DEBUGLEVEL>1) {
2306 0 : err_printf("It's not a square...\n");
2307 0 : err_printf("polrelnum = %Ps\n", polrelnum);
2308 : }
2309 0 : timer_printf(&ti, "Compute polrelnum");
2310 : }
2311 245 : polrel = RecCoeff(nf, polrelnum, v, newprec);
2312 : }
2313 350 : if (!polrel) /* FAILED */
2314 : {
2315 28 : const long EXTRA_BITS = 64;
2316 : long incr_pr;
2317 28 : if (++cpt >= 3) pari_err_PREC( "stark (computation impossible)");
2318 : /* estimate needed precision */
2319 28 : incr_pr = prec2nbits(gprecision(polrelnum))- gexpo(polrelnum);
2320 28 : if (incr_pr < 0) incr_pr = -incr_pr + EXTRA_BITS;
2321 28 : newprec += nbits2extraprec(maxss(3*EXTRA_BITS, cpt*incr_pr));
2322 28 : if (DEBUGLEVEL) pari_warn(warnprec, "AllStark", newprec);
2323 28 : CharNewPrec(data, newprec);
2324 28 : nf = bnr_get_nf(ch_bnr(gel(dataCR,1)));
2325 28 : goto LABDOUB;
2326 : }
2327 :
2328 322 : if (DEBUGLEVEL) {
2329 0 : if (DEBUGLEVEL>1) err_printf("polrel = %Ps\n", polrel);
2330 0 : timer_printf(&ti, "Recpolnum");
2331 : }
2332 322 : return gerepilecopy(av, polrel);
2333 : }
2334 :
2335 : /********************************************************************/
2336 : /* Main functions */
2337 : /********************************************************************/
2338 : static GEN
2339 0 : bnrstark_cyclic(GEN bnr, GEN dtQ, long prec)
2340 : {
2341 0 : GEN v, vH, cyc = gel(dtQ,2), U = gel(dtQ,3), M = ZM_inv(U, NULL);
2342 0 : long i, j, l = lg(M);
2343 :
2344 : /* M = indep. generators of Cl_f/subgp, restrict to cyclic components */
2345 0 : vH = cgetg(l, t_VEC);
2346 0 : for (i = j = 1; i < l; i++)
2347 : {
2348 0 : if (is_pm1(gel(cyc,i))) break;
2349 0 : gel(vH, j++) = ZM_hnfmodid(vecsplice(M,i), cyc);
2350 : }
2351 0 : setlg(vH, j); v = cgetg(l, t_VEC);
2352 0 : for (i = 1; i < j; i++) gel(v,i) = bnrstark(bnr, gel(vH,i), prec);
2353 0 : return v;
2354 : }
2355 : GEN
2356 203 : bnrstark(GEN bnr, GEN subgrp, long prec)
2357 : {
2358 : long newprec;
2359 203 : pari_sp av = avma;
2360 : GEN nf, data, dtQ;
2361 :
2362 : /* check the bnr */
2363 203 : checkbnr(bnr); nf = bnr_get_nf(bnr);
2364 203 : if (nf_get_degree(nf) == 1) return galoissubcyclo(bnr, subgrp, 0, 0);
2365 203 : if (!nf_get_varn(nf))
2366 0 : pari_err_PRIORITY("bnrstark", nf_get_pol(nf), "=", 0);
2367 203 : if (nf_get_r2(nf)) pari_err_DOMAIN("bnrstark", "r2", "!=", gen_0, nf);
2368 :
2369 : /* compute bnr(conductor) */
2370 196 : bnr_subgroup_sanitize(&bnr, &subgrp);
2371 196 : if (gequal1(ZM_det_triangular(subgrp))) { set_avma(av); return pol_x(0); }
2372 :
2373 : /* check the class field */
2374 196 : if (!gequal0(gel(bnr_get_mod(bnr), 2)))
2375 7 : pari_err_DOMAIN("bnrstark", "r2(class field)", "!=", gen_0, bnr);
2376 :
2377 : /* find a suitable extension N */
2378 189 : dtQ = InitQuotient(subgrp);
2379 189 : data = FindModulus(bnr, dtQ, &newprec);
2380 189 : if (!data) return gerepileupto(av, bnrstark_cyclic(bnr, dtQ, prec));
2381 189 : if (DEBUGLEVEL>1 && newprec > prec)
2382 0 : err_printf("new precision: %ld\n", newprec);
2383 189 : return gerepileupto(av, AllStark(data, 0, newprec));
2384 : }
2385 :
2386 : /* For each character of Cl(bnr)/subgp, compute L(1, chi) (or equivalently
2387 : * the first nonzero term c(chi) of the expansion at s = 0).
2388 : * If flag & 1: compute the value at s = 1 (for nontrivial characters),
2389 : * else compute the term c(chi) and return [r(chi), c(chi)] where r(chi) is
2390 : * the order of L(s, chi) at s = 0.
2391 : * If flag & 2: compute the value of the L-function L_S(s, chi) where S is the
2392 : * set of places dividing the modulus of bnr (and the infinite places),
2393 : * else
2394 : * compute the value of the primitive L-function attached to chi,
2395 : * If flag & 4: return also the character */
2396 : GEN
2397 70 : bnrL1(GEN bnr, GEN subgp, long flag, long prec)
2398 : {
2399 : GEN L1, ch, Qt, z;
2400 : long l, h;
2401 70 : pari_sp av = avma;
2402 :
2403 70 : checkbnr(bnr);
2404 70 : if (flag < 0 || flag > 8) pari_err_FLAG("bnrL1");
2405 :
2406 70 : subgp = bnr_subgroup_check(bnr, subgp, NULL);
2407 70 : if (!subgp) subgp = diagonal_shallow(bnr_get_cyc(bnr));
2408 :
2409 70 : Qt = InitQuotient(subgp);
2410 70 : ch = AllChars(bnr, Qt, 0); l = lg(ch);
2411 70 : h = itou(gel(Qt,1));
2412 70 : L1 = cgetg((flag&1)? h: h+1, t_VEC);
2413 70 : if (l > 1)
2414 : {
2415 63 : GEN W, S, T, CR = InitChar(bnr, ch, 1, prec), dataCR = gel(CR,2);
2416 : long i, j;
2417 :
2418 63 : GetST(bnr, &S, &T, CR, prec);
2419 63 : W = AllArtinNumbers(CR, prec);
2420 301 : for (i = j = 1; i < l; i++)
2421 : {
2422 238 : GEN chi = gel(ch,i);
2423 238 : z = GetValue(gel(dataCR,i), gel(W,i), gel(S,i), gel(T,i), flag, prec);
2424 238 : gel(L1,j++) = (flag & 4)? mkvec2(gel(chi,1), z): z;
2425 238 : if (lg(chi) == 4)
2426 : { /* nonreal */
2427 133 : z = conj_i(z);
2428 133 : gel(L1, j++) = (flag & 4)? mkvec2(gel(chi,3), z): z;
2429 : }
2430 : }
2431 : }
2432 70 : if (!(flag & 1))
2433 : { /* trivial character */
2434 35 : z = GetValue1(bnr, flag & 2, prec);
2435 35 : if (flag & 4)
2436 : {
2437 0 : GEN chi = zerovec(lg(bnr_get_cyc(bnr))-1);
2438 0 : z = mkvec2(chi, z);
2439 : }
2440 35 : gel(L1,h) = z;
2441 : }
2442 70 : return gerepilecopy(av, L1);
2443 : }
2444 :
2445 : /*******************************************************************/
2446 : /* */
2447 : /* Hilbert and Ray Class field using Stark */
2448 : /* */
2449 : /*******************************************************************/
2450 : /* P in A[x,y], deg_y P < 2, return P0 and P1 in A[x] such that P = P0 + P1 y */
2451 : static void
2452 133 : split_pol_quad(GEN P, GEN *gP0, GEN *gP1)
2453 : {
2454 133 : long i, l = lg(P);
2455 133 : GEN P0 = cgetg(l, t_POL), P1 = cgetg(l, t_POL);
2456 133 : P0[1] = P1[1] = P[1];
2457 1211 : for (i = 2; i < l; i++)
2458 : {
2459 1078 : GEN c = gel(P,i), c0 = c, c1 = gen_0;
2460 1078 : if (typ(c) == t_POL) /* write c = c1 y + c0 */
2461 945 : switch(degpol(c))
2462 : {
2463 0 : case -1: c0 = gen_0; break;
2464 945 : default: c1 = gel(c,3); /* fall through */
2465 945 : case 0: c0 = gel(c,2); break;
2466 : }
2467 1078 : gel(P0,i) = c0; gel(P1,i) = c1;
2468 : }
2469 133 : *gP0 = normalizepol_lg(P0, l);
2470 133 : *gP1 = normalizepol_lg(P1, l);
2471 133 : }
2472 :
2473 : /* k = nf quadratic field, P relative equation of H_k (Hilbert class field)
2474 : * return T in Z[X], such that H_k / Q is the compositum of Q[X]/(T) and k */
2475 : static GEN
2476 133 : makescind(GEN nf, GEN P)
2477 : {
2478 133 : GEN Pp, p, pol, G, L, a, roo, P0,P1, Ny,Try, nfpol = nf_get_pol(nf);
2479 : long i, is_P;
2480 :
2481 133 : P = lift_shallow(P);
2482 133 : split_pol_quad(P, &P0, &P1);
2483 : /* P = P0 + y P1, Norm_{k/Q}(P) = P0^2 + Tr y P0P1 + Ny P1^2, irreducible/Q */
2484 133 : Ny = gel(nfpol, 2);
2485 133 : Try = negi(gel(nfpol, 3));
2486 133 : pol = RgX_add(RgX_sqr(P0), RgX_Rg_mul(RgX_sqr(P1), Ny));
2487 133 : if (signe(Try)) pol = RgX_add(pol, RgX_Rg_mul(RgX_mul(P0,P1), Try));
2488 : /* pol = rnfequation(nf, P); */
2489 133 : G = galoisinit(pol, NULL);
2490 133 : L = gal_get_group(G);
2491 133 : p = gal_get_p(G);
2492 133 : a = FpX_oneroot(nfpol, p);
2493 : /* P mod a prime \wp above p (which splits) */
2494 133 : Pp = FpXY_evalx(P, a, p);
2495 133 : roo = gal_get_roots(G);
2496 133 : is_P = gequal0( FpX_eval(Pp, remii(gel(roo,1),p), p) );
2497 : /* each roo[i] mod p is a root of P or (exclusive) tau(P) mod \wp */
2498 : /* record whether roo[1] is a root of P or tau(P) */
2499 :
2500 1022 : for (i = 1; i < lg(L); i++)
2501 : {
2502 1022 : GEN perm = gel(L,i);
2503 1022 : long k = perm[1]; if (k == 1) continue;
2504 889 : k = gequal0( FpX_eval(Pp, remii(gel(roo,k),p), p) );
2505 : /* roo[k] is a root of the other polynomial */
2506 889 : if (k != is_P)
2507 : {
2508 133 : ulong o = perm_orderu(perm);
2509 133 : if (o != 2) perm = perm_powu(perm, o >> 1);
2510 : /* perm has order two and doesn't belong to Gal(H_k/k) */
2511 133 : return polredbest(galoisfixedfield(G, perm, 1, varn(P)), 0);
2512 : }
2513 : }
2514 0 : pari_err_BUG("makescind");
2515 : return NULL; /*LCOV_EXCL_LINE*/
2516 : }
2517 :
2518 : /* pbnf = NULL if no bnf is needed, f = NULL may be passed for a trivial
2519 : * conductor */
2520 : static void
2521 847 : quadray_init(GEN *pD, GEN *pbnf, long prec)
2522 : {
2523 847 : GEN D = *pD, nf, bnf = NULL;
2524 847 : if (typ(D) == t_INT)
2525 : {
2526 : int isfund;
2527 812 : if (pbnf) {
2528 252 : bnf = Buchall(quadpoly0(D, 1), nf_FORCE, prec);
2529 252 : nf = bnf_get_nf(bnf);
2530 252 : isfund = equalii(D, nf_get_disc(nf));
2531 : }
2532 : else
2533 560 : isfund = Z_isfundamental(D);
2534 812 : if (!isfund) pari_err_DOMAIN("quadray", "isfundamental(D)", "=",gen_0, D);
2535 : }
2536 : else
2537 : {
2538 35 : bnf = checkbnf(D);
2539 35 : nf = bnf_get_nf(bnf);
2540 35 : if (nf_get_degree(nf) != 2)
2541 7 : pari_err_DOMAIN("quadray", "degree", "!=", gen_2, nf_get_pol(nf));
2542 28 : D = nf_get_disc(nf);
2543 : }
2544 833 : if (pbnf) *pbnf = bnf;
2545 833 : *pD = D;
2546 833 : }
2547 :
2548 : /* compute the polynomial over Q of the Hilbert class field of
2549 : Q(sqrt(D)) where D is a positive fundamental discriminant */
2550 : static GEN
2551 147 : quadhilbertreal(GEN D, long prec)
2552 : {
2553 : GEN bnf, bnr, dtQ, data, M;
2554 : long newprec;
2555 : pari_timer T;
2556 :
2557 147 : quadray_init(&D, &bnf, prec);
2558 147 : switch(itou_or_0(cyc_get_expo(bnf_get_cyc(bnf))))
2559 : {
2560 0 : case 1: return pol_x(0);
2561 14 : case 2: return GenusFieldQuadReal(D);
2562 : }
2563 133 : bnr = Buchray(bnf, gen_1, nf_INIT);
2564 133 : M = diagonal_shallow(bnr_get_cyc(bnr));
2565 133 : dtQ = InitQuotient(M);
2566 :
2567 133 : if (DEBUGLEVEL) timer_start(&T);
2568 133 : data = FindModulus(bnr, dtQ, &newprec);
2569 133 : if (DEBUGLEVEL) timer_printf(&T,"FindModulus");
2570 133 : if (!data) return bnrstark_cyclic(bnr, dtQ, prec);
2571 133 : return makescind(bnf_get_nf(bnf), AllStark(data, 0, newprec));
2572 : }
2573 :
2574 : /*******************************************************************/
2575 : /* */
2576 : /* Hilbert and Ray Class field using CM (Schertz) */
2577 : /* */
2578 : /*******************************************************************/
2579 : /* form^2 = 1 ? */
2580 : static int
2581 812 : hasexp2(GEN form)
2582 : {
2583 812 : GEN a = gel(form,1), b = gel(form,2), c = gel(form,3);
2584 812 : return !signe(b) || absequalii(a,b) || equalii(a,c);
2585 : }
2586 : static int
2587 1323 : uhasexp2(GEN form)
2588 : {
2589 1323 : long a = form[1], b = form[2], c = form[3];
2590 1323 : return !b || a == labs(b) || a == c;
2591 : }
2592 :
2593 : GEN
2594 455 : qfbforms(GEN D)
2595 : {
2596 455 : ulong d = itou(D), dover3 = d/3, t, b2, a, b, c, h;
2597 455 : GEN L = cgetg((long)(sqrt((double)d) * log2(d)), t_VEC);
2598 455 : b2 = b = (d&1); h = 0;
2599 455 : if (!b) /* b = 0 treated separately to avoid special cases */
2600 : {
2601 252 : t = d >> 2; /* (b^2 - D) / 4*/
2602 2954 : for (a=1; a*a<=t; a++)
2603 2702 : if (c = t/a, t == c*a) gel(L,++h) = mkvecsmall3(a,0,c);
2604 252 : b = 2; b2 = 4;
2605 : }
2606 : /* now b > 0, b = D (mod 2) */
2607 8078 : for ( ; b2 <= dover3; b += 2, b2 = b*b)
2608 : {
2609 7623 : t = (b2 + d) >> 2; /* (b^2 - D) / 4*/
2610 : /* b = a */
2611 7623 : if (c = t/b, t == c*b) gel(L,++h) = mkvecsmall3(b,b,c);
2612 : /* b < a < c */
2613 1912029 : for (a = b+1; a*a < t; a++)
2614 1904406 : if (c = t/a, t == c*a)
2615 : {
2616 1057 : gel(L,++h) = mkvecsmall3(a, b,c);
2617 1057 : gel(L,++h) = mkvecsmall3(a,-b,c);
2618 : }
2619 : /* a = c */
2620 7623 : if (a * a == t) gel(L,++h) = mkvecsmall3(a,b,a);
2621 : }
2622 455 : setlg(L,h+1); return L;
2623 : }
2624 :
2625 : /* gcd(n, 24) */
2626 : static long
2627 812 : GCD24(long n)
2628 : {
2629 812 : switch(n % 24)
2630 : {
2631 35 : case 0: return 24;
2632 35 : case 1: return 1;
2633 28 : case 2: return 2;
2634 0 : case 3: return 3;
2635 119 : case 4: return 4;
2636 0 : case 5: return 1;
2637 105 : case 6: return 6;
2638 0 : case 7: return 1;
2639 0 : case 8: return 8;
2640 0 : case 9: return 3;
2641 91 : case 10: return 2;
2642 0 : case 11: return 1;
2643 119 : case 12: return 12;
2644 0 : case 13: return 1;
2645 0 : case 14: return 2;
2646 0 : case 15: return 3;
2647 91 : case 16: return 8;
2648 0 : case 17: return 1;
2649 91 : case 18: return 6;
2650 0 : case 19: return 1;
2651 0 : case 20: return 4;
2652 0 : case 21: return 3;
2653 98 : case 22: return 2;
2654 0 : case 23: return 1;
2655 0 : default: return 0;
2656 : }
2657 : }
2658 :
2659 : struct gpq_data {
2660 : long p, q;
2661 : GEN sqd; /* sqrt(D), t_REAL */
2662 : GEN u, D;
2663 : GEN pq, pq2; /* p*q, 2*p*q */
2664 : GEN qfpq ; /* class of \P * \Q */
2665 : };
2666 :
2667 : /* find P and Q two non principal prime ideals (above p <= q) such that
2668 : * cl(P) = cl(Q) if P,Q have order 2 in Cl(K).
2669 : * Ensure that e = 24 / gcd(24, (p-1)(q-1)) = 1 */
2670 : /* D t_INT, discriminant */
2671 : static void
2672 49 : init_pq(GEN D, struct gpq_data *T)
2673 : {
2674 49 : const long Np = 6547; /* N.B. primepi(50000) = 5133 */
2675 49 : const ulong maxq = 50000;
2676 49 : GEN listp = cgetg(Np + 1, t_VECSMALL); /* primes p */
2677 49 : GEN listP = cgetg(Np + 1, t_VEC); /* primeform(p) if of order 2, else NULL */
2678 49 : GEN gcd24 = cgetg(Np + 1, t_VECSMALL); /* gcd(p-1, 24) */
2679 : forprime_t S;
2680 49 : long l = 1;
2681 49 : double best = 0.;
2682 : ulong q;
2683 :
2684 49 : u_forprime_init(&S, 2, ULONG_MAX);
2685 49 : T->D = D;
2686 49 : T->p = T->q = 0;
2687 : for(;;)
2688 1771 : {
2689 : GEN Q;
2690 : long i, gcdq, mod;
2691 : int order2, store;
2692 : double t;
2693 :
2694 1820 : q = u_forprime_next(&S);
2695 1820 : if (best > 0 && q >= maxq)
2696 : {
2697 0 : if (DEBUGLEVEL)
2698 0 : pari_warn(warner,"possibly suboptimal (p,q) for D = %Ps", D);
2699 0 : break;
2700 : }
2701 1820 : if (kroiu(D, q) < 0) continue; /* inert */
2702 889 : Q = qfbred_i(primeform_u(D, q));
2703 889 : if (is_pm1(gel(Q,1))) continue; /* Q | q is principal */
2704 :
2705 812 : store = 1;
2706 812 : order2 = hasexp2(Q);
2707 812 : gcd24[l] = gcdq = GCD24(q-1);
2708 812 : mod = 24 / gcdq; /* mod must divide p-1 otherwise e > 1 */
2709 812 : listp[l] = q;
2710 812 : gel(listP,l) = order2 ? Q : NULL;
2711 812 : t = (q+1)/(double)(q-1);
2712 2128 : for (i = 1; i < l; i++) /* try all (p, q), p < q in listp */
2713 : {
2714 1659 : long p = listp[i], gcdp = gcd24[i];
2715 : double b;
2716 : /* P,Q order 2 => cl(Q) = cl(P) */
2717 1659 : if (order2 && gel(listP,i) && !gequal(gel(listP,i), Q)) continue;
2718 1652 : if (gcdp % gcdq == 0) store = 0; /* already a better one in the list */
2719 1652 : if ((p-1) % mod) continue;
2720 :
2721 343 : b = (t*(p+1)) / (p-1); /* (p+1)(q+1) / (p-1)(q-1) */
2722 343 : if (b > best) {
2723 98 : store = 0; /* (p,q) always better than (q,r) for r >= q */
2724 98 : best = b; T->q = q; T->p = p;
2725 98 : if (DEBUGLEVEL>2) err_printf("p,q = %ld,%ld\n", p, q);
2726 : }
2727 : /* won't improve with this q as largest member */
2728 343 : if (best > 0) break;
2729 : }
2730 : /* if !store or (q,r) won't improve on current best pair, forget that q */
2731 812 : if (store && t*t > best)
2732 119 : if (++l >= Np) pari_err_BUG("quadhilbert (not enough primes)");
2733 812 : if (!best) /* (p,q) with p < q always better than (q,q) */
2734 : { /* try (q,q) */
2735 140 : if (gcdq >= 12 && umodiu(D, q)) /* e = 1 and unramified */
2736 : {
2737 7 : double b = (t*q) / (q-1); /* q(q+1) / (q-1)^2 */
2738 7 : if (b > best) {
2739 7 : best = b; T->q = T->p = q;
2740 7 : if (DEBUGLEVEL>2) err_printf("p,q = %ld,%ld\n", q, q);
2741 : }
2742 : }
2743 : }
2744 : /* If (p1+1)(q+1) / (p1-1)(q-1) <= best, we can no longer improve
2745 : * even with best p : stop */
2746 812 : if ((listp[1]+1)*t <= (listp[1]-1)*best) break;
2747 : }
2748 49 : if (DEBUGLEVEL>1)
2749 0 : err_printf("(p, q) = %ld, %ld; gain = %f\n", T->p, T->q, 12*best);
2750 49 : }
2751 :
2752 : static GEN
2753 4102 : gpq(GEN form, struct gpq_data *T)
2754 : {
2755 4102 : pari_sp av = avma;
2756 4102 : long a = form[1], b = form[2], c = form[3], p = T->p, q = T->q;
2757 : GEN form2, w, z;
2758 4102 : int fl, real = 0;
2759 :
2760 4102 : form2 = qfbcomp_i(T->qfpq, mkqfb(stoi(a), stoi(-b), stoi(c), T->D));
2761 : /* form2 and form yield complex conjugate roots : only compute for the
2762 : * lexicographically smallest of the 2 */
2763 4102 : fl = cmpis(gel(form2,1), a);
2764 4102 : if (fl <= 0)
2765 : {
2766 2156 : if (fl < 0) return NULL;
2767 210 : fl = cmpis(gel(form2,2), b);
2768 210 : if (fl <= 0)
2769 : {
2770 147 : if (fl < 0) return NULL;
2771 : /* form == form2 : real root */
2772 84 : real = 1;
2773 : }
2774 : }
2775 :
2776 2093 : if (p == 2) { /* (a,b,c) = (1,1,0) mod 2 ? */
2777 203 : if (a % q == 0 && (a & b & 1) && !(c & 1))
2778 : { /* apply S : make sure that (a,b,c) represents odd values */
2779 0 : lswap(a,c); b = -b;
2780 : }
2781 : }
2782 2093 : if (a % p == 0 || a % q == 0)
2783 : { /* apply T^k, look for c' = a k^2 + b k + c coprime to N */
2784 595 : while (c % p == 0 || c % q == 0)
2785 : {
2786 98 : c += a + b;
2787 98 : b += a << 1;
2788 : }
2789 497 : lswap(a, c); b = -b; /* apply S */
2790 : }
2791 : /* now (a,b,c) ~ form and (a,pq) = 1 */
2792 :
2793 : /* gcd(2a, u) = 2, w = u mod 2pq, -b mod 2a */
2794 2093 : w = Z_chinese(T->u, stoi(-b), T->pq2, utoipos(a << 1));
2795 2093 : z = double_eta_quotient(utoipos(a), w, T->D, T->p, T->q, T->pq, T->sqd);
2796 2093 : if (real && typ(z) == t_COMPLEX) z = gcopy(gel(z, 1));
2797 2093 : return gerepileupto(av, z);
2798 : }
2799 :
2800 : /* returns an equation for the Hilbert class field of Q(sqrt(D)), D < 0
2801 : * fundamental discriminant */
2802 : static GEN
2803 462 : quadhilbertimag(GEN D)
2804 : {
2805 : GEN L, P, Pi, Pr, qfp, u;
2806 : long h, i, prec;
2807 : struct gpq_data T;
2808 : pari_timer ti;
2809 :
2810 462 : if (DEBUGLEVEL>1) timer_start(&ti);
2811 462 : if (lgefint(D) == 3)
2812 462 : switch (D[2]) { /* = |D|; special cases where e > 1 */
2813 7 : case 3:
2814 : case 4:
2815 : case 7:
2816 : case 8:
2817 : case 11:
2818 : case 19:
2819 : case 43:
2820 : case 67:
2821 7 : case 163: return pol_x(0);
2822 : }
2823 455 : L = qfbforms(D);
2824 455 : h = lg(L)-1;
2825 455 : if ((1L << vals(h)) == h) /* power of 2 */
2826 : { /* check whether > |Cl|/2 elements have order <= 2 ==> 2-elementary */
2827 413 : long lim = (h>>1) + 1;
2828 1729 : for (i=1; i <= lim; i++)
2829 1323 : if (!uhasexp2(gel(L,i))) break;
2830 413 : if (i > lim) return GenusFieldQuadImag(D);
2831 : }
2832 49 : if (DEBUGLEVEL>1) timer_printf(&ti,"class number = %ld",h);
2833 49 : init_pq(D, &T);
2834 49 : qfp = primeform_u(D, T.p);
2835 49 : T.pq = muluu(T.p, T.q);
2836 49 : T.pq2 = shifti(T.pq,1);
2837 49 : if (T.p == T.q)
2838 : {
2839 0 : GEN qfbp2 = qfbcompraw(qfp, qfp);
2840 0 : u = gel(qfbp2,2);
2841 0 : T.u = modii(u, T.pq2);
2842 0 : T.qfpq = qfbred_i(qfbp2);
2843 : }
2844 : else
2845 : {
2846 49 : GEN qfq = primeform_u(D, T.q), bp = gel(qfp,2), bq = gel(qfq,2);
2847 49 : T.u = Z_chinese(bp, bq, utoipos(T.p << 1), utoipos(T.q << 1));
2848 : /* T.u = bp (mod 2p), T.u = bq (mod 2q) */
2849 49 : T.qfpq = qfbcomp_i(qfp, qfq);
2850 : }
2851 : /* u modulo 2pq */
2852 49 : prec = LOWDEFAULTPREC;
2853 49 : Pr = cgetg(h+1,t_VEC);
2854 49 : Pi = cgetg(h+1,t_VEC);
2855 : for(;;)
2856 14 : {
2857 63 : long ex, exmax = 0, r1 = 0, r2 = 0;
2858 63 : pari_sp av0 = avma;
2859 63 : T.sqd = sqrtr_abs(itor(D, prec));
2860 4165 : for (i=1; i<=h; i++)
2861 : {
2862 4102 : GEN s = gpq(gel(L,i), &T);
2863 4102 : if (DEBUGLEVEL>3) err_printf("%ld ", i);
2864 4102 : if (!s) continue;
2865 2093 : if (typ(s) != t_COMPLEX) gel(Pr, ++r1) = s; /* real root */
2866 2009 : else gel(Pi, ++r2) = s;
2867 2093 : ex = gexpo(s); if (ex > 0) exmax += ex;
2868 : }
2869 63 : if (DEBUGLEVEL>1) timer_printf(&ti,"roots");
2870 63 : setlg(Pr, r1+1);
2871 63 : setlg(Pi, r2+1);
2872 63 : P = roots_to_pol_r1(shallowconcat(Pr,Pi), 0, r1);
2873 63 : P = grndtoi(P,&exmax);
2874 63 : if (DEBUGLEVEL>1) timer_printf(&ti,"product, error bits = %ld",exmax);
2875 63 : if (exmax <= -10) break;
2876 14 : set_avma(av0); prec += nbits2extraprec(prec2nbits(DEFAULTPREC)+exmax);
2877 14 : if (DEBUGLEVEL) pari_warn(warnprec,"quadhilbertimag",prec);
2878 : }
2879 49 : return P;
2880 : }
2881 :
2882 : GEN
2883 574 : quadhilbert(GEN D, long prec)
2884 : {
2885 574 : pari_sp av = avma;
2886 574 : GEN d = D;
2887 574 : quadray_init(&d, NULL, 0);
2888 973 : return gerepileupto(av, signe(d)>0? quadhilbertreal(D,prec)
2889 413 : : quadhilbertimag(d));
2890 : }
2891 :
2892 : /* return a vector of all roots of 1 in bnf [not necessarily quadratic] */
2893 : static GEN
2894 70 : getallrootsof1(GEN bnf)
2895 : {
2896 70 : GEN T, u, nf = bnf_get_nf(bnf), tu;
2897 70 : long i, n = bnf_get_tuN(bnf);
2898 :
2899 70 : if (n == 2) {
2900 56 : long N = nf_get_degree(nf);
2901 56 : return mkvec2(scalarcol_shallow(gen_m1, N),
2902 : scalarcol_shallow(gen_1, N));
2903 : }
2904 14 : tu = poltobasis(nf, bnf_get_tuU(bnf));
2905 14 : T = zk_multable(nf, tu);
2906 14 : u = cgetg(n+1, t_VEC); gel(u,1) = tu;
2907 56 : for (i=2; i <= n; i++) gel(u,i) = ZM_ZC_mul(T, gel(u,i-1));
2908 14 : return u;
2909 : }
2910 : /* assume bnr has the right conductor */
2911 : static GEN
2912 70 : get_lambda(GEN bnr)
2913 : {
2914 70 : GEN bnf = bnr_get_bnf(bnr), nf = bnf_get_nf(bnf), pol = nf_get_pol(nf);
2915 70 : GEN f = gel(bnr_get_mod(bnr), 1), labas, lamodf, u;
2916 70 : long a, b, f2, i, lu, v = varn(pol);
2917 :
2918 70 : f2 = 2 * itos(gcoeff(f,1,1));
2919 70 : u = getallrootsof1(bnf); lu = lg(u);
2920 238 : for (i=1; i<lu; i++)
2921 168 : gel(u,i) = ZC_hnfrem(gel(u,i), f); /* roots of 1, mod f */
2922 70 : if (DEBUGLEVEL>1)
2923 0 : err_printf("quadray: looking for [a,b] != unit mod 2f\n[a,b] = ");
2924 168 : for (a=0; a<f2; a++)
2925 2576 : for (b=0; b<f2; b++)
2926 : {
2927 2478 : GEN la = deg1pol_shallow(stoi(a), stoi(b), v); /* ax + b */
2928 2478 : if (umodiu(gnorm(mkpolmod(la, pol)), f2) != 1) continue;
2929 224 : if (DEBUGLEVEL>1) err_printf("[%ld,%ld] ",a,b);
2930 :
2931 224 : labas = poltobasis(nf, la);
2932 224 : lamodf = ZC_hnfrem(labas, f);
2933 469 : for (i=1; i<lu; i++)
2934 399 : if (ZV_equal(lamodf, gel(u,i))) break;
2935 224 : if (i < lu) continue; /* la = unit mod f */
2936 70 : if (DEBUGLEVEL)
2937 : {
2938 0 : if (DEBUGLEVEL>1) err_printf("\n");
2939 0 : err_printf("lambda = %Ps\n",la);
2940 : }
2941 70 : return labas;
2942 : }
2943 0 : pari_err_BUG("get_lambda");
2944 : return NULL;/*LCOV_EXCL_LINE*/
2945 : }
2946 :
2947 : static GEN
2948 8778 : to_approx(GEN nf, GEN a)
2949 : {
2950 8778 : GEN M = nf_get_M(nf);
2951 8778 : return gadd(gel(a,1), gmul(gcoeff(M,1,2),gel(a,2)));
2952 : }
2953 : /* Z-basis for a (over C) */
2954 : static GEN
2955 4354 : get_om(GEN nf, GEN a) {
2956 4354 : return mkvec2(to_approx(nf,gel(a,2)),
2957 4354 : to_approx(nf,gel(a,1)));
2958 : }
2959 :
2960 : /* Compute all elts in class group G = [|G|,c,g], c=cyclic factors, g=gens.
2961 : * Set list[j + 1] = g1^e1...gk^ek where j is the integer
2962 : * ek + ck [ e(k-1) + c(k-1) [... + c2 [e1]]...] */
2963 : static GEN
2964 70 : getallelts(GEN bnr)
2965 : {
2966 : GEN nf, C, c, g, list, pows, gk;
2967 : long lc, i, j, no;
2968 :
2969 70 : nf = bnr_get_nf(bnr);
2970 70 : no = itos( bnr_get_no(bnr) );
2971 70 : c = bnr_get_cyc(bnr);
2972 70 : g = bnr_get_gen_nocheck(bnr); lc = lg(c)-1;
2973 70 : list = cgetg(no+1,t_VEC);
2974 70 : gel(list,1) = matid(nf_get_degree(nf)); /* (1) */
2975 70 : if (!no) return list;
2976 :
2977 70 : pows = cgetg(lc+1,t_VEC);
2978 70 : c = leafcopy(c); settyp(c, t_VECSMALL);
2979 140 : for (i=1; i<=lc; i++)
2980 : {
2981 70 : long k = itos(gel(c,i));
2982 70 : c[i] = k;
2983 70 : gk = cgetg(k, t_VEC); gel(gk,1) = gel(g,i);
2984 4284 : for (j=2; j<k; j++)
2985 4214 : gel(gk,j) = idealmoddivisor(bnr, idealmul(nf, gel(gk,j-1), gel(gk,1)));
2986 70 : gel(pows,i) = gk; /* powers of g[i] */
2987 : }
2988 :
2989 70 : C = cgetg(lc+1, t_VECSMALL); C[1] = c[lc];
2990 70 : for (i=2; i<=lc; i++) C[i] = C[i-1] * c[lc-i+1];
2991 : /* C[i] = c(k-i+1) * ... * ck */
2992 : /* j < C[i+1] <==> j only involves g(k-i)...gk */
2993 70 : i = 1;
2994 4354 : for (j=1; j < C[1]; j++)
2995 4284 : gel(list, j+1) = gmael(pows,lc,j);
2996 70 : while(j<no)
2997 : {
2998 : long k;
2999 : GEN a;
3000 0 : if (j == C[i+1]) i++;
3001 0 : a = gmael(pows,lc-i,j/C[i]);
3002 0 : k = j%C[i] + 1;
3003 0 : if (k > 1) a = idealmoddivisor(bnr, idealmul(nf, a, gel(list,k)));
3004 0 : gel(list, ++j) = a;
3005 : }
3006 70 : return list;
3007 : }
3008 :
3009 : /* x quadratic integer (approximate), recognize it. If error return NULL */
3010 : static GEN
3011 4424 : findbezk(GEN nf, GEN x)
3012 : {
3013 4424 : GEN a,b, M = nf_get_M(nf), u = gcoeff(M,1,2);
3014 : long ea, eb;
3015 :
3016 : /* u t_COMPLEX generator of nf.zk, write x ~ a + b u, a,b in Z */
3017 4424 : b = grndtoi(mpdiv(imag_i(x), gel(u,2)), &eb);
3018 4424 : if (eb > -20) return NULL;
3019 4424 : a = grndtoi(mpsub(real_i(x), mpmul(b,gel(u,1))), &ea);
3020 4424 : if (ea > -20) return NULL;
3021 4424 : return signe(b)? coltoalg(nf, mkcol2(a,b)): a;
3022 : }
3023 :
3024 : static GEN
3025 70 : findbezk_pol(GEN nf, GEN x)
3026 : {
3027 70 : long i, lx = lg(x);
3028 70 : GEN y = cgetg(lx,t_POL);
3029 4494 : for (i=2; i<lx; i++)
3030 4424 : if (! (gel(y,i) = findbezk(nf,gel(x,i))) ) return NULL;
3031 70 : y[1] = x[1]; return y;
3032 : }
3033 :
3034 : /* P approximation computed at initial precision prec. Compute needed prec
3035 : * to know P with 1 word worth of trailing decimals */
3036 : static long
3037 0 : get_prec(GEN P, long prec)
3038 : {
3039 0 : long k = gprecision(P);
3040 0 : if (k == 3) return precdbl(prec); /* approximation not trustworthy */
3041 0 : k = prec - k; /* lost precision when computing P */
3042 0 : if (k < 0) k = 0;
3043 0 : k += nbits2prec(gexpo(P) + 128);
3044 0 : if (k <= prec) k = precdbl(prec); /* dubious: old prec should have worked */
3045 0 : return k;
3046 : }
3047 :
3048 : /* Compute data for ellphist */
3049 : static GEN
3050 4354 : ellphistinit(GEN om, long prec)
3051 : {
3052 4354 : GEN res,om1b,om2b, om1 = gel(om,1), om2 = gel(om,2);
3053 :
3054 4354 : if (gsigne(imag_i(gdiv(om1,om2))) < 0) { swap(om1,om2); om = mkvec2(om1,om2); }
3055 4354 : om1b = conj_i(om1);
3056 4354 : om2b = conj_i(om2); res = cgetg(4,t_VEC);
3057 4354 : gel(res,1) = gdivgu(elleisnum(om,2,0,prec),12);
3058 4354 : gel(res,2) = gdiv(PiI2(prec), gmul(om2, imag_i(gmul(om1b,om2))));
3059 4354 : gel(res,3) = om2b; return res;
3060 : }
3061 :
3062 : /* Computes log(phi^*(z,om)), using res computed by ellphistinit */
3063 : static GEN
3064 8708 : ellphist(GEN om, GEN res, GEN z, long prec)
3065 : {
3066 8708 : GEN u = imag_i(gmul(z, gel(res,3)));
3067 8708 : GEN zst = gsub(gmul(u, gel(res,2)), gmul(z,gel(res,1)));
3068 8708 : return gsub(ellsigma(om,z,1,prec),gmul2n(gmul(z,zst),-1));
3069 : }
3070 :
3071 : /* Computes phi^*(la,om)/phi^*(1,om) where (1,om) is an oriented basis of the
3072 : ideal gf*gc^{-1} */
3073 : static GEN
3074 4354 : computeth2(GEN om, GEN la, long prec)
3075 : {
3076 4354 : GEN p1,p2,res = ellphistinit(om,prec);
3077 :
3078 4354 : p1 = gsub(ellphist(om,res,la,prec), ellphist(om,res,gen_1,prec));
3079 4354 : p2 = imag_i(p1);
3080 4354 : if (gexpo(real_i(p1))>20 || gexpo(p2)> prec2nbits(minss(prec,realprec(p2)))-10)
3081 0 : return NULL;
3082 4354 : return gexp(p1,prec);
3083 : }
3084 :
3085 : /* Computes P_2(X)=polynomial in Z_K[X] closest to prod_gc(X-th2(gc)) where
3086 : the product is over the ray class group bnr.*/
3087 : static GEN
3088 70 : computeP2(GEN bnr, long prec)
3089 : {
3090 70 : long clrayno, i, first = 1;
3091 70 : pari_sp av=avma, av2;
3092 70 : GEN listray, P0, P, lanum, la = get_lambda(bnr);
3093 70 : GEN nf = bnr_get_nf(bnr), f = gel(bnr_get_mod(bnr), 1);
3094 70 : listray = getallelts(bnr);
3095 70 : clrayno = lg(listray)-1; av2 = avma;
3096 70 : PRECPB:
3097 70 : if (!first)
3098 : {
3099 0 : if (DEBUGLEVEL) pari_warn(warnprec,"computeP2",prec);
3100 0 : nf = gerepilecopy(av2, nfnewprec_shallow(bnr_get_nf(bnr),prec));
3101 : }
3102 70 : first = 0; lanum = to_approx(nf,la);
3103 70 : P = cgetg(clrayno+1,t_VEC);
3104 4424 : for (i=1; i<=clrayno; i++)
3105 : {
3106 4354 : GEN om = get_om(nf, idealdiv(nf,f,gel(listray,i)));
3107 4354 : GEN s = computeth2(om,lanum,prec);
3108 4354 : if (!s) { prec = precdbl(prec); goto PRECPB; }
3109 4354 : gel(P,i) = s;
3110 : }
3111 70 : P0 = roots_to_pol(P, 0);
3112 70 : P = findbezk_pol(nf, P0);
3113 70 : if (!P) { prec = get_prec(P0, prec); goto PRECPB; }
3114 70 : return gerepilecopy(av, P);
3115 : }
3116 :
3117 : #define nexta(a) (a>0 ? -a : 1-a)
3118 : static GEN
3119 49 : do_compo(GEN A0, GEN B)
3120 : {
3121 49 : long a, i, l = lg(B), v = fetch_var_higher();
3122 : GEN A, z;
3123 : /* now v > x = pol_x(0) > nf variable */
3124 49 : B = leafcopy(B); setvarn(B, v);
3125 210 : for (i = 2; i < l; i++) gel(B,i) = monomial(gel(B,i), l-i-1, 0);
3126 : /* B := x^deg(B) B(v/x) */
3127 49 : A = A0 = leafcopy(A0); setvarn(A0, v);
3128 56 : for (a = 0;; a = nexta(a))
3129 : {
3130 56 : if (a) A = RgX_translate(A0, stoi(a));
3131 56 : z = resultant(A,B); /* in variable 0 */
3132 56 : if (issquarefree(z)) break;
3133 : }
3134 49 : (void)delete_var(); return z;
3135 : }
3136 : #undef nexta
3137 :
3138 : static GEN
3139 14 : galoisapplypol(GEN nf, GEN s, GEN x)
3140 : {
3141 14 : long i, lx = lg(x);
3142 14 : GEN y = cgetg(lx,t_POL);
3143 :
3144 56 : for (i=2; i<lx; i++) gel(y,i) = galoisapply(nf,s,gel(x,i));
3145 14 : y[1] = x[1]; return y;
3146 : }
3147 : /* x quadratic, write it as ua + v, u,v rational */
3148 : static GEN
3149 70 : findquad(GEN a, GEN x, GEN p)
3150 : {
3151 : long tu, tv;
3152 70 : pari_sp av = avma;
3153 : GEN u,v;
3154 70 : if (typ(x) == t_POLMOD) x = gel(x,2);
3155 70 : if (typ(a) == t_POLMOD) a = gel(a,2);
3156 70 : u = poldivrem(x, a, &v);
3157 70 : u = simplify_shallow(u); tu = typ(u);
3158 70 : v = simplify_shallow(v); tv = typ(v);
3159 70 : if (!is_scalar_t(tu)) pari_err_TYPE("findquad", u);
3160 70 : if (!is_scalar_t(tv)) pari_err_TYPE("findquad", v);
3161 70 : x = deg1pol(u, v, varn(a));
3162 70 : if (typ(x) == t_POL) x = gmodulo(x,p);
3163 70 : return gerepileupto(av, x);
3164 : }
3165 : static GEN
3166 14 : findquad_pol(GEN p, GEN a, GEN x)
3167 : {
3168 14 : long i, lx = lg(x);
3169 14 : GEN y = cgetg(lx,t_POL);
3170 84 : for (i=2; i<lx; i++) gel(y,i) = findquad(a, gel(x,i), p);
3171 14 : y[1] = x[1]; return y;
3172 : }
3173 : /* m is 3, 4 or 12 */
3174 : static GEN
3175 35 : compocyclo(GEN D, long m)
3176 35 : { return do_compo(quadhilbertimag(D), polcyclo(m,0)); }
3177 : /* m is prime or 4 * prime */
3178 : static GEN
3179 14 : compocyclop(GEN nf, long m)
3180 : {
3181 14 : GEN sb,a,b,s,p1,p2,p3,res,polL,polLK,nfL, D = nf_get_disc(nf);
3182 : long ell,vx;
3183 :
3184 14 : p1 = quadhilbertimag(D);
3185 14 : p2 = polcyclo(m,0);
3186 14 : ell = odd(m)? m: (m>>2); /* prime */
3187 14 : if (absequalui(ell,D)) /* ell = |D| */
3188 : {
3189 0 : p2 = gcoeff(nffactor(nf,p2),1,1);
3190 0 : return do_compo(p1,p2);
3191 : }
3192 14 : if (ell%4 == 3) ell = -ell;
3193 : /* nf = K = Q(a), L = K(b) quadratic extension = Q(t) */
3194 14 : polLK = quadpoly_i(stoi(ell)); /* relative polynomial */
3195 14 : res = rnfequation2(nf, polLK);
3196 14 : vx = nf_get_varn(nf);
3197 14 : polL = gsubst(gel(res,1),0,pol_x(vx)); /* = charpoly(t) */
3198 14 : a = gsubst(lift_shallow(gel(res,2)), 0,pol_x(vx));
3199 14 : b = gsub(pol_x(vx), gmul(gel(res,3), a));
3200 14 : nfL = nfinit(polL, DEFAULTPREC);
3201 14 : p1 = gcoeff(nffactor(nfL,p1),1,1);
3202 14 : p2 = gcoeff(nffactor(nfL,p2),1,1);
3203 14 : p3 = do_compo(p1,p2); /* relative equation over L */
3204 : /* compute non trivial s in Gal(L / K) */
3205 14 : sb= gneg(gadd(b, RgX_coeff(polLK,1))); /* s(b) = Tr(b) - b */
3206 14 : s = gadd(pol_x(vx), gsub(sb, b)); /* s(t) = t + s(b) - b */
3207 14 : p3 = gmul(p3, galoisapplypol(nfL, s, p3));
3208 14 : return findquad_pol(nf_get_pol(nf), a, p3);
3209 : }
3210 :
3211 : /* I integral ideal in HNF. (x) = I, x small in Z ? */
3212 : static long
3213 119 : isZ(GEN I)
3214 : {
3215 119 : GEN x = gcoeff(I,1,1);
3216 119 : if (signe(gcoeff(I,1,2)) || !equalii(x, gcoeff(I,2,2))) return 0;
3217 105 : return is_bigint(x)? -1: itos(x);
3218 : }
3219 :
3220 : /* Treat special cases directly. return NULL if not special case */
3221 : static GEN
3222 119 : treatspecialsigma(GEN bnr)
3223 : {
3224 119 : GEN bnf = bnr_get_bnf(bnr), nf = bnf_get_nf(bnf);
3225 119 : GEN f = gel(bnr_get_mod(bnr), 1), D = nf_get_disc(nf);
3226 : GEN p1, p2;
3227 119 : long Ds, fl, tryf, i = isZ(f);
3228 :
3229 119 : if (i == 1) return quadhilbertimag(D); /* f = 1 */
3230 :
3231 119 : if (absequaliu(D,3)) /* Q(j) */
3232 : {
3233 0 : if (i == 4 || i == 5 || i == 7) return polcyclo(i,0);
3234 0 : if (!absequaliu(gcoeff(f,1,1),9) || !absequaliu(Z_content(f),3)) return NULL;
3235 : /* f = P_3^3 */
3236 0 : p1 = mkpolmod(bnf_get_tuU(bnf), nf_get_pol(nf));
3237 0 : return gadd(pol_xn(3,0), p1); /* x^3+j */
3238 : }
3239 119 : if (absequaliu(D,4)) /* Q(i) */
3240 : {
3241 14 : if (i == 3 || i == 5) return polcyclo(i,0);
3242 14 : if (i != 4) return NULL;
3243 0 : p1 = mkpolmod(bnf_get_tuU(bnf), nf_get_pol(nf));
3244 0 : return gadd(pol_xn(2,0), p1); /* x^2+i */
3245 : }
3246 105 : Ds = smodis(D,48);
3247 105 : if (i)
3248 : {
3249 91 : if (i==2 && Ds%16== 8) return compocyclo(D, 4);
3250 84 : if (i==3 && Ds% 3== 1) return compocyclo(D, 3);
3251 70 : if (i==4 && Ds% 8== 1) return compocyclo(D, 4);
3252 63 : if (i==6 && Ds ==40) return compocyclo(D,12);
3253 56 : return NULL;
3254 : }
3255 :
3256 14 : p1 = gcoeff(f,1,1); /* integer > 0 */
3257 14 : tryf = itou_or_0(p1); if (!tryf) return NULL;
3258 14 : p2 = gcoeff(f,2,2); /* integer > 0 */
3259 14 : if (is_pm1(p2)) fl = 0;
3260 : else {
3261 0 : if (Ds % 16 != 8 || !absequaliu(Z_content(f),2)) return NULL;
3262 0 : fl = 1; tryf >>= 1;
3263 : }
3264 14 : if (tryf <= 3 || umodiu(D, tryf) || !uisprime(tryf)) return NULL;
3265 14 : if (fl) tryf <<= 2;
3266 14 : return compocyclop(nf, tryf);
3267 : }
3268 :
3269 : GEN
3270 161 : quadray(GEN D, GEN f, long prec)
3271 : {
3272 161 : GEN bnr, y, bnf, H = NULL;
3273 161 : pari_sp av = avma;
3274 :
3275 161 : if (isint1(f)) return quadhilbert(D, prec);
3276 126 : if (typ(D) == t_INT && typ(f) != t_INT)
3277 0 : pari_err_TYPE("quadray [conductor]", f);
3278 126 : quadray_init(&D, &bnf, prec);
3279 126 : bnr = Buchray(bnf, f, nf_INIT|nf_GEN);
3280 126 : if (is_pm1(bnr_get_no(bnr))) { set_avma(av); return pol_x(0); }
3281 126 : if (signe(D) > 0)
3282 7 : y = bnrstark(bnr, H, prec);
3283 : else
3284 : {
3285 119 : bnr_subgroup_sanitize(&bnr, &H);
3286 119 : y = treatspecialsigma(bnr);
3287 119 : if (!y) y = computeP2(bnr, prec);
3288 : }
3289 126 : return gerepileupto(av, y);
3290 : }
|