Line data Source code
1 : /* Copyright (C) 2012 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 : /** LINEAR ALGEBRA **/
18 : /** (third part) **/
19 : /** **/
20 : /********************************************************************/
21 : #include "pari.h"
22 : #include "paripriv.h"
23 :
24 : #define DEBUGLEVEL DEBUGLEVEL_mat
25 :
26 : /*******************************************************************/
27 : /* */
28 : /* SUM */
29 : /* */
30 : /*******************************************************************/
31 :
32 : GEN
33 147389 : vecsum(GEN v)
34 : {
35 147389 : pari_sp av = avma;
36 : long i, l;
37 : GEN p;
38 147389 : if (!is_vec_t(typ(v)))
39 7 : pari_err_TYPE("vecsum", v);
40 147382 : l = lg(v);
41 147382 : if (l == 1) return gen_0;
42 147375 : p = gel(v,1);
43 147375 : if (l == 2) return gcopy(p);
44 245591 : for (i=2; i<l; i++)
45 : {
46 166074 : p = gadd(p, gel(v,i));
47 166074 : if (gc_needed(av, 2))
48 : {
49 0 : if (DEBUGMEM>1) pari_warn(warnmem,"sum");
50 0 : p = gerepileupto(av, p);
51 : }
52 : }
53 79517 : return gerepileupto(av, p);
54 : }
55 :
56 : /*******************************************************************/
57 : /* */
58 : /* TRANSPOSE */
59 : /* */
60 : /*******************************************************************/
61 : /* A[x0,]~ */
62 : static GEN
63 25684185 : row_transpose(GEN A, long x0)
64 : {
65 25684185 : long i, lB = lg(A);
66 25684185 : GEN B = cgetg(lB, t_COL);
67 200702355 : for (i=1; i<lB; i++) gel(B, i) = gcoeff(A, x0, i);
68 25684257 : return B;
69 : }
70 : static GEN
71 18728 : row_transposecopy(GEN A, long x0)
72 : {
73 18728 : long i, lB = lg(A);
74 18728 : GEN B = cgetg(lB, t_COL);
75 162525 : for (i=1; i<lB; i++) gel(B, i) = gcopy(gcoeff(A, x0, i));
76 18728 : return B;
77 : }
78 :
79 : /* No copy*/
80 : GEN
81 6883200 : shallowtrans(GEN x)
82 : {
83 : long i, dx, lx;
84 : GEN y;
85 6883200 : switch(typ(x))
86 : {
87 1211 : case t_VEC: y = leafcopy(x); settyp(y,t_COL); break;
88 896 : case t_COL: y = leafcopy(x); settyp(y,t_VEC); break;
89 6881094 : case t_MAT:
90 6881094 : lx = lg(x); if (lx==1) return cgetg(1,t_MAT);
91 6879799 : dx = lgcols(x); y = cgetg(dx,t_MAT);
92 32564533 : for (i = 1; i < dx; i++) gel(y,i) = row_transpose(x,i);
93 6880553 : break;
94 0 : default: pari_err_TYPE("shallowtrans",x);
95 : return NULL;/*LCOV_EXCL_LINE*/
96 : }
97 6882660 : return y;
98 : }
99 :
100 : GEN
101 43673 : gtrans(GEN x)
102 : {
103 : long i, dx, lx;
104 : GEN y;
105 43673 : switch(typ(x))
106 : {
107 36820 : case t_VEC: y = gcopy(x); settyp(y,t_COL); break;
108 4879 : case t_COL: y = gcopy(x); settyp(y,t_VEC); break;
109 1967 : case t_MAT:
110 1967 : lx = lg(x); if (lx==1) return cgetg(1,t_MAT);
111 1960 : dx = lgcols(x); y = cgetg(dx,t_MAT);
112 20688 : for (i = 1; i < dx; i++) gel(y,i) = row_transposecopy(x,i);
113 1960 : break;
114 7 : default: pari_err_TYPE("gtrans",x);
115 : return NULL;/*LCOV_EXCL_LINE*/
116 : }
117 43659 : return y;
118 : }
119 :
120 : /*******************************************************************/
121 : /* */
122 : /* EXTRACTION */
123 : /* */
124 : /*******************************************************************/
125 :
126 : static long
127 182 : str_to_long(char *s, char **pt)
128 : {
129 182 : long a = atol(s);
130 182 : while (isspace((unsigned char)*s)) s++;
131 182 : if (*s == '-' || *s == '+') s++;
132 385 : while (isdigit((unsigned char)*s) || isspace((unsigned char)*s)) s++;
133 182 : *pt = s; return a;
134 : }
135 :
136 : static int
137 112 : get_range(char *s, long *a, long *b, long *cmpl, long lx)
138 : {
139 112 : long max = lx - 1;
140 :
141 112 : *a = 1; *b = max;
142 112 : if (*s == '^') { *cmpl = 1; s++; } else *cmpl = 0;
143 112 : if (!*s) return 0;
144 112 : if (*s != '.')
145 : {
146 105 : *a = str_to_long(s, &s);
147 105 : if (*a < 0) *a += lx;
148 105 : if (*a<1 || *a>max) return 0;
149 : }
150 112 : if (*s == '.')
151 : {
152 105 : s++; if (*s != '.') return 0;
153 105 : do s++; while (isspace((unsigned char)*s));
154 105 : if (*s)
155 : {
156 77 : *b = str_to_long(s, &s);
157 77 : if (*b < 0) *b += lx;
158 77 : if (*b<1 || *b>max || *s) return 0;
159 : }
160 98 : return 1;
161 : }
162 7 : if (*s) return 0;
163 7 : *b = *a; return 1;
164 : }
165 :
166 : static int
167 35 : extract_selector_ok(long lx, GEN L)
168 : {
169 : long i, l;
170 35 : switch (typ(L))
171 : {
172 7 : case t_INT: {
173 : long maxj;
174 7 : if (!signe(L)) return 1;
175 7 : l = lgefint(L)-1;
176 7 : maxj = BITS_IN_LONG - bfffo(*int_MSW(L));
177 7 : return ((l-2) * BITS_IN_LONG + maxj < lx);
178 : }
179 7 : case t_STR: {
180 : long first, last, cmpl;
181 7 : return get_range(GSTR(L), &first, &last, &cmpl, lx);
182 : }
183 14 : case t_VEC: case t_COL:
184 14 : l = lg(L);
185 28 : for (i=1; i<l; i++)
186 : {
187 21 : long j = itos(gel(L,i));
188 21 : if (j>=lx || j<=0) return 0;
189 : }
190 7 : return 1;
191 7 : case t_VECSMALL:
192 7 : l = lg(L);
193 21 : for (i=1; i<l; i++)
194 : {
195 14 : long j = L[i];
196 14 : if (j>=lx || j<=0) return 0;
197 : }
198 7 : return 1;
199 : }
200 0 : return 0;
201 : }
202 :
203 : GEN
204 13062 : shallowmatextract(GEN x, GEN l1, GEN l2)
205 : {
206 13062 : long i, j, n1 = lg(l1), n2 = lg(l2);
207 13062 : GEN M = cgetg(n2, t_MAT);
208 75404 : for(i=1; i < n2; i++)
209 : {
210 62342 : long ii = l2[i];
211 62342 : GEN C = cgetg(n1, t_COL);
212 992306 : for (j=1; j < n1; j++)
213 : {
214 929964 : long jj = l1[j];
215 929964 : gel(C, j) = gmael(x, ii, jj);
216 : }
217 62342 : gel(M, i) = C;
218 : }
219 13062 : return M;
220 : }
221 :
222 : GEN
223 49125 : shallowextract(GEN x, GEN L)
224 : {
225 49125 : long i,j, tl = typ(L), tx = typ(x), lx = lg(x);
226 : GEN y;
227 :
228 49125 : switch(tx)
229 : {
230 49118 : case t_VEC:
231 : case t_COL:
232 : case t_MAT:
233 49118 : case t_VECSMALL: break;
234 7 : default: pari_err_TYPE("extract",x);
235 :
236 : }
237 49118 : if (tl==t_INT)
238 : { /* extract components of x as per the bits of mask L */
239 : long k, l, ix, iy, maxj;
240 : GEN Ld;
241 3318 : if (!signe(L)) return cgetg(1,tx);
242 3311 : y = new_chunk(lx);
243 3311 : l = lgefint(L)-1; ix = iy = 1;
244 3311 : maxj = BITS_IN_LONG - bfffo(*int_MSW(L));
245 3311 : if ((l-2) * BITS_IN_LONG + maxj >= lx)
246 7 : pari_err_TYPE("vecextract [mask too large]", L);
247 3679 : for (k = 2, Ld = int_LSW(L); k < l; k++, Ld = int_nextW(Ld))
248 : {
249 375 : ulong B = *Ld;
250 20439 : for (j = 0; j < BITS_IN_LONG; j++, B >>= 1, ix++)
251 20064 : if (B & 1) y[iy++] = x[ix];
252 : }
253 : { /* k = l */
254 3304 : ulong B = *Ld;
255 28698 : for (j = 0; j < maxj; j++, B >>= 1, ix++)
256 25394 : if (B & 1) y[iy++] = x[ix];
257 : }
258 3304 : y[0] = evaltyp(tx) | evallg(iy);
259 3304 : return y;
260 : }
261 45800 : if (tl==t_STR)
262 : {
263 105 : char *s = GSTR(L);
264 : long first, last, cmpl, d;
265 105 : if (! get_range(s, &first, &last, &cmpl, lx))
266 7 : pari_err_TYPE("vecextract [incorrect range]", L);
267 98 : if (lx == 1) return cgetg(1,tx);
268 98 : d = last - first;
269 98 : if (cmpl)
270 : {
271 21 : if (d >= 0)
272 : {
273 14 : y = cgetg(lx - (1+d),tx);
274 469 : for (j=1; j<first; j++) gel(y,j) = gel(x,j);
275 266 : for (i=last+1; i<lx; i++,j++) gel(y,j) = gel(x,i);
276 : }
277 : else
278 : {
279 7 : y = cgetg(lx - (1-d),tx);
280 14 : for (j=1,i=lx-1; i>first; i--,j++) gel(y,j) = gel(x,i);
281 14 : for (i=last-1; i>0; i--,j++) gel(y,j) = gel(x,i);
282 : }
283 : }
284 : else
285 : {
286 77 : if (d >= 0)
287 : {
288 35 : y = cgetg(d+2,tx);
289 112 : for (i=first,j=1; i<=last; i++,j++) gel(y,j) = gel(x,i);
290 : }
291 : else
292 : {
293 42 : y = cgetg(2-d,tx);
294 203 : for (i=first,j=1; i>=last; i--,j++) gel(y,j) = gel(x,i);
295 : }
296 : }
297 98 : return y;
298 : }
299 :
300 45695 : if (is_vec_t(tl))
301 : {
302 77 : long ll=lg(L); y=cgetg(ll,tx);
303 196 : for (i=1; i<ll; i++)
304 : {
305 133 : j = itos(gel(L,i));
306 133 : if (j<=0) pari_err_COMPONENT("vecextract","<=",gen_0,stoi(j));
307 126 : if (j>=lx) pari_err_COMPONENT("vecextract",">=",stoi(lx),stoi(j));
308 119 : gel(y,i) = gel(x,j);
309 : }
310 63 : return y;
311 : }
312 45618 : if (tl == t_VECSMALL)
313 : {
314 45611 : long ll=lg(L); y=cgetg(ll,tx);
315 194697 : for (i=1; i<ll; i++)
316 : {
317 149086 : j = L[i];
318 149086 : if (j<=0) pari_err_COMPONENT("vecextract","<=",gen_0,stoi(j));
319 149086 : if (j>=lx) pari_err_COMPONENT("vecextract",">=",stoi(lx),stoi(j));
320 149086 : gel(y,i) = gel(x,j);
321 : }
322 45611 : return y;
323 : }
324 7 : pari_err_TYPE("vecextract [mask]", L);
325 : return NULL; /* LCOV_EXCL_LINE */
326 : }
327 :
328 : /* does the component selector l select 0 component ? */
329 : static int
330 84 : select_0(GEN l)
331 : {
332 84 : switch(typ(l))
333 : {
334 14 : case t_INT:
335 14 : return (!signe(l));
336 49 : case t_VEC: case t_COL: case t_VECSMALL:
337 49 : return (lg(l) == 1);
338 : }
339 21 : return 0;
340 : }
341 :
342 : GEN
343 36356 : extract0(GEN x, GEN l1, GEN l2)
344 : {
345 36356 : pari_sp av = avma, av2;
346 : GEN y;
347 36356 : if (! l2)
348 : {
349 36272 : y = shallowextract(x, l1);
350 36230 : if (lg(y) == 1 || typ(y) == t_VECSMALL) return y;
351 36223 : av2 = avma;
352 36223 : y = gcopy(y);
353 : }
354 : else
355 : {
356 84 : if (typ(x) != t_MAT) pari_err_TYPE("extract",x);
357 84 : y = shallowextract(x,l2);
358 84 : if (select_0(l1)) { set_avma(av); return zeromat(0, lg(y)-1); }
359 70 : if (lg(y) == 1 && lg(x) > 1)
360 : {
361 35 : if (!extract_selector_ok(lgcols(x), l1))
362 7 : pari_err_TYPE("vecextract [incorrect mask]", l1);
363 28 : set_avma(av); return cgetg(1, t_MAT);
364 : }
365 35 : y = shallowextract(shallowtrans(y), l1);
366 35 : av2 = avma;
367 35 : y = gtrans(y);
368 : }
369 36258 : stackdummy(av, av2);
370 36258 : return y;
371 : }
372 :
373 : static long
374 2051 : vecslice_parse_arg(long lA, long *y1, long *y2, long *skip)
375 : {
376 2051 : *skip=0;
377 2051 : if (*y1==LONG_MAX)
378 : {
379 252 : if (*y2!=LONG_MAX)
380 : {
381 140 : if (*y2<0) *y2 += lA;
382 140 : if (*y2<0 || *y2==LONG_MAX || *y2>=lA)
383 0 : pari_err_DIM("_[..]");
384 140 : *skip=*y2;
385 : }
386 252 : *y1 = 1; *y2 = lA-1;
387 : }
388 1799 : else if (*y2==LONG_MAX) *y2 = *y1;
389 2051 : if (*y1<=0) *y1 += lA;
390 2051 : if (*y2<0) *y2 += lA;
391 2051 : if (*y1<=0 || *y1>*y2+1 || *y2>=lA) pari_err_DIM("_[..]");
392 2037 : return *y2 - *y1 + 2 - !!*skip;
393 : }
394 :
395 : static GEN
396 2688 : vecslice_i(GEN A, long t, long lB, long y1, long skip)
397 : {
398 2688 : GEN B = cgetg(lB, t);
399 : long i;
400 27209 : for (i=1; i<lB; i++, y1++)
401 : {
402 24521 : if (y1 == skip) { i--; continue; }
403 24381 : gel(B,i) = gcopy(gel(A,y1));
404 : }
405 2688 : return B;
406 : }
407 :
408 : static GEN
409 14 : rowslice_i(GEN A, long lB, long x1, long y1, long skip)
410 : {
411 14 : GEN B = cgetg(lB, t_VEC);
412 : long i;
413 77 : for (i=1; i<lB; i++, y1++)
414 : {
415 63 : if (y1 == skip) { i--; continue; }
416 56 : gel(B,i) = gcopy(gcoeff(A,x1,y1));
417 : }
418 14 : return B;
419 : }
420 :
421 : static GEN
422 0 : rowsmallslice_i(GEN A, long lB, long x1, long y1, long skip)
423 : {
424 0 : GEN B = cgetg(lB, t_VECSMALL);
425 : long i;
426 0 : for (i=1; i<lB; i++, y1++)
427 : {
428 0 : if (y1 == skip) { i--; continue; }
429 0 : B[i] = coeff(A,x1,y1);
430 : }
431 0 : return B;
432 : }
433 :
434 : static GEN
435 28 : vecsmallslice_i(GEN A, long t, long lB, long y1, long skip)
436 : {
437 28 : GEN B = cgetg(lB, t);
438 : long i;
439 126 : for (i=1; i<lB; i++, y1++)
440 : {
441 98 : if (y1 == skip) { i--; continue; }
442 91 : B[i] = A[y1];
443 : }
444 28 : return B;
445 : }
446 : GEN
447 1652 : vecslice0(GEN A, long y1, long y2)
448 : {
449 1652 : long skip, lB, t = typ(A);
450 1652 : switch(t)
451 : {
452 1554 : case t_VEC: case t_COL:
453 1554 : lB = vecslice_parse_arg(lg(A), &y1, &y2, &skip);
454 1540 : return vecslice_i(A, t,lB,y1,skip);
455 28 : case t_VECSMALL:
456 28 : lB = vecslice_parse_arg(lg(A), &y1, &y2, &skip);
457 28 : return vecsmallslice_i(A, t,lB,y1,skip);
458 63 : case t_LIST:
459 63 : if (list_typ(A) == t_LIST_RAW)
460 : {
461 63 : GEN y, z = list_data(A);
462 63 : long l = z? lg(z): 1;
463 63 : lB = vecslice_parse_arg(l, &y1, &y2, &skip);
464 63 : y = mklist(); if (!z) return y;
465 63 : list_data(y) = vecslice_i(z, t_VEC,lB,y1,skip);
466 63 : return y;
467 : }
468 : default:
469 7 : pari_err_TYPE("_[_.._]",A);
470 : return NULL;/*LCOV_EXCL_LINE*/
471 : }
472 : }
473 :
474 : GEN
475 210 : matslice0(GEN A, long x1, long x2, long y1, long y2)
476 : {
477 : GEN B;
478 210 : long i, lB, lA = lg(A), rA, t, skip, rskip, rlB;
479 210 : long is_col = y1!=LONG_MAX && y2==LONG_MAX;
480 210 : long is_row = x1!=LONG_MAX && x2==LONG_MAX;
481 : GEN (*slice)(GEN A, long t, long lB, long y1, long skip);
482 210 : if (typ(A)!=t_MAT) pari_err_TYPE("_[_.._,_.._]",A);
483 210 : lB = vecslice_parse_arg(lA, &y1, &y2, &skip);
484 210 : if (is_col) return vecslice0(gel(A, y1), x1, x2);
485 196 : rA = lg(A)==1 ? 1: lgcols(A);
486 196 : rlB = vecslice_parse_arg(rA, &x1, &x2, &rskip);
487 196 : t = lg(A)==1 ? t_COL: typ(gel(A,1));
488 196 : if (is_row) return t == t_COL ? rowslice_i(A, lB, x1, y1, skip):
489 0 : rowsmallslice_i(A, lB, x1, y1, skip);
490 182 : slice = t == t_COL? &vecslice_i: &vecsmallslice_i;
491 :
492 182 : B = cgetg(lB, t_MAT);
493 1281 : for (i=1; i<lB; i++, y1++)
494 : {
495 1099 : if (y1 == skip) { i--; continue; }
496 1085 : gel(B,i) = slice(gel(A,y1),t,rlB, x1, rskip);
497 : }
498 182 : return B;
499 : }
500 :
501 : GEN
502 10765 : vecrange(GEN a, GEN b)
503 : {
504 : GEN y;
505 : long i, l;
506 10765 : if (typ(a)!=t_INT) pari_err_TYPE("[_.._]",a);
507 10758 : if (typ(b)!=t_INT) pari_err_TYPE("[_.._]",b);
508 10751 : if (cmpii(a,b)>0) return cgetg(1,t_VEC);
509 10744 : l = itos(subii(b,a))+1;
510 10744 : a = setloop(a);
511 10744 : y = cgetg(l+1, t_VEC);
512 26385298 : for (i=1; i<=l; a = incloop(a), i++) gel(y,i) = icopy(a);
513 10744 : return y;
514 : }
515 :
516 : GEN
517 0 : vecrangess(long a, long b)
518 : {
519 : GEN y;
520 : long i, l;
521 0 : if (a>b) return cgetg(1,t_VEC);
522 0 : l = b-a+1;
523 0 : y = cgetg(l+1, t_VEC);
524 0 : for (i=1; i<=l; a++, i++) gel(y,i) = stoi(a);
525 0 : return y;
526 : }
527 :
528 : GEN
529 110 : genindexselect(void *E, long (*f)(void* E, GEN x), GEN A)
530 : {
531 : long l, i, lv;
532 : GEN v, z;
533 : pari_sp av;
534 110 : switch(typ(A))
535 : {
536 14 : case t_LIST:
537 14 : z = list_data(A);
538 14 : l = z? lg(z): 1;
539 14 : if (list_typ(A)==t_LIST_MAP)
540 : {
541 7 : av = avma;
542 7 : return gerepilecopy(av, mapselect_shallow(E, f, A));
543 : }
544 7 : break;
545 89 : case t_VEC: case t_COL: case t_MAT:
546 89 : l = lg(A);
547 89 : z = A;
548 89 : break;
549 7 : default:
550 7 : pari_err_TYPE("select",A);
551 : return NULL;/*LCOV_EXCL_LINE*/
552 : }
553 96 : v = cgetg(l, t_VECSMALL);
554 96 : av = avma;
555 96 : clone_lock(A);
556 12878 : for (i = lv = 1; i < l; i++) {
557 12782 : if (f(E, gel(z,i))) v[lv++] = i;
558 12782 : set_avma(av);
559 : }
560 96 : clone_unlock_deep(A); fixlg(v, lv); return v;
561 : }
562 : static GEN
563 101 : extract_copy(GEN A, GEN v)
564 : {
565 101 : long i, l = lg(v);
566 101 : GEN B = cgetg(l, typ(A));
567 4609 : for (i = 1; i < l; i++) gel(B,i) = gcopy(gel(A,v[i]));
568 101 : return B;
569 : }
570 : /* as genselect, but treat A [ t_VEC,t_COL, or t_MAT] as a t_VEC */
571 : GEN
572 0 : vecselect(void *E, long (*f)(void* E, GEN x), GEN A)
573 : {
574 : GEN v;
575 0 : clone_lock(A);
576 0 : v = genindexselect(E, f, A);
577 0 : A = extract_copy(A, v); settyp(A, t_VEC);
578 0 : clone_unlock_deep(A); return A;
579 : }
580 : GEN
581 104 : genselect(void *E, long (*f)(void* E, GEN x), GEN A)
582 : {
583 104 : pari_sp av = avma;
584 : GEN y, z, v;/* v left on stack for efficiency */
585 104 : clone_lock(A);
586 104 : switch(typ(A))
587 : {
588 35 : case t_LIST:
589 35 : z = list_data(A);
590 35 : if (!z) y = mklist();
591 : else
592 : {
593 35 : if (list_typ(A)==t_LIST_MAP)
594 : {
595 14 : long i, l = z? lg(z): 1, lv=1;
596 14 : GEN v1 = cgetg(l, t_COL);
597 14 : GEN v2 = cgetg(l, t_COL);
598 56 : for (i = lv = 1; i < l; i++) {
599 42 : if (f(E, gmael3(z,i,1,2)))
600 : {
601 21 : gel(v1,lv) = gmael3(z,i,1,1);
602 21 : gel(v2,lv) = gmael3(z,i,1,2);
603 21 : lv++;
604 : }
605 : }
606 14 : fixlg(v1, lv); fixlg(v2, lv); y = gtomap(mkmat2(v1,v2));
607 : }
608 : else
609 : {
610 : GEN B;
611 21 : y = cgetg(3, t_LIST);
612 21 : v = genindexselect(E, f, z);
613 21 : B = extract_copy(z, v);
614 21 : y[1] = lg(B)-1;
615 21 : list_data(y) = B;
616 : }
617 : }
618 35 : break;
619 62 : case t_VEC: case t_COL: case t_MAT:
620 62 : v = genindexselect(E, f, A);
621 62 : y = extract_copy(A, v);
622 62 : break;
623 7 : default:
624 7 : pari_err_TYPE("select",A);
625 : return NULL;/*LCOV_EXCL_LINE*/
626 : }
627 97 : clone_unlock_deep(A); return gerepileupto(av, y);
628 : }
629 :
630 : static void
631 54766 : check_callgen1(GEN f, const char *s)
632 : {
633 54766 : if (typ(f) != t_CLOSURE || closure_is_variadic(f) || closure_arity(f) < 1)
634 0 : pari_err_TYPE(s, f);
635 54766 : }
636 :
637 : GEN
638 131 : select0(GEN f, GEN x, long flag)
639 : {
640 131 : check_callgen1(f, "select");
641 131 : switch(flag)
642 : {
643 104 : case 0: return genselect((void *) f, gp_callbool, x);
644 27 : case 1: return genindexselect((void *) f, gp_callbool, x);
645 0 : default: pari_err_FLAG("select");
646 : return NULL;/*LCOV_EXCL_LINE*/
647 : }
648 : }
649 :
650 : GEN
651 30 : parselect(GEN C, GEN D, long flag)
652 : {
653 : pari_sp av, av2;
654 30 : long lv, l = lg(D), i, pending = 0, workid;
655 : GEN V, done;
656 : struct pari_mt pt;
657 30 : check_callgen1(C, "parselect");
658 30 : if (!is_vec_t(typ(D))) pari_err_TYPE("parselect",D);
659 30 : V = cgetg(l, t_VECSMALL); av = avma;
660 30 : mt_queue_start_lim(&pt, C, l-1);
661 30 : av2 = avma;
662 30204 : for (i=1; i<l || pending; i++)
663 : {
664 30174 : mt_queue_submit(&pt, i, i<l? mkvec(gel(D,i)): NULL);
665 30174 : done = mt_queue_get(&pt, &workid, &pending);
666 30174 : if (done) V[workid] = !gequal0(done);
667 30174 : set_avma(av2);
668 : }
669 30 : mt_queue_end(&pt);
670 30 : set_avma(av);
671 30054 : for (lv=1, i=1; i<l; i++)
672 30024 : if (V[i]) V[lv++]=i;
673 30 : fixlg(V, lv);
674 30 : return flag? V: extract_copy(D, V);
675 : }
676 :
677 : GEN
678 0 : veccatapply(void *E, GEN (*f)(void*, GEN), GEN x)
679 : {
680 0 : pari_sp av = avma;
681 0 : GEN v = vecapply(E, f, x);
682 0 : return lg(v) == 1? v: gerepilecopy(av, shallowconcat1(v));
683 : }
684 :
685 : static GEN
686 7 : ser_apply(void *E, GEN (*f)(void*, GEN), GEN x)
687 28 : { pari_APPLY_ser(f(E, gel(x,i))); }
688 : static GEN
689 7 : RgX_apply(void *E, GEN (*f)(void*, GEN), GEN x)
690 28 : { pari_APPLY_pol(f(E, gel(x,i))); }
691 : static GEN
692 185130 : RgV_apply(void *E, GEN (*f)(void*, GEN), GEN x)
693 1059639 : { pari_APPLY_same( f(E, gel(x,i)) ); }
694 : static GEN
695 42 : RgM_apply(void *E, GEN (*f)(void*, GEN), GEN x)
696 126 : { pari_APPLY_same( RgV_apply(E,f,gel(x,i)) ); }
697 :
698 : static GEN
699 63 : map_apply_i(void *E, GEN (*f)(void*, GEN), GEN x)
700 63 : { retmkvec2(mkvec2(gcopy(gmael(x,1,1)), f(E, gmael(x,1,2))),
701 : gcopy(gel(x, 2))); }
702 : static GEN
703 21 : map_apply(void *E, GEN (*f)(void* E, GEN x), GEN x)
704 84 : { pari_APPLY_same(map_apply_i(E, f, gel(x,i))); }
705 :
706 : /* as genapply, but treat A [ t_VEC,t_COL, or t_MAT] as a t_VEC */
707 : GEN
708 132269 : vecapply(void *E, GEN (*f)(void* E, GEN x), GEN x)
709 : {
710 : GEN y;
711 132269 : clone_lock(x); y = RgV_apply(E,f,x);
712 132269 : clone_unlock_deep(x); settyp(y, t_VEC); return y;
713 : }
714 : GEN
715 52861 : genapply(void *E, GEN (*f)(void* E, GEN x), GEN x)
716 : {
717 52861 : long tx = typ(x);
718 : GEN y, z;
719 :
720 52861 : if (is_scalar_t(tx)) return f(E, x);
721 52861 : clone_lock(x);
722 52861 : switch(tx) {
723 7 : case t_POL: y = RgX_apply(E,f,x); break;
724 7 : case t_SER:
725 7 : y = ser_isexactzero(x)? gcopy(x): ser_apply(E,f,x);
726 7 : break;
727 42 : case t_LIST:
728 : {
729 42 : long t = list_typ(x);
730 42 : z = list_data(x);
731 42 : if (!z)
732 7 : y = mklist_typ(t);
733 : else
734 : {
735 35 : y = cgetg(3, t_LIST);
736 35 : y[1] = evaltyp(t)|_evallg(lg(z)-1);
737 : switch(t)
738 : {
739 14 : case t_LIST_RAW: list_data(y) = RgV_apply(E,f,z); break;
740 21 : case t_LIST_MAP: list_data(y) = map_apply(E,f,z); break;
741 : }
742 : }
743 : }
744 42 : break;
745 42 : case t_MAT: y = RgM_apply(E, f, x); break;
746 52763 : case t_VEC: case t_COL: y = RgV_apply(E,f,x); break;
747 0 : default:
748 0 : pari_err_TYPE("apply",x);
749 : return NULL;/*LCOV_EXCL_LINE*/
750 : }
751 52861 : clone_unlock_deep(x); return y;
752 : }
753 :
754 : GEN
755 52861 : apply0(GEN f, GEN x)
756 : {
757 52861 : check_callgen1(f, "apply");
758 52861 : return genapply((void *) f, gp_call, x);
759 : }
760 :
761 : GEN
762 448 : vecselapply(void *Epred, long (*pred)(void* E, GEN x), void *Efun,
763 : GEN (*fun)(void* E, GEN x), GEN A)
764 : {
765 : GEN y;
766 448 : long i, l = lg(A), nb=1;
767 448 : clone_lock(A); y = cgetg(l, t_VEC);
768 26165475 : for (i=1; i<l; i++)
769 26165027 : if (pred(Epred, gel(A,i))) gel(y,nb++) = fun(Efun, gel(A,i));
770 448 : fixlg(y,nb); clone_unlock_deep(A); return y;
771 : }
772 :
773 : GEN
774 0 : veccatselapply(void *Epred, long (*pred)(void* E, GEN x), void *Efun,
775 : GEN (*fun)(void* E, GEN x), GEN A)
776 : {
777 0 : pari_sp av = avma;
778 0 : GEN v = vecselapply(Epred, pred, Efun, fun, A);
779 0 : return lg(v) == 1? v: gerepilecopy(av, shallowconcat1(v));
780 : }
781 :
782 : /* suitable for gerepileupto */
783 : GEN
784 44 : parapply_slice_worker(GEN x, GEN worker)
785 17521 : { pari_APPLY_same(closure_callgen1(worker, gel(x,i))); }
786 :
787 : /* B <- {A[i] : i = r (mod m)}, 1 <= r <= m */
788 : static void
789 74491 : arithprogset(GEN B, GEN A, long r, long m)
790 : {
791 74491 : long i, k, l = lg(A);
792 174099 : for (k = 1, i = r; i < l; i += m, k++) gel(B, k) = gel(A, i);
793 74491 : setlg(B, k);
794 74491 : }
795 : GEN
796 7343 : gen_parapply_slice(GEN worker, GEN D, long mmin)
797 : {
798 7343 : long l, r, n = lg(D)-1, m = minss(mmin, n), pending = 0;
799 7343 : GEN L = cgetg(n / m + 2, t_VEC), va = mkvec(L), V = cgetg_copy(D, &l);
800 : struct pari_mt pt;
801 7343 : mt_queue_start_lim(&pt, worker, m);
802 148982 : for (r = 1; r <= m || pending; r++)
803 : {
804 : long workid;
805 : GEN done;
806 141639 : if (r <= m) arithprogset(L, D, r, m);
807 141639 : mt_queue_submit(&pt, r, r <= m? va: NULL);
808 141639 : done = mt_queue_get(&pt, &workid, &pending);
809 141639 : if (done)
810 : {
811 74491 : long j, k, J = lg(done)-1;
812 174099 : for (j = 1, k = workid; j <= J; j++, k +=m) gel(V, k) = gel(done, j);
813 : }
814 : }
815 7343 : mt_queue_end(&pt); return V;
816 : }
817 :
818 : GEN
819 375006 : gen_parapply_percent(GEN worker, GEN D, long percent)
820 : {
821 375006 : long l = lg(D), i, pending = 0, cnt = 0, lper = -1, lcnt = 0;
822 : GEN W, V;
823 : struct pari_mt pt;
824 :
825 375006 : if (l == 1) return cgetg(1, typ(D));
826 344529 : W = cgetg(2, t_VEC);
827 344527 : V = cgetg(l, typ(D));
828 344524 : mt_queue_start_lim(&pt, worker, l-1);
829 2639721 : for (i = 1; i < l || pending; i++)
830 : {
831 : long workid;
832 : GEN done;
833 2295195 : if (i < l) gel(W,1) = gel(D,i);
834 2295195 : mt_queue_submit(&pt, i, i<l? W: NULL);
835 2295143 : done = mt_queue_get(&pt, &workid, &pending);
836 2295127 : if (done)
837 : {
838 2240940 : gel(V,workid) = done;
839 2240940 : if (percent && (++cnt)-lcnt>=percent)
840 : {
841 0 : long per = (long)(cnt*100./(l-1));
842 0 : lcnt = cnt;
843 0 : if (per > lper) { err_printf("%ld%% ",per); lper = per; }
844 : }
845 : }
846 : }
847 344526 : mt_queue_end(&pt); return V;
848 : }
849 :
850 : GEN
851 372101 : gen_parapply(GEN worker, GEN D)
852 372101 : { return gen_parapply_percent(worker, D, 0); }
853 :
854 : GEN
855 1744 : parapply(GEN C, GEN D)
856 : {
857 1744 : pari_sp av = avma;
858 1744 : check_callgen1(C, "parapply");
859 1744 : if (!is_vec_t(typ(D))) pari_err_TYPE("parapply",D);
860 1744 : return gerepileupto(av, gen_parapply(C, D));
861 : }
862 :
863 : GEN
864 28 : genfold(void *E, GEN (*f)(void* E, GEN x, GEN y), GEN x)
865 : {
866 28 : pari_sp av = avma;
867 : GEN z;
868 28 : long i, l = lg(x);
869 28 : if (!is_vec_t(typ(x))|| l==1 ) pari_err_TYPE("fold",x);
870 28 : clone_lock(x);
871 28 : z = gel(x,1);
872 119 : for (i=2; i<l; i++)
873 : {
874 91 : z = f(E,z,gel(x,i));
875 91 : if (gc_needed(av, 2))
876 : {
877 0 : if (DEBUGMEM>1) pari_warn(warnmem,"fold");
878 0 : z = gerepilecopy(av, z);
879 : }
880 : }
881 28 : clone_unlock_deep(x);
882 28 : return gerepilecopy(av, z);
883 : }
884 :
885 : GEN
886 28 : fold0(GEN f, GEN x)
887 : {
888 28 : if (typ(f) != t_CLOSURE || closure_arity(f) < 2) pari_err_TYPE("fold",f);
889 28 : return genfold((void *) f, gp_call2, x);
890 : }
891 : /*******************************************************************/
892 : /* */
893 : /* SCALAR-MATRIX OPERATIONS */
894 : /* */
895 : /*******************************************************************/
896 : GEN
897 368668 : gtomat(GEN x)
898 : {
899 : long lx, i;
900 : GEN y;
901 :
902 368668 : if (!x) return cgetg(1, t_MAT);
903 368619 : switch(typ(x))
904 : {
905 28 : case t_LIST:
906 28 : if (list_typ(x)==t_LIST_MAP)
907 14 : return maptomat(x);
908 14 : x = list_data(x);
909 14 : if (!x) return cgetg(1, t_MAT);
910 : /* fall through */
911 : case t_VEC: {
912 6737 : lx=lg(x); y=cgetg(lx,t_MAT);
913 6741 : if (lx == 1) break;
914 6741 : if (typ(gel(x,1)) == t_COL) {
915 4424 : long h = lgcols(x);
916 160223 : for (i=2; i<lx; i++) {
917 155799 : if (typ(gel(x,i)) != t_COL || lg(gel(x,i)) != h) break;
918 : }
919 4424 : if (i == lx) { /* matrix with h-1 rows */
920 4424 : y = cgetg(lx, t_MAT);
921 164647 : for (i=1 ; i<lx; i++) gel(y,i) = gcopy(gel(x,i));
922 4424 : return y;
923 : }
924 : }
925 6944 : for (i=1; i<lx; i++) gel(y,i) = mkcolcopy(gel(x,i));
926 2317 : break;
927 : }
928 120135 : case t_COL:
929 120135 : lx = lg(x);
930 120135 : if (lx == 1) return cgetg(1, t_MAT);
931 120121 : if (typ(gel(x,1)) == t_VEC) {
932 7 : long j, h = lg(gel(x,1));
933 14 : for (i=2; i<lx; i++) {
934 7 : if (typ(gel(x,i)) != t_VEC || lg(gel(x,i)) != h) break;
935 : }
936 7 : if (i == lx) { /* matrix with h cols */
937 7 : y = cgetg(h, t_MAT);
938 28 : for (j=1 ; j<h; j++) {
939 21 : gel(y,j) = cgetg(lx, t_COL);
940 63 : for (i=1; i<lx; i++) gcoeff(y,i,j) = gcopy(gmael(x,i,j));
941 : }
942 7 : return y;
943 : }
944 : }
945 120114 : y = mkmatcopy(x); break;
946 240767 : case t_MAT:
947 240767 : y = gcopy(x); break;
948 7 : case t_QFB: {
949 : GEN b;
950 7 : y = cgetg(3,t_MAT); b = gmul2n(gel(x,2),-1);
951 7 : gel(y,1) = mkcol2(icopy(gel(x,1)), b);
952 7 : gel(y,2) = mkcol2(b, icopy(gel(x,3)));
953 7 : break;
954 : }
955 952 : default:
956 952 : y = cgetg(2,t_MAT); gel(y,1) = mkcolcopy(x);
957 952 : break;
958 : }
959 364167 : return y;
960 : }
961 :
962 : /* create the diagonal matrix, whose diagonal is given by x */
963 : GEN
964 1336536 : diagonal(GEN x)
965 : {
966 1336536 : long j, lx, tx = typ(x);
967 : GEN y;
968 :
969 1336536 : if (! is_matvec_t(tx)) return scalarmat(x,1);
970 1336529 : if (tx==t_MAT)
971 : {
972 14 : if (RgM_isdiagonal(x)) return gcopy(x);
973 7 : pari_err_TYPE("diagonal",x);
974 : }
975 1336515 : lx=lg(x); y=cgetg(lx,t_MAT);
976 4769117 : for (j=1; j<lx; j++)
977 : {
978 3432602 : gel(y,j) = zerocol(lx-1);
979 3432601 : gcoeff(y,j,j) = gcopy(gel(x,j));
980 : }
981 1336515 : return y;
982 : }
983 : /* same, assuming x is a t_VEC/t_COL. Not memory clean. */
984 : GEN
985 350701 : diagonal_shallow(GEN x)
986 : {
987 350701 : long j, lx = lg(x);
988 350701 : GEN y = cgetg(lx,t_MAT);
989 :
990 963462 : for (j=1; j<lx; j++)
991 : {
992 612726 : gel(y,j) = zerocol(lx-1);
993 612740 : gcoeff(y,j,j) = gel(x,j);
994 : }
995 350736 : return y;
996 : }
997 :
998 : GEN
999 448 : zv_diagonal(GEN x)
1000 : {
1001 448 : long j, l = lg(x), n = l-1;
1002 448 : GEN y = cgetg(l,t_MAT);
1003 :
1004 1428 : for (j = 1; j < l; j++)
1005 : {
1006 980 : gel(y,j) = zero_Flv(n);
1007 980 : ucoeff(y,j,j) = uel(x,j);
1008 : }
1009 448 : return y;
1010 : }
1011 :
1012 : /* compute x*diagonal(d) */
1013 : GEN
1014 70 : matmuldiagonal(GEN x, GEN d)
1015 : {
1016 70 : if (typ(x)!=t_MAT) pari_err_TYPE("matmuldiagonal",x);
1017 70 : if (! is_vec_t(typ(d))) pari_err_TYPE("matmuldiagonal",d);
1018 70 : if (lg(d) != lg(x)) pari_err_OP("operation 'matmuldiagonal'", x,d);
1019 350 : pari_APPLY_same(RgC_Rg_mul(gel(x,i), gel(d,i)));
1020 : }
1021 :
1022 : /* compute A*B assuming the result is a diagonal matrix */
1023 : GEN
1024 7 : matmultodiagonal(GEN A, GEN B)
1025 : {
1026 7 : long i, j, hA, hB, lA = lg(A), lB = lg(B);
1027 7 : GEN y = matid(lB-1);
1028 :
1029 7 : if (typ(A) != t_MAT) pari_err_TYPE("matmultodiagonal",A);
1030 7 : if (typ(B) != t_MAT) pari_err_TYPE("matmultodiagonal",B);
1031 7 : hA = (lA == 1)? lB: lgcols(A);
1032 7 : hB = (lB == 1)? lA: lgcols(B);
1033 7 : if (lA != hB || lB != hA) pari_err_OP("operation 'matmultodiagonal'", A,B);
1034 56 : for (i=1; i<lB; i++)
1035 : {
1036 49 : GEN z = gen_0;
1037 392 : for (j=1; j<lA; j++) z = gadd(z, gmul(gcoeff(A,i,j),gcoeff(B,j,i)));
1038 49 : gcoeff(y,i,i) = z;
1039 : }
1040 7 : return y;
1041 : }
1042 :
1043 : /* [m[1,1], ..., m[l,l]], internal */
1044 : GEN
1045 886521 : RgM_diagonal_shallow(GEN m)
1046 : {
1047 886521 : long i, lx = lg(m);
1048 886521 : GEN y = cgetg(lx,t_VEC);
1049 2912335 : for (i=1; i<lx; i++) gel(y, i) = gcoeff(m,i,i);
1050 886539 : return y;
1051 : }
1052 :
1053 : /* same, public function */
1054 : GEN
1055 0 : RgM_diagonal(GEN m)
1056 : {
1057 0 : long i, lx = lg(m);
1058 0 : GEN y = cgetg(lx,t_VEC);
1059 0 : for (i=1; i<lx; i++) gel(y,i) = gcopy(gcoeff(m,i,i));
1060 0 : return y;
1061 : }
|