[BACK]Return to ca.h CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2018 / include

Annotation of OpenXM_contrib2/asir2018/include/ca.h, Revision 1.13

1.1       noro        1: /*
                      2:  * Copyright (c) 1994-2000 FUJITSU LABORATORIES LIMITED
                      3:  * All rights reserved.
                      4:  *
                      5:  * FUJITSU LABORATORIES LIMITED ("FLL") hereby grants you a limited,
                      6:  * non-exclusive and royalty-free license to use, copy, modify and
                      7:  * redistribute, solely for non-commercial and non-profit purposes, the
                      8:  * computer program, "Risa/Asir" ("SOFTWARE"), subject to the terms and
                      9:  * conditions of this Agreement. For the avoidance of doubt, you acquire
                     10:  * only a limited right to use the SOFTWARE hereunder, and FLL or any
                     11:  * third party developer retains all rights, including but not limited to
                     12:  * copyrights, in and to the SOFTWARE.
                     13:  *
                     14:  * (1) FLL does not grant you a license in any way for commercial
                     15:  * purposes. You may use the SOFTWARE only for non-commercial and
                     16:  * non-profit purposes only, such as academic, research and internal
                     17:  * business use.
                     18:  * (2) The SOFTWARE is protected by the Copyright Law of Japan and
                     19:  * international copyright treaties. If you make copies of the SOFTWARE,
                     20:  * with or without modification, as permitted hereunder, you shall affix
                     21:  * to all such copies of the SOFTWARE the above copyright notice.
                     22:  * (3) An explicit reference to this SOFTWARE and its copyright owner
                     23:  * shall be made on your publication or presentation in any form of the
                     24:  * results obtained by use of the SOFTWARE.
                     25:  * (4) In the event that you modify the SOFTWARE, you shall notify FLL by
                     26:  * e-mail at risa-admin@sec.flab.fujitsu.co.jp of the detailed specification
                     27:  * for such modification or the source code of the modified part of the
                     28:  * SOFTWARE.
                     29:  *
                     30:  * THE SOFTWARE IS PROVIDED AS IS WITHOUT ANY WARRANTY OF ANY KIND. FLL
                     31:  * MAKES ABSOLUTELY NO WARRANTIES, EXPRESSED, IMPLIED OR STATUTORY, AND
                     32:  * EXPRESSLY DISCLAIMS ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS
                     33:  * FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT OF THIRD PARTIES'
                     34:  * RIGHTS. NO FLL DEALER, AGENT, EMPLOYEES IS AUTHORIZED TO MAKE ANY
                     35:  * MODIFICATIONS, EXTENSIONS, OR ADDITIONS TO THIS WARRANTY.
                     36:  * UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, TORT, CONTRACT,
                     37:  * OR OTHERWISE, SHALL FLL BE LIABLE TO YOU OR ANY OTHER PERSON FOR ANY
                     38:  * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, PUNITIVE OR CONSEQUENTIAL
                     39:  * DAMAGES OF ANY CHARACTER, INCLUDING, WITHOUT LIMITATION, DAMAGES
                     40:  * ARISING OUT OF OR RELATING TO THE SOFTWARE OR THIS AGREEMENT, DAMAGES
                     41:  * FOR LOSS OF GOODWILL, WORK STOPPAGE, OR LOSS OF DATA, OR FOR ANY
                     42:  * DAMAGES, EVEN IF FLL SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF
                     43:  * SUCH DAMAGES, OR FOR ANY CLAIM BY ANY OTHER PARTY. EVEN IF A PART
                     44:  * OF THE SOFTWARE HAS BEEN DEVELOPED BY A THIRD PARTY, THE THIRD PARTY
                     45:  * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,
                     46:  * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.
                     47:  *
1.13    ! noro       48:  * $OpenXM: OpenXM_contrib2/asir2018/include/ca.h,v 1.12 2019/11/12 07:47:45 noro Exp $
1.1       noro       49: */
                     50: #include <stdio.h>
                     51: #include <stdlib.h>
                     52: #include <gmp.h>
                     53: #include <mpc.h>
                     54: #include <limits.h>
                     55:
                     56: /* from mpfr-impl.h */
                     57: #define MPFR_PREC(x)      ((x)->_mpfr_prec)
                     58: #define MPFR_EXP(x)       ((x)->_mpfr_exp)
                     59: #define MPFR_MANT(x)      ((x)->_mpfr_d)
                     60: #define MPFR_LAST_LIMB(x) ((MPFR_PREC (x) - 1) / GMP_NUMB_BITS)
                     61: #define MPFR_LIMB_SIZE(x) (MPFR_LAST_LIMB (x) + 1)
                     62:
                     63: #define RAT_CEIL(nm,dn) (((nm)+(dn)-1)/((dn)))
                     64: #define MPFR_LIMB_SIZE_REAL(x) (RAT_CEIL(MPFR_PREC((x)),sizeof(mp_limb_t)*CHAR_BIT) * (sizeof(mp_limb_t)/sizeof(int)) )
                     65: #define MPFR_LIMB_SIZE_BODY(x) (RAT_CEIL(MPFR_PREC((x)),sizeof(unsigned int)*CHAR_BIT))
                     66:
                     67: #if defined(hpux)
                     68: #include <netinet/in.h>
                     69: # define setbuffer(FP,buf,siz) setvbuf(FP,buf,_IOFBF,siz)
                     70: #endif
                     71:
                     72: #if !defined(VISUAL) && !defined(__MINGW32__)
                     73: #include <unistd.h>
                     74: #include <sys/param.h>
                     75: #endif
                     76:
                     77: #if defined(linux) || (defined(sun) && !defined(SYSV)) || defined(news5000) || (defined(mips) && defined(ultrix))
                     78: #include <alloca.h>
                     79: #endif
                     80:
                     81: #if (defined(sun) && defined(SYSV))
                     82: #define alloca(x) __builtin_alloca(x)
                     83: #endif
                     84:
                     85: #if defined(VISUAL) || defined(__MINGW32__)
                     86: #include <limits.h>
                     87: #include <malloc.h>
                     88: #endif
                     89:
                     90: #if 0
                     91: #include <sys/types.h>
                     92: typedef caddr_t pointer;
                     93: #endif
                     94:
                     95:
                     96: typedef void * pointer;
                     97:
                     98: #if defined(sun)
                     99: #include <strings.h>
                    100: #else
                    101: #include <string.h>
                    102: #if defined(VISUAL) || defined(__MINGW32__)
                    103: #define index(s,c) strchr(s,c)
                    104: #define bzero(s,len) memset(s,0,len)
                    105: #define bcopy(x,y,len) memcpy(y,x,len)
                    106: #endif
                    107: #endif
                    108:
                    109: #define NULLP ((void *)0)
                    110:
                    111: #define TODO    printf("%s: not implemented!\n", __func__)
                    112:
                    113: #define COPY(a,b) ((b)=(a))
                    114: #define FREEN(p)
                    115: #define FREEQ(p)
                    116: #define FREE(p)
                    117: #define INITRC(p)
                    118:
                    119: /* data structures */
                    120:
                    121: #define O_N 1
                    122: #define O_P 2
                    123: #define O_R 3
                    124: #define O_LIST 4
                    125: #define O_VECT 5
                    126: #define O_MAT 6
                    127: #define O_STR 7
                    128: #define O_COMP 8
                    129: #define O_DP 9
                    130: #define O_USINT 10
                    131: #define O_ERR 11
                    132: #define O_GF2MAT 12
                    133: #define O_MATHCAP 13
                    134: #define O_F 14
                    135: #define O_GFMMAT 15
                    136: #define O_BYTEARRAY 16
                    137: #define O_QUOTE 17
                    138: #define O_OPTLIST 18
                    139: #define O_SYMBOL 19
                    140: #define O_RANGE 20
                    141: #define O_TB 21
                    142: #define O_DPV 22
                    143: #define O_QUOTEARG 23
                    144: #define O_VOID -1
                    145: /* IMAT */
                    146: #define O_IMAT 24
                    147: /* IMAT */
                    148: #define O_NBP 25
                    149: #define O_DPM 26
                    150:
                    151: #define N_Q 0
                    152: #define N_R 1
                    153: #define N_A 2
                    154: #define N_B 3
                    155: #define N_NEXT_B    (N_B)
                    156: #if defined(INTERVAL)
                    157: #define N_Quad  (N_NEXT_B+1)
                    158: #define  N_IP  (N_NEXT_B+2)
                    159: #define N_IntervalDouble  (N_NEXT_B+3)
                    160: #define N_IntervalQuad  (N_NEXT_B+4)
                    161: #define N_IntervalBigFloat  (N_NEXT_B+5)
                    162: #define N_PRE_C  N_IntervalBigFloat
                    163: #define N_BASE (N_NEXT_B+5)
                    164: #else
                    165: #define N_BASE N_NEXT_B
                    166: #endif
                    167: #define N_C (N_BASE+1)
                    168: #define N_M (N_BASE+2)
                    169: #define N_LM (N_BASE+3)
                    170: #define N_GF2N (N_BASE+4)
                    171: #define N_GFPN (N_BASE+5)
                    172: #define N_GFS (N_BASE+6)
                    173: #define N_GFSN (N_BASE+7)
                    174: #define N_DA (N_BASE+8)
                    175: #define N_PARIB (N_BASE+11)
                    176:
                    177: #define G_Z 0
                    178: #define G_Q 1
                    179:
                    180: #define ORD_REVGRADLEX 0
                    181: #define ORD_GRADLEX 1
                    182: #define ORD_LEX 2
                    183:
                    184: typedef enum {
                    185:   A_end=0,A_fnode,A_arf,A_int,A_str,A_internal,A_node,A_notimpl,A_func
                    186: } farg_type;
                    187:
                    188: #if SIZEOF_LONG == 8
                    189: typedef long L;
                    190: typedef unsigned long UL;
                    191: #elif defined(HAVE_UNSIGNED_LONG_LONG)
                    192: typedef long long L;
                    193: typedef unsigned long long UL;
                    194: #elif defined(_MSC_VER)
                    195: typedef _int64 L;
                    196: typedef unsigned _int64 UL;
                    197: #endif
                    198:
                    199: #if defined(__GNUC__) && SIZEOF_LONG == 8
                    200: typedef __uint128_t U128;
                    201: typedef __int64_t L64;
                    202: typedef __int128_t L128;
1.5       noro      203:
1.1       noro      204: #endif
                    205:
                    206: typedef struct oZ {
                    207:   short id;
                    208:   char nid;
                    209:   char z;
                    210:   mpz_t body;
                    211: } *Z;
                    212:
                    213: typedef struct oQ {
                    214:   short id;
                    215:   char nid;
                    216:   char z;
                    217:   mpq_t body;
                    218: } *Q;
                    219:
                    220: typedef struct oLM {
                    221:   short id;
                    222:   char nid;
                    223:   char pad;
                    224:   mpz_t body;
                    225: } *LM;
                    226:
                    227: typedef struct oUP2 {
                    228:   int w;
                    229:   unsigned int b[1];
                    230: } *UP2;
                    231:
                    232: typedef struct _oUP2 {
                    233:   int w;
                    234:   unsigned int *b;
                    235: } *_UP2;
                    236:
                    237: #define UP2_DENSE 0
                    238: #define UP2_SPARSE 1
                    239:
                    240: typedef struct oGEN_UP2 {
                    241:   int id;
                    242:   UP2 dense;
                    243:   UP2 sparse;
                    244: } *GEN_UP2;
                    245:
                    246: typedef struct oV {
                    247:   char *name;
                    248:   pointer attr;
                    249:   pointer priv;
                    250: } *V;
                    251:
                    252: typedef struct oReal {
                    253:   short id;
                    254:   char nid;
                    255:   char pad;
                    256:   double body;
                    257: } *Real;
                    258:
                    259: typedef struct oAlg {
                    260:   short id;
                    261:   char nid;
                    262:   char pad;
                    263:   struct oObj *body;
                    264: } *Alg;
                    265:
                    266: typedef struct oBF {
                    267:   short id;
                    268:   char nid;
                    269:   char pad;
                    270:   mpfr_t body;
                    271: } *BF;
                    272:
                    273: typedef struct oC {
                    274:   short id;
                    275:   char nid;
                    276:   char pad;
                    277:   struct oNum *r,*i;
                    278: } *C;
                    279:
                    280: typedef struct oGF2N {
                    281:   short id;
                    282:   char nid;
                    283:   char pad;
                    284:   struct oUP2 *body;
                    285: } *GF2N;
                    286:
                    287: typedef struct oGFPN {
                    288:   short id;
                    289:   char nid;
                    290:   char pad;
                    291:   struct oUP *body;
                    292: } *GFPN;
                    293:
                    294: typedef struct oDAlg {
                    295:   short id;
                    296:   char nid;
                    297:   char pad;
                    298:   struct oDP *nm;
                    299:   struct oZ *dn;
                    300: } *DAlg;
                    301:
                    302: typedef struct oNum {
                    303:   short id;
                    304:   char nid;
                    305:   char pad;
                    306: } *Num;
                    307:
                    308: typedef struct oMQ {
                    309:   short id;
                    310:   char nid;
                    311:   char pad;
                    312:   int cont;
                    313: } *MQ;
                    314:
                    315: typedef struct oGFS {
                    316:   short id;
                    317:   char nid;
                    318:   char pad;
                    319:   int cont;
                    320: } *GFS;
                    321:
                    322: typedef struct oGFSN {
                    323:   short id;
                    324:   char nid;
                    325:   char pad;
                    326:   struct oUM *body;
                    327: } *GFSN;
                    328:
                    329: typedef struct oP {
                    330:   short id;
                    331:   short pad;
                    332:   V v;
                    333:   struct oDCP *dc;
                    334: } *P;
                    335:
                    336: typedef struct oR {
                    337:   short id;
                    338:   short reduced;
                    339:   P nm;
                    340:   P dn;
                    341: } *R;
                    342:
                    343: typedef struct oVECT {
                    344:   short id;
                    345:   short pad;
                    346:   int len;
                    347:   pointer *body;
                    348: } *VECT;
                    349:
                    350: typedef struct oMAT {
                    351:   short id;
                    352:   short pad;
                    353:   int row,col;
                    354:   pointer **body;
                    355: } *MAT;
                    356:
                    357: typedef struct oGF2MAT {
                    358:   short id;
                    359:   short pad;
                    360:   int row,col;
                    361:   unsigned int **body;
                    362: } *GF2MAT, *GFMMAT;
                    363:
                    364: /* IMAT */
                    365: #define IMATCH 64
                    366:
                    367: typedef struct oIENT {
                    368:   int cr;
                    369:   int row, col;
                    370:   pointer *body;
                    371: } IENT;
                    372:
                    373: typedef struct oIMATC {
                    374:   pointer *fore;
                    375:   pointer *next;
                    376:   IENT ient[IMATCH];
                    377: } *IMATC;
                    378:
                    379: typedef struct oIMAT {
                    380:   short id;
                    381:   int row, col, clen;
                    382:   pointer *root;
                    383:   pointer *toor;
                    384: } *IMAT;
                    385: /* IMAT */
                    386: typedef struct oLIST {
                    387:   short id;
                    388:   short pad;
                    389:   struct oNODE *body;
                    390: } *LIST;
                    391:
                    392: typedef struct oSTRING {
                    393:   short id;
                    394:   short pad;
                    395:   char *body;
                    396: } *STRING;
                    397:
                    398: typedef struct oCOMP {
                    399:   short id;
                    400:   short type;
                    401:   struct oObj *member[1];
                    402: } *COMP;
                    403:
                    404: typedef struct oDP {
                    405:   short id;
                    406:   short nv;
                    407:   int sugar;
                    408:   struct oMP *body;
                    409: } *DP;
                    410:
                    411: typedef struct oDPV {
                    412:   short id;
                    413:   int len;
                    414:   int sugar;
                    415:   struct oDP **body;
                    416: } *DPV;
                    417:
                    418:
                    419: typedef struct oUSINT {
                    420:   short id;
                    421:   short pad;
                    422:   unsigned int body;
                    423: } *USINT;
                    424:
                    425: typedef struct oERR {
                    426:   short id;
                    427:   short pad;
                    428:   struct oObj *body;
                    429: } *ERR;
                    430:
                    431: typedef struct oMATHCAP {
                    432:   short id;
                    433:   short pad;
                    434:   struct oLIST *body;
                    435: } *MATHCAP;
                    436:
                    437: typedef struct oBYTEARRAY {
                    438:   short id;
                    439:   short pad;
                    440:   int len;
                    441:   unsigned char *body;
                    442: } *BYTEARRAY;
                    443:
                    444: typedef struct oQUOTE {
                    445:   short id;
                    446:   short pad;
                    447:   pointer body;
                    448: } *QUOTE;
                    449:
                    450: typedef struct oQUOTEARG {
                    451:   short id;
                    452:   short pad;
                    453:   farg_type type;
                    454:   pointer body;
                    455: } *QUOTEARG;
                    456:
                    457: typedef struct oOPTLIST {
                    458:   short id;
                    459:   short pad;
                    460:   struct oNODE *body;
                    461: } *OPTLIST;
                    462:
                    463: typedef struct oSYMBOL {
                    464:   short id;
                    465:   short pad;
                    466:   char *name;
                    467:   int value;
                    468: } *SYMBOL;
                    469:
                    470: typedef struct oRANGE {
                    471:   short id;
                    472:   short pad;
                    473:   struct oObj *start,*end;
                    474: } *RANGE;
                    475:
                    476: typedef struct oTB {
                    477:   short id;
                    478:   short pad;
                    479:   int size,next;
                    480:   char **body;
                    481: } *TB;
                    482:
                    483: typedef struct oNBP {
                    484:   short id;
                    485:   short pad;
                    486:   struct oNODE *body;
                    487: } *NBP;
                    488:
                    489: /* non-commutative bivariate monomial */
                    490:
                    491: typedef struct oNBM {
                    492:   int d;
                    493:   P c;
                    494:   unsigned int *b;
                    495: } *NBM;
                    496:
                    497: #define NEWNBM(p) ((p)=(NBM)MALLOC(sizeof(struct oNBM)))
                    498: #define NEWNBMBDY(p,d) \
                    499: ((p)->b=(unsigned int *)MALLOC((((d)+31)/32)*sizeof(unsigned int)))
                    500: #define NEWNBP(p) ((p)=(NBP)MALLOC(sizeof(struct oNBP)),OID(p)=O_NBP)
                    501: #define MKNBP(p,b) (NEWNBP(p),BDY(p)=(b))
                    502:
                    503: #define NBM_GET(a,j) (((a)[(j)>>5]&(1<<((j)&31)))?1:0)
                    504: #define NBM_SET(a,j) ((a)[(j)>>5]|=(1<<((j)&31)))
                    505: #define NBM_CLR(a,j) ((a)[(j)>>5]&=(~(1<<((j)&31))))
                    506:
                    507: typedef struct oObj {
                    508:   short id;
                    509:   short pad;
                    510: } *Obj;
                    511:
                    512: typedef struct oDCP {
                    513:   Z d;
                    514:   P c;
                    515:   struct oDCP *next;
                    516: } *DCP;
                    517:
                    518: typedef struct oMP {
                    519:   struct oDL *dl;
                    520:   Obj c;
                    521:   struct oMP *next;
                    522: } *MP;
                    523:
                    524: typedef struct oDPM {
                    525:   short id;
                    526:   short nv;
                    527:   int sugar;
                    528:   struct oDMM *body;
                    529: } *DPM;
                    530:
                    531: typedef struct oDMM {
                    532:   int pos;
                    533:   struct oDL *dl;
                    534:   Obj c;
                    535:   struct oDMM *next;
                    536: } *DMM;
                    537:
1.9       noro      538: typedef struct oDMMstack {
                    539:   int rank,ordtype;
                    540:   DMM *in;
1.13    ! noro      541:   DMM *sum;
1.11      noro      542:   LIST obj;
1.9       noro      543:   struct oDMMstack *next;
                    544: } *DMMstack;
                    545:
1.1       noro      546: typedef struct oDL {
                    547:   int td;
                    548:   int d[1];
                    549: } *DL;
                    550:
                    551: struct dp_pairs {
                    552:   int dp1, dp2;
                    553:   DL lcm;
                    554:   int sugar;
                    555:   struct dp_pairs *next;
                    556: };
                    557:
                    558: typedef struct dp_pairs *DP_pairs;
                    559:
                    560: struct p_pair {
                    561:   struct oUM *p0;
                    562:   struct oUM *p1;
                    563:   struct p_pair *next;
                    564: };
                    565:
                    566: struct oMF {
                    567:   int m;
                    568:   P f;
                    569: };
                    570:
                    571: /*
                    572:  * compressed DP
                    573:  */
                    574:
                    575: typedef struct oCDP {
                    576:   int len;
                    577:   long psindex;
                    578:   unsigned int *body;
                    579: } *CDP;
                    580:
                    581: typedef struct oCM {
                    582:   int index;
                    583:   int c;
                    584: } *CM;
                    585:
                    586: /* bucket list for DL */
                    587:
                    588: typedef struct oDLBUCKET {
                    589:   int td;
                    590:   struct oNODE *body;
                    591:   struct oDLBUCKET *next;
                    592: } *DLBUCKET;
                    593:
                    594: typedef struct oGeoBucket {
                    595:   int m;
                    596:   struct oNODE *body[32];
                    597: } *GeoBucket;
                    598:
                    599: typedef struct oVL {
                    600:   V v;
                    601:   struct oVL *next;
                    602: } *VL;
                    603:
                    604: typedef struct oNODE {
                    605:   pointer body;
                    606:   struct oNODE *next;
                    607: } *NODE;
                    608:
1.12      noro      609: typedef struct oNODE2 {
                    610:   pointer body1,body2;
                    611:   struct oNODE2 *next;
                    612: } *NODE2;
                    613:
1.1       noro      614: /* univariate poly over small finite field; dense */
                    615: typedef struct oUM {
                    616:   int d;
                    617:   int c[1];
                    618: } *UM;
                    619:
                    620: /* univariate poly with nadic coeff */
                    621: typedef struct oLUM {
                    622:   int d;
                    623:   int *c[1];
                    624: } *LUM;
                    625:
                    626: /* bivariate poly over small finite field; dense */
                    627:
                    628: typedef struct oBM {
                    629:   int d;
                    630:   UM c[1];
                    631: } *BM;
                    632:
                    633: typedef struct oML {
                    634:   int n;
                    635:   int mod;
                    636:   int bound;
                    637:   pointer c[1];
                    638: } *ML;
                    639:
                    640: typedef struct oUB {
                    641:   int d;
                    642:   Z c[1];
                    643: } *UB;
                    644:
                    645: typedef struct oVN {
                    646:   V v;
                    647:   int n;
                    648: } *VN;
                    649:
                    650: typedef struct oUP {
                    651:   int d;
                    652:   Num c[1];
                    653: } *UP;
                    654:
                    655: typedef struct oDUM {
                    656:   int n;
                    657:   UM f;
                    658: } *DUM;
                    659:
                    660: struct order_pair {
                    661:   int order, length;
                    662: };
                    663:
                    664: struct sparse_weight {
                    665:   int pos, value;
                    666: };
                    667:
                    668: #define IS_DENSE_WEIGHT 0
                    669: #define IS_SPARSE_WEIGHT 1
                    670: #define IS_BLOCK 2
                    671:
                    672: struct weight_or_block {
                    673:   int type;
                    674:   int length;
                    675:   union {
                    676:     int *dense_weight;
                    677:     struct sparse_weight *sparse_weight;
                    678:     struct {
                    679:       int order, start;
                    680:     } block;
                    681:   } body;
                    682: };
                    683:
                    684: struct order_spec {
                    685:   int id;
                    686:   Obj obj;
                    687:   int nv;
1.11      noro      688:   int module_ordtype; /* 0=TOP, 1=POT, 2=wPOT, 3=Schreyer */
1.1       noro      689:   int pot_nelim; /* size of positions for pot-elimination order */
                    690:   int *top_weight;
                    691:   int module_rank;
                    692:   int *module_top_weight;
1.11      noro      693:   struct order_spec *base; /* for schreyer order */
                    694:   DMMstack dmmstack;
1.1       noro      695:   union {
                    696:     int simple;
                    697:     struct {
                    698:       int length;
                    699:       struct order_pair *order_pair;
                    700:     } block;
                    701:     struct {
                    702:       int row;
                    703:       int **matrix;
                    704:     } matrix;
                    705:     struct {
                    706:       int length;
                    707:       struct weight_or_block *w_or_b;
                    708:     } composite;
                    709:   } ord;
                    710: };
                    711:
                    712: struct modorder_spec {
                    713:   /* id : ORD_REVGRADLEX, ORD_GRADLEX, ORD_LEX */
                    714:   int id;
                    715:   Obj obj;
                    716:   int len;
                    717:   int *degree_shift;
                    718: };
                    719:
                    720: typedef struct oNumberField {
                    721:   int n;
                    722:   int psn;
                    723:   int dim;
                    724:   VL vl;
                    725:   P *defpoly;
                    726:   DP *mb;
                    727:   DP *ps;
                    728:   struct oDAlg *one;
                    729:   NODE ind;
                    730:   struct order_spec *spec;
                    731: } *NumberField;
                    732:
                    733: /* structure for cputime */
                    734:
                    735: struct oEGT {
                    736:   double exectime,gctime;
                    737: };
                    738:
                    739: /* constant */
                    740:
                    741: /* ground finite field specification */
                    742: #define FF_NOT_SET 0
                    743: #define FF_GFP 1
                    744: #define FF_GF2N 2
                    745: #define FF_GFPN 3
                    746: #define FF_GFS 4
                    747: #define FF_GFSN 5
                    748:
                    749: /* include interval.h */
                    750: #include "interval.h"
                    751:
                    752: #define INDEX 100
                    753:
                    754: #if defined(USE_FLOAT)
                    755: typedef float ModNum;
                    756: #define NPrimes 536
                    757: #else
                    758: typedef unsigned int ModNum;
                    759: #define NPrimes 13681
                    760: #endif
                    761:
                    762: /* general macros */
                    763: #if defined(MAX)
                    764: #undef MAX
                    765: #endif
                    766: #if defined(MIN)
                    767: #undef MIN
                    768: #endif
                    769: #define MAX(a,b) ((a) > (b) ? (a) : (b) )
                    770: #define MIN(a,b) ((a) > (b) ? (b) : (a) )
                    771: #ifdef ABS
                    772: #undef ABS
                    773: #endif
                    774: #define ABS(a) ((a)>0?(a):-(a))
                    775: #define ID(p) ((p)->id)
                    776: #define OID(p) (((Obj)(p))->id)
                    777: #define NID(p) (((Num)(p))->nid)
                    778: #define BDY(p) ((p)->body)
                    779: #define VR(p) ((p)->v)
                    780: #define NAME(p) ((p)->name)
                    781: #define NEXT(p) ((p)->next)
                    782: #define NM(q) ((q)->nm)
                    783: #define DN(q) ((q)->dn)
                    784: #define SGN(q) ((q)->sgn)
                    785: #define DC(p) ((p)->dc)
                    786: #define COEF(p) ((p)->c)
                    787: #define DEG(p) ((p)->d)
                    788: #define CONT(a) ((a)->cont)
1.4       noro      789: #define UDEG(f) ZTOS(DEG(DC(f)))
1.1       noro      790: #define UCOEF(f) (COEF(DC(f)))
                    791: #define LC(f) (NUM(f)?(f):COEF(DC(f)))
                    792:
                    793: /* memory allocators (W_... : uses alloca) */
                    794:
                    795: #define MALLOC(d) Risa_GC_malloc(d)
                    796: #define MALLOC_ATOMIC(d) Risa_GC_malloc_atomic(d)
                    797: #define MALLOC_ATOMIC_IGNORE_OFF_PAGE(d) Risa_GC_malloc_atomic_ignore_off_page(d)
                    798: #define REALLOC(p,d) Risa_GC_realloc(p,d)
                    799: #define GCFREE(p) Risa_GC_free(p)
                    800: #define CALLOC(d,e) MALLOC((d)*(e))
                    801:
                    802: #if 0
                    803: #if !defined(__CYGWIN__) && (defined(__GNUC__) || defined(vax) || defined(apollo) || defined(alloca) || defined(VISUAL) || defined(__MINGW32__))
                    804: #define ALLOCA(d) alloca(d)
                    805: #else
                    806: #define ALLOCA(d) MALLOC(d)
                    807: #endif
                    808: #endif
                    809:
                    810: #define ALLOCA(d) MALLOC(d)
                    811:
                    812: /* for handling signals */
                    813: #if defined(HAVE_SIGACTION)  /* POSIX */
                    814: void (*set_signal(int sig, void (*handler)(int)))(int);
                    815: #define set_signal_for_restart(x,y) (0)
                    816: #else
                    817: #define set_signal(x,y)             (signal(x,y))
                    818: #define set_signal_for_restart(x,y) (signal(x,y))
                    819: #endif
                    820:
                    821: /* for setjmp/longjmp compatibility */
                    822: #if defined(__CYGWIN__) || defined(HAVE_SIGACTION) || (defined(__x86_64) && !defined(__MINGW32__))
                    823: #define JMP_BUF sigjmp_buf
                    824: #define SETJMP(x) sigsetjmp(x,~0)
                    825: #define LONGJMP(x,y) siglongjmp(x,y)
                    826: #else
                    827: #define JMP_BUF jmp_buf
                    828: #define SETJMP(x) setjmp(x)
                    829: #define LONGJMP(x,y) longjmp(x,y)
                    830: #endif
                    831:
                    832: #define TRUESIZE(type,n,atype) (sizeof(struct type)+MAX((n),0)*sizeof(atype))
                    833: #define UMALLOC(d) ((UM)MALLOC(TRUESIZE(oUM,d,int)))
                    834: #define UPALLOC(d) ((UP)MALLOC(TRUESIZE(oUP,(d),Num)))
                    835: #define C_UMALLOC(d) ((UM)MALLOC(TRUESIZE(oUM,d,int)))
                    836: #define MLALLOC(d) ((ML)MALLOC(TRUESIZE(oML,d,pointer)))
                    837:
                    838: #define W_ALLOC(d) ((int *)ALLOCA(((d)+1)*sizeof(int)))
                    839: #define W_CALLOC(n,type,p) \
                    840: ((p)=(type *)ALLOCA(((n)+1)*sizeof(type)),\
                    841: bzero((char *)(p),(int)(((n)+1)*sizeof(type))))
                    842: #define W_UMALLOC(d) ((UM)ALLOCA(TRUESIZE(oUM,d,int)))
                    843: #define W_UPALLOC(d) ((UP)ALLOCA(TRUESIZE(oUP,(d),Num)))
                    844: #define W_MLALLOC(d) ((ML)ALLOCA(TRUESIZE(oML,d,pointer)))
                    845: #define W_LUMALLOC(n,bound,p)\
                    846: {\
                    847:   LUM ___q___;\
                    848:   int ___i___,**___c___;\
                    849:   (___q___) = (LUM)ALLOCA(TRUESIZE(oLUM,(n),int *));\
                    850:   DEG(___q___) = n;\
                    851:   for ( ___i___ = 0, ___c___ = (int **)COEF(___q___); ___i___ <= n; ___i___++ ) {\
                    852:     ___c___[___i___] = (int *)ALLOCA(((bound)+1)*sizeof(int));\
                    853:     bzero((char *)___c___[___i___],((bound)+1)*sizeof(int));\
                    854:   }\
                    855:   (p) = ___q___;\
                    856: }
                    857:
                    858: #define W_BMALLOC(dx,dy,p)\
                    859: {\
                    860:   BM ___q___;\
                    861:   int ___i___;\
                    862:   UM *___c___;\
                    863:   (___q___) = (BM)ALLOCA(TRUESIZE(oBM,(dy),UM));\
                    864:   DEG(___q___) = dy;\
                    865:   ___c___ = (UM *)COEF(___q___);\
                    866:   for ( ___i___ = 0; ___i___ <= dy; ___i___++ ) {\
                    867:     ___c___[___i___] = W_UMALLOC(dx);\
                    868:     clearum(___c___[___i___],dx);\
                    869:   }\
                    870:   (p) = ___q___;\
                    871: }
                    872:
                    873: #define NEWUP2(q,w)\
                    874: ((q)=(UP2)MALLOC_ATOMIC(TRUESIZE(oUP2,(w)-1,unsigned int)),\
                    875: bzero((char *)(q)->b,(w)*sizeof(unsigned int)))
                    876: #define W_NEWUP2(q,w)\
                    877: ((q)=(UP2)ALLOCA(TRUESIZE(oUP2,(w)-1,unsigned int)),\
                    878: bzero((char *)(q)->b,(w)*sizeof(unsigned int)))
                    879: #define W_NEW_UP2(q,w)\
                    880: ((q).b=(unsigned int *)ALLOCA((w)*sizeof(unsigned int)))
                    881:
                    882: /* cell allocators */
                    883: #define NEWZ(q) ((q)=(Z)MALLOC(sizeof(struct oZ)),OID(q)=O_N,NID(q)=N_Q,(q)->z=1,mpz_init((q)->body))
                    884: #define NEWQ(q) ((q)=(Q)MALLOC(sizeof(struct oQ)),OID(q)=O_N,NID(q)=N_Q,(q)->z=0,mpq_init((q)->body))
                    885: #define NEWMQ(q) ((q)=(MQ)MALLOC_ATOMIC(sizeof(struct oMQ)),OID(q)=O_N,NID(q)=N_M)
                    886: #define NEWGFS(q) ((q)=(GFS)MALLOC_ATOMIC(sizeof(struct oGFS)),OID(q)=O_N,NID(q)=N_GFS)
                    887: #define NEWGFSN(q) ((q)=(GFSN)MALLOC(sizeof(struct oGFSN)),OID(q)=O_N,NID(q)=N_GFSN)
                    888: #define NEWP(p) ((p)=(P)MALLOC(sizeof(struct oP)),OID(p)=O_P)
                    889: #define NEWR(r) ((r)=(R)MALLOC(sizeof(struct oR)),OID(r)=O_R,(r)->reduced=0)
                    890: #define NEWLIST(l) ((l)=(LIST)MALLOC(sizeof(struct oLIST)),OID(l)=O_LIST)
                    891: #define NEWVECT(l) ((l)=(VECT)MALLOC(sizeof(struct oVECT)),OID(l)=O_VECT)
                    892: #define NEWSTR(l) ((l)=(STRING)MALLOC(sizeof(struct oSTRING)),OID(l)=O_STR)
                    893: #define NEWCOMP(c,n) ((c)=(COMP)MALLOC(sizeof(struct oCOMP)+((n)-1)*sizeof(Obj)),OID(c)=O_COMP)
                    894: #define NEWDP(d) ((d)=(DP)MALLOC(sizeof(struct oDP)),OID(d)=O_DP)
                    895: #define NEWDPV(d) ((d)=(DPV)MALLOC(sizeof(struct oDPV)),OID(d)=O_DPV)
                    896: #define NEWDPM(d) ((d)=(DPM)MALLOC(sizeof(struct oDPM)),OID(d)=O_DPM)
                    897: #define NEWUSINT(u) ((u)=(USINT)MALLOC_ATOMIC(sizeof(struct oUSINT)),OID(u)=O_USINT)
                    898: #define NEWERR(e) ((e)=(ERR)MALLOC(sizeof(struct oERR)),OID(e)=O_ERR)
                    899: #define NEWMATHCAP(e) ((e)=(MATHCAP)MALLOC(sizeof(struct oMATHCAP)),OID(e)=O_MATHCAP)
                    900: #define NEWBYTEARRAY(e) ((e)=(BYTEARRAY)MALLOC(sizeof(struct oBYTEARRAY)),OID(e)=O_BYTEARRAY)
                    901: #define NEWQUOTE(e) ((e)=(QUOTE)MALLOC(sizeof(struct oQUOTE)),OID(e)=O_QUOTE)
                    902: #define NEWQUOTEARG(e) ((e)=(QUOTEARG)MALLOC(sizeof(struct oQUOTEARG)),OID(e)=O_QUOTEARG)
                    903: #define NEWOPTLIST(l) ((l)=(OPTLIST)MALLOC(sizeof(struct oOPTLIST)),OID(l)=O_OPTLIST)
                    904: #define NEWSYMBOL(l) ((l)=(SYMBOL)MALLOC(sizeof(struct oSYMBOL)),OID(l)=O_SYMBOL)
                    905: #define NEWRANGE(l) ((l)=(RANGE)MALLOC(sizeof(struct oRANGE)),OID(l)=O_RANGE)
                    906: #define NEWTB(l) ((l)=(TB)MALLOC(sizeof(struct oTB)),OID(l)=O_TB,(l)->size=256,(l)->next=0,(l)->body=(char **)MALLOC((l)->size*sizeof(char *)))
                    907:
                    908: #define NEWNODE(a) ((a)=(NODE)MALLOC(sizeof(struct oNODE)))
                    909: #define NEWDC(dc) ((dc)=(DCP)MALLOC(sizeof(struct oDCP)))
                    910: #define NEWV(v) ((v)=(V)MALLOC(sizeof(struct oV)))
                    911: #define NEWVL(vl) ((vl)=(VL)MALLOC(sizeof(struct oVL)))
                    912: #define NEWMP(m) ((m)=(MP)MALLOC(sizeof(struct oMP)))
                    913: #define NEWDMM(m) ((m)=(DMM)MALLOC(sizeof(struct oDMM)))
1.9       noro      914: #define NEWDMMstack(m) ((m)=(DMMstack)MALLOC(sizeof(struct oDMMstack)))
1.1       noro      915: #define NEWDLBUCKET(a) ((a)=(DLBUCKET)MALLOC(sizeof(struct oDLBUCKET)))
                    916: #define NEWDPP(a) ((a)=(DP_pairs)MALLOC(sizeof(struct dp_pairs)))
                    917:
                    918: #define NEWMAT(l) ((l)=(MAT)MALLOC(sizeof(struct oMAT)),OID(l)=O_MAT)
                    919: #define NEWGF2MAT(l) ((l)=(GF2MAT)MALLOC(sizeof(struct oGF2MAT)),OID(l)=O_GF2MAT)
                    920: #define NEWGFMMAT(l) ((l)=(GFMMAT)MALLOC(sizeof(struct oGF2MAT)),OID(l)=O_GFMMAT)
                    921: /* IMAT */
                    922: #define NEWIMAT(l) ((l)=(IMAT)MALLOC(sizeof(struct oIMAT)),OID(l)=O_IMAT,l->clen=0,l->root=0,l->toor=0)
                    923: #define NEWIENT(l) ((l)=(IMATC)MALLOC(sizeof(struct oIMATC)),l->fore=0,l->next=0)
                    924: /* IMAT */
                    925: #define NEWReal(q) ((q)=(Real)MALLOC_ATOMIC(sizeof(struct oReal)),OID(q)=O_N,NID(q)=N_R)
                    926: #define NEWAlg(r) ((r)=(Alg)MALLOC(sizeof(struct oAlg)),OID(r)=O_N,NID(r)=N_A)
                    927: #define NEWDAlg(r) ((r)=(DAlg)MALLOC(sizeof(struct oDAlg)),OID(r)=O_N,NID(r)=N_DA)
                    928: #define NEWBF(q) ((q)=(BF)MALLOC(sizeof(struct oBF)),OID(q)=O_N,NID(q)=N_B)
                    929: #define NEWPARIBF(q,l) ((q)=(BF)MALLOC_ATOMIC(TRUESIZE(oBF,(l)-1,long)),OID(q)=O_N,NID(q)=N_PARIB)
                    930: #define NEWC(r) ((r)=(C)MALLOC(sizeof(struct oC)),OID(r)=O_N,NID(r)=N_C)
                    931: #define NEWLM(r) ((r)=(LM)MALLOC(sizeof(struct oLM)),OID(r)=O_N,NID(r)=N_LM)
                    932: #define NEWGF2N(r) ((r)=(GF2N)MALLOC(sizeof(struct oGF2N)),OID(r)=O_N,NID(r)=N_GF2N)
                    933: #define NEWGFPN(r) ((r)=(GFPN)MALLOC(sizeof(struct oGFPN)),OID(r)=O_N,NID(r)=N_GFPN)
                    934: #define NEWDL(d,n) \
                    935: ((d)=(DL)MALLOC_ATOMIC(TRUESIZE(oDL,(n)-1,int)),bzero((char *)(d),TRUESIZE(oDL,(n)-1,int)))
                    936: #define NEWDL_NOINIT(d,n) \
                    937: ((d)=(DL)MALLOC_ATOMIC(TRUESIZE(oDL,(n)-1,int)))
                    938:
                    939: #define MKP(v,dc,p) \
                    940: ((!DEG(dc)&&!NEXT(dc))?((p)=COEF(dc)):(NEWP(p),VR(p)=(v),DC(p)=(dc),(p)))
                    941: #define MKV(v,p) \
                    942: (NEWP(p),VR(p)=(v),NEWDC(DC(p)),\
                    943: DEG(DC(p))=ONE,COEF(DC(p))=(P)ONE,NEXT(DC(p))=0)
                    944: #define MKRAT(n,d,r,p) \
                    945: (NEWR(p),NM(p)=(n),DN(p)=(d),(p)->reduced=(r))
                    946: #define MKMV(v,p) \
                    947: (NEWP(p),VR(p)=(v),NEWDC(DC(p)),\
                    948: DEG(DC(p))=ONE,COEF(DC(p))=(P)ONEM,NEXT(DC(p))=0)
                    949: #define MKNODE(a,b,c) \
                    950: (NEWNODE(a),(a)->body=(pointer)b,NEXT(a)=(NODE)(c))
1.12      noro      951: #define NEWNODE2(a) ((a)=(NODE2)MALLOC(sizeof(struct oNODE2)))
                    952: #define MKNODE2(a,b,c,d) \
                    953: (NEWNODE2(a),(a)->body1=(pointer)b,(a)->body2=(pointer)c,NEXT(a)=(NODE2)(d))
                    954: #define BDY1(a) ((a)->body1)
                    955: #define BDY2(a) ((a)->body2)
1.1       noro      956: #define MKLIST(a,b) (NEWLIST(a),(a)->body=(NODE)(b))
                    957: #define MKVECT(m,l) \
                    958: (NEWVECT(m),(m)->len=(l),(m)->body=(pointer *)CALLOC((l),sizeof(pointer)))
                    959: #define MKMAT(m,r,c) \
                    960: (NEWMAT(m),(m)->row=(r),(m)->col=(c),(m)->body=(pointer **)almat_pointer((r),(c)))
                    961: #define TOGF2MAT(r,c,b,m) (NEWGF2MAT(m),(m)->row=(r),(m)->col=(c),(m)->body=(b))
                    962: #define TOGFMMAT(r,c,b,m) (NEWGFMMAT(m),(m)->row=(r),(m)->col=(c),(m)->body=(b))
                    963: #define MKSTR(a,b) (NEWSTR(a),(a)->body=(char *)(b))
                    964: #define MKDP(n,m,d) (NEWDP(d),(d)->nv=(n),BDY(d)=(m))
                    965: #define MKDPV(len,m,d) (NEWDPV(d),(d)->len=(len),BDY(d)=(m))
                    966: #define MKDPM(n,m,d) (NEWDPM(d),(d)->nv=(n),BDY(d)=(m))
                    967: #define MKLM(b,l) (!(b)?(l)=0:(NEWLM(l),(l)->body[0]=(b)[0],(l)))
                    968: #define MKGF2N(b,l) (!(b)?(l)=0:(NEWGF2N(l),(l)->body=(b),(l)))
                    969: #define MKGFPN(b,l) (!(b)?(l)=0:(NEWGFPN(l),(l)->body=(b),(l)))
                    970: #define MKUSINT(u,b) (NEWUSINT(u),(u)->body=(unsigned)(b))
                    971: #define MKERR(e,b) (NEWERR(e),(e)->body=(Obj)(b))
                    972: #define MKMATHCAP(e,b) (NEWMATHCAP(e),(e)->body=(LIST)(b))
                    973: #define MKBYTEARRAY(m,l) \
                    974: (NEWBYTEARRAY(m),(m)->len=(l),(m)->body=(unsigned char *)MALLOC_ATOMIC((l)),bzero((m)->body,(l)))
                    975: #define MKQUOTE(q,b) (NEWQUOTE(q),(q)->body=(pointer)(b))
                    976: #define MKQUOTEARG(q,t,b) (NEWQUOTEARG(q),(q)->type=(t),(q)->body=(pointer)(b))
                    977:
                    978: #define NEXTDC(r,c) \
                    979: if(!(r)){NEWDC(r);(c)=(r);}else{NEWDC(NEXT(c));(c)=NEXT(c);}
                    980: #define NEXTNODE(r,c) \
                    981: if(!(r)){NEWNODE(r);(c)=(r);}else{NEWNODE(NEXT(c));(c)=NEXT(c);}
                    982: #define NEXTMP(r,c) \
                    983: if(!(r)){NEWMP(r);(c)=(r);}else{NEWMP(NEXT(c));(c)=NEXT(c);}
                    984: #define NEXTMP2(r,c,s) \
                    985: if(!(r)){(c)=(r)=(s);}else{NEXT(c)=(s);(c)=(s);}
                    986: #define NEXTDLBUCKET(r,c) \
                    987: if(!(r)){NEWDLBUCKET(r);(c)=(r);}else{NEWDLBUCKET(NEXT(c));(c)=NEXT(c);}
                    988: #define NEXTVL(r,c) \
                    989: if(!(r)){NEWVL(r);(c)=(r);}else{NEWVL(NEXT(c));(c)=NEXT(c);}
                    990: #define NEXTDPP(r,c) \
                    991: if(!(r)){NEWDPP(r);(c)=(r);}else{NEWDPP(NEXT(c));(c)=NEXT(c);}
                    992: #define NEXTDMM(r,c) \
                    993: if(!(r)){NEWDMM(r);(c)=(r);}else{NEWDMM(NEXT(c));(c)=NEXT(c);}
                    994:
                    995: /* convertors */
                    996: #define NTOQ(n,s,z) (!(n)?((z)=0):((s)<0?mpz_neg(BDY(n),BDY(n)):0,MPZTOZ(n,z)))
                    997: #define NDTOQ(n,s,q) (!(n)?((q)=0):((s)<0?mpz_neg(BDY(n),BDY(n)):0,MPDNTOQ(n,d,q)))
                    998:
                    999: #define DUPZ(p,q) (NEWZ(q),BDY(q)=BDY(p))
                   1000: #define DUPQ(p,q) (NEWQ(q),BDY(q)=BDY(p))
                   1001:
1.8       ohara    1002: #define STOZ(n,q) ((!(n))?(void)((q)=0):(NEWZ(q),mpz_set_si(BDY(q),n)))
                   1003: #define UTOZ(n,q) ((!(n))?(void)((q)=0):(NEWZ(q),mpz_set_ui(BDY(q),n)))
1.1       noro     1004:
                   1005: /* for initializing static object */
1.4       noro     1006: #define STOZ0(n,q) (OID(q)=O_N,NID(q)=N_Q,(q)->z=1,mpz_init(BDY(q)),mpz_set_si(BDY(q),n))
1.1       noro     1007: #define STOLM0(n,q) (OID(q)=O_N,NID(q)=N_LM,mpz_init(BDY(q)),mpz_set_si(BDY(q),n))
                   1008:
1.4       noro     1009: #define ZTOS(q) (!(q)?0:((q)->z==1?mpz_get_si(BDY((Z)q)):(error("ZTOS : invalid argument"),0)))
1.1       noro     1010: #define LMTOS(q) (!(q)?0:mpz_get_si(BDY(q)))
                   1011:
                   1012: #define UTOMQ(a,b) ((a)?(NEWMQ(b),CONT(b)=(unsigned int)(a),(b)):((b)=0))
                   1013: #define MKGFS(a,b) ((NEWGFS(b),CONT(b)=(a),(b)))
                   1014: #define MKGFSN(a,b) ((DEG(a)>=0)?(NEWGFSN(b),BDY(b)=(a),(b)):((b)=0))
                   1015: #define STOMQ(a,b) ((a)?(NEWMQ(b),CONT(b)=(a),(b)):((b)=0))
                   1016:
                   1017:
                   1018: #define PTOR(a,b) (!(a)?((b)=0):(NEWR(b),NM(b)=(a),DN(b)=(P)ONE,(b)->reduced=1,(b)))
                   1019:
                   1020: #define MKReal(a,b) (!(a)?((b)=0):(NEWReal(b),BDY(b)=(a),(b)))
                   1021: #define MKAlg(b,r) (!(b)?((r)=0):NUM(b)?((r)=(Alg)(b)):(NEWAlg(r),BDY(r)=(Obj)(b),(r)))
                   1022: #define MKDAlg(dp,den,r) (!(dp)?(void *)((r)=0):(void *)(NEWDAlg(r),(r)->nm = (dp),(r)->dn=(den)))
                   1023:
                   1024: #define IMM_MAX 1073741823
                   1025: #define IMM_MIN -1073741823
                   1026:
                   1027: #define SL(n) ((n)->p)
                   1028:
                   1029: #define ToReal(a) (!(a)?(double)0.0:REAL(a)?BDY((Real)a):RATN(a)?RatnToReal((Q)a):BIGFLOAT(a)?mpfrtodbl(BDY((BF)a)):0)
                   1030:
                   1031: /* predicates */
                   1032: #define NUM(p) (OID(p)==O_N)
                   1033: #define RAT(p) (OID(p)==O_R)
                   1034: #define RATN(a) (NID((Num)a)==N_Q)
                   1035: #define POLY(a) (!(a) ||(OID(a)<=O_P))
                   1036: #define INT(q) (!(q)||(NUM(q)&&NID((Num)q)==N_Q&&((Q)q)->z))
                   1037: #define REAL(a) (NID((Num)a)==N_R)
                   1038: #define BIGFLOAT(a) (NID((Num)a)==N_B)
                   1039: #define SFF(a) (NID((Num)a)==N_M)
                   1040: #define UNIZ(q) ((q)&&INT(q)&&mpz_cmp_si((BDY((Z)(q))),1)==0)
                   1041: #define MUNIZ(q) ((q)&&INT(q)&&mpz_cmp_si((BDY((Z)(q))),-1)==0)
                   1042: #define UNIMQ(q) ((q)&&NUM(q)&&SFF(q)&&(CONT((MQ)q)==1))
                   1043: #define MUNIMQ(q) ((q)&&NUM(q)&&SFF(q)&&(CONT((MQ)q)==-1))
                   1044: #define EVENZ(n) ((!(n))||(INT(n)&&mpz_tstbit(((Z)(n))->body,0)==0))
1.7       noro     1045: #define UNIMPZ(q) (mpz_cmp_si(q,1)==0)
                   1046: #define MUNIMPZ(q) (mpz_cmp_si(q,-1)==0)
1.1       noro     1047:
                   1048: /* special macros for private memory management */
                   1049:
                   1050: #define NV(p) ((p)->nv)
                   1051: #define C(p) ((p)->c)
                   1052: #if 0
                   1053: #define ITOS(p) (((unsigned long)(p))&0x7fffffff)
                   1054: #define STOI(i) ((P)((unsigned long)(i)|0x80000000))
                   1055: #else
                   1056: #define ITOS(p) (((unsigned long)(p)))
                   1057: #define STOI(i) ((P)((unsigned long)(i)))
                   1058: #endif
                   1059:
                   1060: /* immediate GFS representation */
                   1061:
                   1062: #define IFTOF(p) ((int)(((unsigned long)(p))&0x7fffffff))
                   1063: #define FTOIF(i) ((int)(((unsigned long)(i)|0x80000000)))
                   1064:
                   1065: struct cdl {
                   1066:   Obj c;
                   1067:   DL d;
                   1068: };
                   1069:
                   1070: struct cdlm {
                   1071:   int c;
                   1072:   DL d;
                   1073: };
                   1074:
                   1075: extern MP _mp_free_list;
                   1076: extern DP _dp_free_list;
                   1077: extern DL _dl_free_list;
                   1078: extern int current_dl_length;
                   1079:
                   1080: #define _NEWDL_NOINIT(d,n) if ((n)!= current_dl_length){_dl_free_list=0; current_dl_length=(n);} if(!_dl_free_list)_DL_alloc(); (d)=_dl_free_list; _dl_free_list = *((DL *)_dl_free_list)
                   1081: #define _NEWDL(d,n) if ((n)!= current_dl_length){_dl_free_list=0; current_dl_length=(n);} if(!_dl_free_list)_DL_alloc(); (d)=_dl_free_list; _dl_free_list = *((DL *)_dl_free_list); bzero((d),(((n)+1)*sizeof(int)))
                   1082: #define _NEWMP(m) if(!_mp_free_list)_MP_alloc(); (m)=_mp_free_list; _mp_free_list = NEXT(_mp_free_list)
                   1083: #define _MKDP(n,m,d) if(!_dp_free_list)_DP_alloc(); (d)=_dp_free_list; _dp_free_list = (DP)BDY(_dp_free_list); (d)->id = O_DP; (d)->nv=(n); BDY(d)=(m)
                   1084:
                   1085: #define _NEXTMP(r,c) \
                   1086: if(!(r)){_NEWMP(r);(c)=(r);}else{_NEWMP(NEXT(c));(c)=NEXT(c);}
                   1087:
                   1088: #define _NEXTMP2(r,c,s) \
                   1089: if(!(r)){(c)=(r)=(s);}else{NEXT(c)=(s);(c)=(s);}
                   1090:
                   1091: #define _FREEDL(m) *((DL *)m)=_dl_free_list; _dl_free_list=(m)
                   1092: #define _FREEMP(m) NEXT(m)=_mp_free_list; _mp_free_list=(m)
                   1093: #define _FREEDP(m) BDY(m)=(MP)_dp_free_list; _dp_free_list=(m)
                   1094:
                   1095: #define MUL_WEIGHT(a,i) (current_dl_weight_vector?(a)*current_dl_weight_vector[i]:(a))
                   1096:
                   1097: /* externals */
                   1098: #if 0
                   1099: double NatToReal();
                   1100: double RatnToReal();
                   1101: #endif
                   1102:
                   1103: extern struct oR oUNIR;
                   1104: extern struct oZ oUNIZ;
                   1105: extern struct oMQ oUNIMQ;
                   1106: extern struct oN oUNIN;
                   1107: extern struct oUP2 oONEUP2;
                   1108: extern struct oV oVAR[];
                   1109: extern struct oV oPVAR[];
                   1110: extern struct oVL oVLIST[];
                   1111: extern struct oVL oPVLIST[];
                   1112: extern VL CO,ALG,LASTCO;
                   1113: extern VL PVL;
                   1114: extern R ONER;
                   1115: extern Z ONE;
                   1116: extern Z TWO;
                   1117: extern MQ ONEM;
                   1118: extern LM ONELM;
                   1119: extern UP2 ONEUP2;
                   1120: extern mpz_t ONEMPZ;
                   1121:
                   1122: extern FILE *asir_out;
                   1123: #if defined(__GNUC__)
                   1124: extern const int sprime[];
                   1125: #else
                   1126: extern int sprime[];
                   1127: #endif
                   1128:
                   1129: extern void (*addnumt[])();
                   1130: extern void (*subnumt[])();
                   1131: extern void (*mulnumt[])();
                   1132: extern void (*divnumt[])();
                   1133: extern void (*pwrnumt[])();
                   1134: extern int (*cmpnumt[])();
                   1135: extern void (*chsgnnumt[])();
                   1136:
                   1137: extern int current_mod;
                   1138: extern GEN_UP2 current_mod_gf2n;
                   1139: extern int lm_lazy;
                   1140: extern int current_ff;
                   1141: extern V up_var;
                   1142: extern V up2_var;
                   1143: extern P current_gfs_ext;
                   1144: extern int current_gfs_p;
                   1145: extern int current_gfs_q;
                   1146: extern int current_gfs_q1;
                   1147: extern int *current_gfs_plus1;
                   1148: extern int *current_gfs_ntoi;
                   1149: extern int *current_gfs_iton;
                   1150:
                   1151: extern int *current_dl_weight_vector;
                   1152:
                   1153: /* prototypes */
                   1154: int compui(VL,USINT,USINT);
                   1155: int compbytearray(VL,BYTEARRAY,BYTEARRAY);
                   1156:
                   1157: void powermodup(UP,UP *);
                   1158: void hybrid_powermodup(UP,UP *);
                   1159:
                   1160: void powertabup(UP,UP,UP *);
                   1161: void hybrid_powertabup(UP,UP,UP *);
                   1162:
                   1163: void powermod1up(UP,UP *);
                   1164: void hybrid_rembymulup_special(int,UP,UP,UP,UP *);
                   1165: void hybrid_tmulup(int,UP,UP,int,UP *);
                   1166: void hybrid_squareup(int,UP,UP *);
                   1167: void hybrid_mulup(int,UP,UP,UP *);
                   1168:
                   1169: int cmpdl_composite(int,DL,DL);
                   1170: int cmpdl_matrix(int,DL,DL);
                   1171: int cmpdl_order_pair(int,DL,DL);
                   1172: int cmpdl_elim(int,DL,DL);
                   1173: int cmpdl_blexrev(int,DL,DL);
                   1174: int cmpdl_bgradrev(int,DL,DL);
                   1175: int cmpdl_brevrev(int,DL,DL);
                   1176: int cmpdl_brevgradlex(int,DL,DL);
                   1177: int cmpdl_bgradlex(int,DL,DL);
                   1178: int cmpdl_blex(int,DL,DL);
                   1179: int cmpdl_revgradlex(int,DL,DL);
                   1180: int cmpdl_gradlex(int,DL,DL);
                   1181: int cmpdl_revlex(int,DL,DL);
                   1182: int cmpdl_lex(int,DL,DL);
                   1183:
                   1184: void adddv(VL,DPV,DPV,DPV *);
                   1185: void subdv(VL,DPV,DPV,DPV *);
                   1186: void muldv(VL,DP,DPV,DPV *);
                   1187: void chsgndv(DPV,DPV *);
                   1188: int compdv(VL,DPV,DPV);
                   1189:
                   1190: void adddpm(VL,DPM,DPM,DPM *);
                   1191: void subdpm(VL,DPM,DPM,DPM *);
                   1192: void mulobjdpm(VL,Obj,DPM,DPM *);
                   1193: void chsgndpm(DPM,DPM *);
                   1194: int compdpm(VL,DPM,DPM);
                   1195:
                   1196: void _printdp(DP);
                   1197: void _dp_sp_mod(DP,DP,int,DP *);
                   1198: void _dp_mod(DP,int,NODE,DP *);
                   1199: void _dp_red_mod(DP,DP,int,DP *);
                   1200: void _dtop_mod(VL,VL,DP,P *);
                   1201: void _mulmdm(VL,int,DP,MP,DP *);
                   1202: void _mulmd(VL,int,DP,DP,DP *);
                   1203: void _chsgnmd(int,DP,DP *);
                   1204: void _submd(VL,int,DP,DP,DP *);
                   1205: void _addmd(VL,int,DP,DP,DP *);
                   1206: void _mdtop(VL,int,VL,DP,P *);
                   1207: void divsmdc(VL,int,DP,P,DP *);
                   1208: void mulmdc(VL,int,DP,P,DP *);
                   1209: void mulmdm(VL,int,DP,MP,DP *);
                   1210: void mulmd(VL,int,DP,DP,DP *);
                   1211: void chsgnmd(int,DP,DP *);
                   1212: void submd(VL,int,DP,DP,DP *);
                   1213: void addmd(VL,int,DP,DP,DP *);
                   1214: void mdtop(VL,int,VL,DP,P *);
                   1215: void mptomd(VL,int,VL,P,DP *);
                   1216: void ptomd(VL,int,VL,P,DP *);
                   1217: int p_mag(P);
                   1218: int z_bits(Q);
                   1219: void rtime_init(void);
                   1220: void setmod_gf2n(P);
                   1221: void mt_sgenrand(unsigned long);
                   1222: unsigned long mt_genrand(void);
                   1223: #if defined(VISUAL) || defined(__MINGW32__)
                   1224: void srandom(unsigned int);
                   1225: unsigned int random(void);
                   1226: #endif
                   1227: void GC_free(void *);
                   1228: void FFT_primes(int,int *,int *,int *);
                   1229: int FFT_pol_product(unsigned int,unsigned int *, unsigned int,unsigned int *,
                   1230:   unsigned int *,int,unsigned int *);
                   1231: int FFT_pol_square(unsigned int,unsigned int *,
                   1232:   unsigned int *,int,unsigned int *);
                   1233: void dcptolist(DCP,LIST *);
                   1234: void gcdprsmp(VL,int,P,P,P *);
                   1235: void mult_mod_tab(UM,int,UM *,UM,int);
                   1236: int nfctr_mod(UM,int);
                   1237: int irred_check(UM,int);
                   1238: void modfctrp(P,int,int,DCP *);
                   1239: void pf_init(void);
                   1240: void ptolmp(P,P *);
                   1241: void lmptop(P,P *);
                   1242: void ulmptoum(int,UP,UM);
                   1243: void objtobobj(int,Obj,Obj *);
                   1244: void bobjtoobj(int,Obj,Obj *);
                   1245: void numtobnum(int,Num,Num *);
                   1246: void bnumtonum(int,Num,Num *);
                   1247: void ptobp(int,P,P *);
                   1248: void bptop(int,P,P *);
                   1249: void listtoblist(int,LIST,LIST *);
                   1250: void blisttolist(int,LIST,LIST *);
                   1251: void vecttobvect(int,VECT,VECT *);
                   1252: void bvecttovect(int,VECT,VECT *);
                   1253: void mattobmat(int,MAT,MAT *);
                   1254: void bmattomat(int,MAT,MAT *);
                   1255: void kmulum(int,UM,UM,UM);
                   1256: void saveobj(FILE *,Obj);
                   1257: void endian_init(void);
                   1258: void write_char(FILE *,unsigned char *);
                   1259: void write_short(FILE *,unsigned short *);
                   1260: void write_int(FILE *,unsigned int *);
                   1261: void write_double(FILE *,double *);
                   1262: void write_intarray(FILE *,unsigned int *,int);
                   1263: void write_string(FILE *,unsigned char *,int);
                   1264: void savestr(FILE *,char *);
                   1265: void loadstr(FILE *,char **);
                   1266: void savevl(FILE *,VL);
                   1267: void loadvl(FILE *);
                   1268: void skipvl(FILE *);
                   1269: void savev(FILE *,V);
                   1270: void loadv(FILE *,V *);
                   1271: int save_convv(V);
                   1272: V load_convv(int);
                   1273: void swap_bytes(char *,int,int);
                   1274: void read_char(FILE *,unsigned char *);
                   1275: void read_short(FILE *,unsigned short *);
                   1276: void read_int(FILE *,unsigned int *);
                   1277: void read_double(FILE *,double *);
                   1278: void read_intarray(FILE *,unsigned int *,int);
                   1279: void read_string(FILE *,unsigned char *,int);
                   1280: void loadobj(FILE *,Obj *);
                   1281: void invum(int,UM,UM,UM);
                   1282: void addarray_to(unsigned int *,int,unsigned int *,int);
                   1283: void muln_1(unsigned int *,int,unsigned int,unsigned int *);
                   1284: unsigned int divn_1(unsigned int *,int,unsigned int,unsigned int *);
                   1285: void ptoup(P,UP *);
                   1286: void uptop(UP,P *);
                   1287: void printnum(Num);
                   1288: void printv(VL,V);
                   1289: void kmulq(Q,Q,Q *);
                   1290: void simplm(LM,LM *);
                   1291: void qtolm(Q,LM *);
                   1292: int qpcheck(Obj);
                   1293: int headsgn(P);
                   1294: void adjsgn(P,DCP);
                   1295: void setmod_g2n(P);
                   1296: void simpgf2n(GF2N,GF2N *);
                   1297: void ptogf2n(Obj,GF2N *);
                   1298: void gf2ntop(GF2N,P *);
                   1299: void gf2ntovect(GF2N,VECT *);
                   1300: void squaregf2n(GF2N,GF2N *);
                   1301: void randomgf2n(GF2N *);
                   1302: void invgf2n(GF2N,GF2N *);
                   1303: int qcoefp(Obj);
                   1304: int qcoefr(Obj);
                   1305: size_t get_allocwords(void);
                   1306: double get_clock(void);
                   1307: void get_eg(struct oEGT *);
                   1308: void printtime(struct oEGT *,struct oEGT *,double);
                   1309: void init_eg(struct oEGT *);
                   1310: void add_eg(struct oEGT *,struct oEGT *,struct oEGT *);
                   1311: void print_eg(char *,struct oEGT *);
                   1312: void print_split_eg(struct oEGT *,struct oEGT *);
                   1313: void print_split_e(struct oEGT *,struct oEGT *);
                   1314: void suspend_timer(void);
                   1315: void resume_timer(void);
                   1316: void reset_engine(void);
                   1317: void notdef(VL,Obj,Obj,Obj *);
                   1318: void error(char *);
                   1319: void ptoup2(P,UP2 *);
                   1320: void ptoup2_sparse(P,UP2 *);
                   1321: void up2top(UP2,P *);
                   1322: void up2tovect(UP2,VECT *);
                   1323: void up2toz(UP2,Z *);
                   1324: void ztoup2(Z,UP2 *);
                   1325: void gen_simpup2(UP2,GEN_UP2,UP2 *);
                   1326: void gen_simpup2_destructive(UP2,GEN_UP2);
                   1327: void gen_invup2(UP2,GEN_UP2,UP2 *);
                   1328: void simpup2(UP2,UP2,UP2 *);
                   1329: int degup2(UP2);
                   1330: int degup2_sparse(UP2);
                   1331: int degup2_1(unsigned int);
                   1332: void addup2(UP2,UP2,UP2 *);
                   1333: void subup2(UP2,UP2,UP2 *);
                   1334: void mulup2_n1(unsigned int *,int,unsigned int,unsigned int *);
                   1335: void mulup2_nh(unsigned int *,int,unsigned int,unsigned int *);
                   1336: void _mulup2_1(UP2,unsigned int,UP2);
                   1337: void _mulup2_h(UP2,unsigned int,UP2);
                   1338: void mulup2(UP2,UP2,UP2 *);
                   1339: void _kmulup2_(unsigned int *,unsigned int *,int,unsigned int *);
                   1340: void _mulup2_nn(unsigned int *,unsigned int *,int,unsigned int *);
                   1341: void _mulup2(UP2,UP2,UP2);
                   1342: void _mulup2_(_UP2,_UP2,_UP2);
                   1343: void squareup2(UP2,UP2 *);
                   1344: void _adjup2(UP2);
                   1345: void _adjup2_(_UP2);
                   1346: void _addup2(UP2,UP2,UP2);
                   1347: void _addup2_destructive(UP2,UP2);
                   1348: void _addup2_(_UP2,_UP2,_UP2);
                   1349: void _addtoup2_(_UP2,_UP2);
                   1350: unsigned int mulup2_bb(unsigned int,unsigned int);
                   1351: void init_up2_tab(void);
                   1352: unsigned int quoup2_11(unsigned int,unsigned int);
                   1353: void divup2_1(unsigned int,unsigned int,int,int,unsigned int *,unsigned int *);
                   1354: void qrup2(UP2,UP2,UP2 *,UP2 *);
                   1355: void _qrup2(UP2,UP2,UP2,UP2);
                   1356: void remup2(UP2,UP2,UP2 *);
                   1357: void _remup2(UP2,UP2,UP2);
                   1358: void remup2_sparse(UP2,UP2,UP2 *);
                   1359: void remup2_sparse_destructive(UP2,UP2);
                   1360: void remup2_type1_destructive(UP2,int);
                   1361: void remup2_3_destructive(UP2,UP2);
                   1362: void remup2_5_destructive(UP2,UP2);
                   1363: void _invup2_1(unsigned int,unsigned int,unsigned int *,unsigned int *);
                   1364: void _gcdup2_1(unsigned int,unsigned int,unsigned int *);
                   1365: void up2_init_eg(void);
                   1366: void up2_show_eg(void);
                   1367: void invup2(UP2,UP2,UP2 *);
                   1368: void gcdup2(UP2,UP2,UP2 *);
                   1369: void chsgnup2(UP2,UP2 *);
                   1370: void pwrmodup2(UP2,Z,UP2,UP2 *);
                   1371: void pwrmodup2_sparse(UP2,Z,UP2,UP2 *);
                   1372: int compup2(UP2,UP2);
                   1373: void printup2(UP2);
                   1374: void _copyup2(UP2,UP2);
                   1375: void _bshiftup2(UP2,int,UP2);
                   1376: void _bshiftup2_destructive(UP2,int);
                   1377: void diffup2(UP2,UP2 *);
                   1378: int sqfrcheckup2(UP2);
                   1379: int irredcheckup2(UP2);
                   1380: int irredcheck_dddup2(UP2);
                   1381: void _copy_up2bits(UP2,unsigned int **,int);
                   1382: void _print_frobmat(unsigned int **,int,int);
                   1383: int compute_multiplication_matrix(P,GF2MAT *);
                   1384: void compute_change_of_basis_matrix(P,P,int,GF2MAT *,GF2MAT *);
                   1385: int compute_representation_conversion_matrix(P,GF2MAT *,GF2MAT *);
                   1386: void mul_nb(GF2MAT,unsigned int *,unsigned int *,unsigned int *);
                   1387: void leftshift(unsigned int *,int);
                   1388: void mat_to_gf2mat(MAT,unsigned int ***);
                   1389: void gf2mat_to_mat(unsigned int **,int,MAT *);
                   1390: void mulgf2mat(int,unsigned int **,unsigned int **,unsigned int **);
                   1391: void mulgf2vectmat(int,unsigned int *,unsigned int **,unsigned int *);
                   1392: int mulgf2vectvect(int,unsigned int *,unsigned int *);
                   1393: int invgf2mat(int,unsigned int **,unsigned int **);
                   1394: void _mulup2_11(unsigned int,unsigned int,unsigned int *);
                   1395: void _mulup2_22(unsigned int *,unsigned int *,unsigned int *);
                   1396: void _mulup2_33(unsigned int *,unsigned int *,unsigned int *);
                   1397: void _mulup2_44(unsigned int *,unsigned int *,unsigned int *);
                   1398: void _mulup2_55(unsigned int *,unsigned int *,unsigned int *);
                   1399: void _mulup2_66(unsigned int *,unsigned int *,unsigned int *);
                   1400: void printup2_(unsigned int *,int);
                   1401: void type1_bin_invup2(UP2,int,UP2 *);
                   1402: int int_bits(int);
                   1403:
                   1404:
                   1405: LUM LUMALLOC(int, int);
                   1406: BM BMALLOC(int, int);
                   1407: Obj ToAlg(Num);
                   1408: UM *berlemain(register int, UM, UM *);
                   1409: void Risa_GC_set_adj(int,int);
                   1410: void Risa_GC_get_adj(int *,int *);
                   1411: void *Risa_GC_malloc(size_t);
                   1412: void *Risa_GC_malloc_atomic(size_t);
                   1413: void *Risa_GC_realloc(void *,size_t);
                   1414: void Risa_GC_free(void *);
                   1415: void *Risa_GC_malloc_atomic_ignore_off_page(size_t);
                   1416: void *GC_malloc(size_t);
                   1417: void *GC_malloc_atomic(size_t);
                   1418: void *GC_realloc(void *,size_t);
                   1419: double RatnToReal(Q);
                   1420: double pwrreal0(double,int);
                   1421: double rtodbl(); /* XXX */
                   1422: double mpfrtodbl(mpfr_t a);
                   1423: int **almat(int,int);
                   1424: pointer **almat_pointer(int,int);
                   1425: int berlecnt(register int,UM);
                   1426: int berlecntmain(register int,int,int,register int **);
                   1427: int cmpalg(Num,Num);
                   1428: int cmpbf(Num,Num);
                   1429: int cmpcplx(Num,Num);
                   1430: int cmpq(Q,Q);
                   1431: int cmpreal(Real,Real);
                   1432: int cmpmi(MQ,MQ);
                   1433: int cmplm(LM,LM);
                   1434: int compmat(VL,MAT,MAT);
                   1435: int compnum(VL,Num,Num);
                   1436: int compp(VL,P,P);
                   1437: int compr(VL,Obj,Obj);
                   1438: int equalp(VL,P,P);
                   1439: int equalr(VL,Obj,Obj);
                   1440: int compstr(VL,STRING,STRING);
                   1441: int compvect(VL,VECT,VECT);
                   1442: int ctest(P,ML,int,int *);
                   1443: int cycchk(P);
                   1444: int dbound(V,P);
                   1445: int dcomp(P,P);
                   1446: int deg(V,P);
                   1447: int degtest(int,int *,ML,int);
                   1448: int divcheck(VL,P *,int,P,P);
                   1449: int divtdcpz(VL,P,P,P *);
                   1450: int divtpz(VL,P,P,P *);
                   1451: int divum(register int,UM,UM,UM);
                   1452: int dm(int,int,int *);
                   1453: int dmb(int,int,int,int *);
                   1454: int dma(int,int,int,int *);
                   1455: int dmab(int,int,int,int,int *);
                   1456: int dmar(int,int,int,int);
                   1457: int dtestmain(P,Q,ML,int,int *,P *,P *);
                   1458: int geldb(VL,P);
                   1459: int getchomdeg(V,P);
                   1460: int getdeg(V,P);
                   1461: int getlchomdeg(V,P,int *);
                   1462: int homdeg(P);
                   1463: unsigned int invm(unsigned int,int);
                   1464: int iscycm(P);
                   1465: int iscycp(P);
                   1466: int lengthp(P);
                   1467: int mig(int,int,P);
                   1468: int mignotte(int,P);
                   1469: int minimain(register int,int,int,register int **);
                   1470: int ncombi(int,int,int,int *);
                   1471: int nextbin(VN,int);
                   1472: int nmonop(P);
                   1473: int pcoef(VL,VL,P,P *);
                   1474: int pcoef0(VL,VL,P,P *);
                   1475: unsigned int pwrm(register int,register int,int);
                   1476: int sqfrchk(P);
                   1477: int ucmpp(P,P);
                   1478: int valideval(VL,DCP,VN);
                   1479: int zerovpchk(VL,P,VN);
                   1480:
                   1481: void addgf2n(GF2N,GF2N,GF2N *);
                   1482: void subgf2n(GF2N,GF2N,GF2N *);
                   1483: void mulgf2n(GF2N,GF2N,GF2N *);
                   1484: void divgf2n(GF2N,GF2N,GF2N *);
                   1485: void chsgngf2n(GF2N,GF2N *);
                   1486: void pwrgf2n(GF2N,Z, GF2N *);
                   1487: int cmpgf2n(GF2N,GF2N);
                   1488:
                   1489: void addgfpn(GFPN,GFPN,GFPN *);
                   1490: void subgfpn(GFPN,GFPN,GFPN *);
                   1491: void mulgfpn(GFPN,GFPN,GFPN *);
                   1492: void divgfpn(GFPN,GFPN,GFPN *);
                   1493: void chsgngfpn(GFPN,GFPN *);
                   1494: void pwrgfpn(GFPN,Z, GFPN *);
                   1495: int cmpgfpn(GFPN,GFPN);
                   1496:
                   1497: void addgfs(GFS,GFS,GFS *);
                   1498: void subgfs(GFS,GFS,GFS *);
                   1499: void mulgfs(GFS,GFS,GFS *);
                   1500: void divgfs(GFS,GFS,GFS *);
                   1501: void chsgngfs(GFS,GFS *);
                   1502: void pwrgfs(GFS,Z, GFS *);
                   1503: int cmpgfs(GFS,GFS);
                   1504:
                   1505: void addgfsn(GFSN,GFSN,GFSN *);
                   1506: void subgfsn(GFSN,GFSN,GFSN *);
                   1507: void mulgfsn(GFSN,GFSN,GFSN *);
                   1508: void divgfsn(GFSN,GFSN,GFSN *);
                   1509: void chsgngfsn(GFSN,GFSN *);
                   1510: int cmpgfsn(GFSN,GFSN);
                   1511:
                   1512: void adddalg(DAlg,DAlg,DAlg *);
                   1513: void subdalg(DAlg,DAlg,DAlg *);
                   1514: void muldalg(DAlg,DAlg,DAlg *);
                   1515: void divdalg(DAlg,DAlg,DAlg *);
                   1516: void chsgndalg(DAlg,DAlg *);
                   1517: void pwrdalg(DAlg,Z, DAlg *);
                   1518: int cmpdalg(DAlg,DAlg);
                   1519:
                   1520: void addalg(Num,Num,Num *);
                   1521: void addbf(Num,Num,Num *);
                   1522: void addcplx(Num,Num,Num *);
                   1523: void addmat(VL,MAT,MAT,MAT *);
                   1524: void addmp(VL,int,P,P,P *);
                   1525: void addmpq(int,P,P,P *);
                   1526: void addmptoc(VL,int,P,P,P *);
                   1527: void addmq(int,MQ,MQ,MQ *);
                   1528: void addnum(VL,Num,Num,Num *);
                   1529: void addp(VL,P,P,P *);
                   1530: void addpadic(int,int,unsigned int *,unsigned int *);
                   1531: void addpq(P,P,P *);
                   1532: void addptoc(VL,P,P,P *);
                   1533: void addr(VL,Obj,Obj,Obj *);
                   1534: void addreal(Num,Num,Real *);
                   1535: void addmi(MQ,MQ,MQ *);
                   1536: void addlm(LM,LM,LM *);
                   1537: void addstr(VL,STRING,STRING,STRING *);
                   1538: void addum(int,UM,UM,UM);
                   1539: void addvect(VL,VECT,VECT,VECT *);
                   1540: void addquote(VL,QUOTE,QUOTE,QUOTE *);
                   1541: void afctr(VL,P,P,DCP *);
                   1542: void afctrmain(VL,P,P,int,DCP *);
                   1543: void affine(VL,P,VN,P *);
                   1544: void affinemain(VL,P,V,int,P *,P *);
                   1545: void berle(int,int,P,ML *);
                   1546: void cbound(VL,P,Q *);
                   1547: void chnrem(int,V,P,Z,UM,P *,Z *);
                   1548: void chnremp(VL,int,P,Z,P,P *);
                   1549: void chsgnalg(Num,Num *);
                   1550: void chsgnbf(Num a,Num *);
                   1551: void chsgncplx(Num,Num *);
                   1552: void chsgnmat(MAT,MAT *);
                   1553: void chsgnmp(int,P,P *);
                   1554: void chsgnnum(Num,Num *);
                   1555: void chsgnp(P,P *);
                   1556: void chsgnq(Q,Q *);
                   1557: void chsgnr(Obj,Obj *);
                   1558: void chsgnreal(Num,Num *);
                   1559: void chsgnmi(MQ,MQ *);
                   1560: void chsgnlm(LM,LM *);
                   1561: void chsgnvect(VECT,VECT *);
                   1562: void chsgnquote(QUOTE,QUOTE *);
                   1563: void clctv(VL,P,VL *);
                   1564: void clctvr(VL,Obj,VL *);
                   1565: void cm2p(Z,Z,P,P *);
                   1566: void cmax(P,Q *);
                   1567: void cmp(Z,P,P *);
                   1568: void coefp(P,int,P *);
                   1569: void cpylum(int,LUM,LUM);
                   1570: void cpyum(UM,UM);
                   1571: void csump(VL,P,Q *);
                   1572: void cycm(V,register int,DCP *);
                   1573: void cycp(V,register int,DCP *);
                   1574: void degp(V,P,Z *);
                   1575: void degum(UM,int);
                   1576: void detmp(VL,int,P **,int,P *);
                   1577: void detp(VL,P **,int,P *);
                   1578: void diffp(VL,P,V,P *);
                   1579: void diffum(register int,UM,UM);
                   1580: void divalg(Num,Num,Num *);
                   1581: void divbf(Num,Num,Num *);
                   1582: void divcp(P,Q,P *);
                   1583: void divcplx(Num,Num,Num *);
                   1584: void divmat(VL,Obj,Obj,Obj *);
                   1585: void divmq(int,MQ,MQ,MQ *);
                   1586: void divnum(VL,Num,Num,Num *);
                   1587: void divr(VL,Obj,Obj,Obj *);
                   1588: void divreal(Num,Num,Real *);
                   1589: void divmi(MQ,MQ,MQ *);
                   1590: void divlm(LM,LM,LM *);
                   1591: void divsdcmp(VL,int,P,P,P *);
                   1592: void divsdcp(VL,P,P,P *);
                   1593: void divsmp(VL,int,P,P,P *);
                   1594: void divsp(VL,P,P,P *);
                   1595: void divsrdcmp(VL,int,P,P,P *,P *);
                   1596: void divsrdcp(VL,P,P,P *,P *);
                   1597: void divsrmp(VL,int,P,P,P *,P *);
                   1598: void divsrp(VL,P,P,P *,P *);
                   1599: void divvect(VL,Obj,Obj,Obj *);
                   1600: void divquote(VL,QUOTE,QUOTE,QUOTE *);
                   1601: void dtest(P,ML,int,DCP *);
                   1602: void dtestroot(int,int,P,LUM,struct oDUM *,DCP *);
                   1603: void dtestroot1(int,int,P,LUM,P *);
                   1604: void dtestsq(int,int,P,LUM,P *);
                   1605: void dtestsql(P,ML,struct oDUM *,DCP *);
                   1606: void ediffp(VL,P,V,P *);
                   1607: void eucum(register int,UM,UM,UM,UM);
                   1608: void exthp(VL,P,int,P *);
                   1609: void exthpc(VL,V,P,int,P *);
                   1610: void ezgcd1p(VL,P,P,P *);
                   1611: void ezgcdhensel(P,int,UM,UM,ML *);
                   1612: void ezgcdnp(VL,P,P *,int,P *);
                   1613: void ezgcdnpp(VL,DCP,P *,int,P *);
                   1614: void ezgcdnpz(VL,P *,int,P *);
                   1615: void ezgcdp(VL,P,P,P *);
                   1616: void ezgcdpp(VL,DCP,P,P *);
                   1617: void ezgcdpz(VL,P,P,P *);
                   1618: void fctrp(VL,P,DCP *);
                   1619: void fctrwithmvp(VL,P,V,DCP *);
                   1620: void gcda(VL,P,P,P,P *);
                   1621: void gcdcp(VL,P,P *);
                   1622: void gcdgen(P,ML,ML *);
                   1623: void gcdmonomial(VL,DCP *,int,P *);
                   1624: void gcdprsp(VL,P,P,P *);
                   1625: void gcdum(register int,UM,UM,UM);
                   1626: void getmindeg(V,P,Z *);
                   1627: void henmain(LUM,ML,ML,ML *);
                   1628: void henprep(P,ML,ML,ML *,ML *);
                   1629: void hensel(int,int,P,ML *);
                   1630: void hsq(int,int,P,int *,DCP *);
                   1631: void intersectv(VL,VL,VL *);
                   1632: void invl(Q,Q,Q *);
                   1633: void invmq(int,MQ,MQ *);
                   1634: void invq(Q,Q *);
                   1635: void lgp(P,Z *,Z *);
                   1636: void lumtop(V,int,int,LUM,P *);
                   1637: void lumtop_unsigned(V v,int mod,int bound,LUM f,P *g);
                   1638: void markv(VN,int,P);
                   1639: void maxdegp(VL,P,VL *,P *);
                   1640: void mergev(VL,VL,VL,VL *);
                   1641: void mfctr(VL,P,DCP *);
                   1642: void mfctrhen2(VL,VN,P,P,P,P,P,P,P *);
                   1643: void mfctrmain(VL,P,DCP *);
                   1644: void mfctrwithmv(VL,P,V,DCP *);
                   1645: void min_common_vars_in_coefp(VL,P,VL *,P *);
                   1646: void minchdegp(VL,P,VL *,P *);
                   1647: void mindegp(VL,P,VL *,P *);
                   1648: void mini(register int,UM,UM);
                   1649: void minlcdegp(VL,P,VL *,P *);
                   1650: void mkbcm(int,int,MQ *);
                   1651: void mkssum(V,int,int,int,P *);
                   1652: void monomialfctr(VL,P,P *,DCP *);
                   1653: void mptop(P,P *);
                   1654: void mptoum(P,UM);
                   1655: void msqfr(VL,P,DCP *);
                   1656: void msqfrmain(VL,P,DCP *);
                   1657: void msqfrmainmain(VL,P,VN,P,DCP,DCP *,P *);
                   1658: void mulalg(Num,Num,Num *);
                   1659: void mulbf(Num,Num,Num *);
                   1660: void mulcplx(Num,Num,Num *);
                   1661: void mullum(int,int,LUM,LUM,LUM);
                   1662: void mullumarray(P,ML,int,int *,P *);
                   1663: void mulmat(VL,Obj,Obj,Obj *);
                   1664: void mulmatmat(VL,MAT,MAT,MAT *);
                   1665: void mulmatvect(VL,MAT,VECT,VECT *);
                   1666: void mulmp(VL,int,P,P,P *);
                   1667: void mulmpc(VL,int,P,P,P *);
                   1668: void mulmpq(int,P,P,P *);
                   1669: void mulmq(int,MQ,MQ,MQ *);
                   1670: void mulnum(VL,Num,Num,Num *);
                   1671: void mulp(VL,P,P,P *);
                   1672: void mulpadic(int,int,unsigned int *,unsigned int *,unsigned int *);
                   1673: void mulpc(VL,P,P,P *);
                   1674: void mulpq(P,P,P *);
                   1675: void mulr(VL,Obj,Obj,Obj *);
                   1676: void mulreal(Num,Num,Real *);
                   1677: void mulmi(MQ,MQ,MQ *);
                   1678: void mullm(LM,LM,LM *);
                   1679: void mulrmat(VL,Obj,MAT,MAT *);
                   1680: void mulrvect(VL,Obj,VECT,VECT *);
                   1681: void mulsgn(VN,VN,int,VN);
                   1682: void mulsum(register int,UM,register int,UM);
                   1683: void mulum(register int,UM,UM,UM);
                   1684: void mulvect(VL,Obj,Obj,Obj *);
                   1685: void mulquote(VL,QUOTE,QUOTE,QUOTE *);
                   1686: void mulvectmat(VL,VECT,MAT,VECT *);
                   1687: void next(VN);
                   1688: void nezgcdnp_sqfr_primitive(VL,P,P *,int,P *);
                   1689: void nezgcdnpp(VL,DCP,P *,int,P *);
                   1690: void nezgcdnpz(VL,P *,int,P *);
                   1691: void nezgcdnpzmain(VL,P *,int,P *);
                   1692: void nglob_init(void);
                   1693: void norm(P,Q *);
                   1694: void norm1(P,P *);
                   1695: void norm1c(P,Q *);
                   1696: void normalizemp(int,P);
                   1697: void nthrootz(Z,int,Z *);
                   1698: int ztonadic(int,Z,unsigned int **);
                   1699: void nuezgcdnpzmain(VL,P *,int,P *);
                   1700: void padictoq(int,int,int *,Z *);
                   1701: void padictoq_unsigned(int,int,int *,Z *);
                   1702: void risa_pari_init(void);
                   1703: void pcp(VL,P,P *,P *);
                   1704: void pderivr(VL,Obj,V,Obj *);
                   1705: void pdiva(VL,P,P,P,P *);
                   1706: void pinva(P,P,P *);
                   1707: void plisttop(P *,V,int,P *);
                   1708: void pmonic(VL,P,P,P *);
                   1709: void pqra(VL,P,P,P,P *,P *);
                   1710: void premmp(VL,int,P,P,P *);
                   1711: void premp(VL,P,P,P *);
                   1712: void ptolum(int,int,P,LUM);
                   1713: void ptomp(int,P,P *);
                   1714: void ptoum(int,P,UM);
                   1715: void ptozp(P,int,Q *,P *);
                   1716: void ptozp0(P,P *);
                   1717: void pwralg(Num,Num,Num *);
                   1718: void pwrbf(Num,Num,Num *);
                   1719: void pwrcplx(Num,Num,Num *);
                   1720: void pwrcplx0(Num,int,Num *);
                   1721: void pwrlum(int,int,LUM,int,LUM);
                   1722: void pwrmat(VL,MAT,Obj,MAT *);
                   1723: void pwrmatmain(VL,MAT,int,MAT *);
                   1724: void pwrmp(VL,int,P,Z,P *);
                   1725: void pwrmq(int,MQ,Q,MQ *);
                   1726: void pwrnum(VL,Num,Num,Num *);
                   1727: void pwrp(VL,P,Z,P *);
                   1728: void pwrq(Q,Q,Q *);
                   1729: void pwrr(VL,Obj,Obj,Obj *);
                   1730: void pwrquote(VL,QUOTE,QUOTE,QUOTE *);
                   1731: void pwrreal(Num,Num,Real *);
                   1732: void pwrmi(MQ,Q,MQ *);
                   1733: void pwrum(int,UM,int,UM);
                   1734: void asir_reallocarray(char **,int *,int *,int);
                   1735: void reductr(VL,Obj,Obj *);
                   1736: void reimtocplx(Num,Num,Num *);
                   1737: void rema(VL,P,P,P,P *);
                   1738: void remq(Q,Q,Q *);
                   1739: void remsdcp(VL,P,P,P *);
                   1740: void reordermp(VL,int,VL,P,P *);
                   1741: void reorderp(VL,VL,P,P *);
                   1742: void reordvar(VL,V,VL *);
                   1743: void res_ch_det(VL,V,P,P,P *);
                   1744: void res_detmp(VL,int,V,P,P,P *);
                   1745: void restore(VL,P,VN,P *);
                   1746: void resultmp(VL,int,V,P,P,P *);
                   1747: void resultp(VL,V,P,P,P *);
                   1748: void setlum(int,int,LUM);
                   1749: void sort_by_deg(int,P *,P *);
                   1750: void sort_by_deg_rev(int,P *,P *);
                   1751: void sortfs(DCP *);
                   1752: void sortfsrev(DCP *);
                   1753: void sortplist(P *,int);
                   1754: void sortplistbyhomdeg(P *,int);
                   1755: void sprs(VL,V,P,P,P *);
                   1756: void sqa(VL,P,P,DCP *);
                   1757: void sqfrp(VL,P,DCP *);
                   1758: void sqfrum(int,int,P,int *,struct oDUM **,ML *);
                   1759: void sqfrummain(int,UM,UM,struct oDUM **);
                   1760: void sqrtz(Z,Z *);
                   1761: void srch2(VL,V,P,P,P *);
                   1762: void srchmp(VL,int,V,P,P,P *);
                   1763: void srchump(int,P,P,P *);
                   1764: void srcr(VL,V,P,P,P *);
                   1765: void strtobf(char *,BF *);
                   1766: void subalg(Num,Num,Num *);
                   1767: void subbf(Num,Num,Num *);
                   1768: void subcplx(Num,Num,Num *);
                   1769: void submat(VL,MAT,MAT,MAT *);
                   1770: void submp(VL,int,P,P,P *);
                   1771: void submq(int,MQ,MQ,MQ *);
                   1772: void subnum(VL,Num,Num,Num *);
                   1773: void subp(VL,P,P,P *);
                   1774: void subr(VL,Obj,Obj,Obj *);
                   1775: void subreal(Num,Num,Real *);
                   1776: void submi(MQ,MQ,MQ *);
                   1777: void sublm(LM,LM,LM *);
                   1778: void substmp(VL,int,P,V,P,P *);
                   1779: void substp(VL,P,V,P,P *);
                   1780: void substvp(VL,P,VN,P *);
                   1781: void subum(int,UM,UM,UM);
                   1782: void subvect(VL,VECT,VECT,VECT *);
                   1783: void subquote(VL,QUOTE,QUOTE,QUOTE *);
                   1784: void toreim(Num,Num *,Num *);
                   1785: void ucsump(P,Q *);
                   1786: void uexgcdnp(VL,P,P *,int,VN,Q,P *,P *,P *,P *,Z *);
                   1787: void uezgcd1p(P,P,P *);
                   1788: void uezgcdpp(DCP,P,P *);
                   1789: void uezgcdpz(VL,P,P,P *);
                   1790: void ufctr(P,int,DCP *);
                   1791: void ufctrmain(P,int,DCP *);
                   1792: void umtomp(V,UM,P *);
                   1793: void umtop(V,UM,P *);
                   1794: void usqp(P,DCP *);
                   1795: void vntovl(VN,int,VL *);
                   1796:
                   1797: void saveerror(FILE *,ERR);
                   1798: void saveui(FILE *,USINT);
                   1799: void savedp(FILE *,DP);
1.10      noro     1800: void savedpm(FILE *,DPM);
1.1       noro     1801: void savestring(FILE *,STRING);
                   1802: void savemat(FILE *,MAT);
                   1803: void savevect(FILE *,VECT);
                   1804: void savelist(FILE *,LIST);
                   1805: void saver(FILE *,R);
                   1806: void savep(FILE *,P);
                   1807: void savegf2n(FILE *,GF2N);
                   1808: void savegfpn(FILE *,GFPN);
                   1809: void savegfs(FILE *,GFS);
                   1810: void savedalg(FILE *,DAlg);
                   1811: void savelm(FILE *,LM);
                   1812: void savemi(FILE *,MQ);
                   1813: void savecplx(FILE *,C);
                   1814: void savebf(FILE *,BF);
                   1815: void savereal(FILE *,Real);
                   1816: void saveq(FILE *,Q);
                   1817: void savenum(FILE *,Num);
                   1818: void savepfins(FILE *,V);
                   1819: void savegfmmat(FILE *,GFMMAT);
                   1820: void savebytearray(FILE *,BYTEARRAY);
                   1821: void savegfsn(FILE *,GFSN);
                   1822:
                   1823: void loaderror(FILE *,ERR *);
                   1824: void loadui(FILE *,USINT *);
                   1825: void loaddp(FILE *,DP *);
1.10      noro     1826: void loaddpm(FILE *,DPM *);
1.1       noro     1827: void loadstring(FILE *,STRING *);
                   1828: void loadmat(FILE *,MAT *);
                   1829: void loadvect(FILE *,VECT *);
                   1830: void loadlist(FILE *,LIST *);
                   1831: void loadr(FILE *,R *);
                   1832: void loadp(FILE *,P *);
                   1833: void loadgf2n(FILE *,GF2N *);
                   1834: void loadgfpn(FILE *,GFPN *);
                   1835: void loadgfs(FILE *,GFS *);
                   1836: void loadgfsn(FILE *,GFSN *);
                   1837: void loaddalg(FILE *,DAlg *);
                   1838: void loadlm(FILE *,LM *);
                   1839: void loadmi(FILE *,MQ *);
                   1840: void loadcplx(FILE *,C *);
                   1841: void loadbf(FILE *,BF *);
                   1842: void loadreal(FILE *,Real *);
                   1843: void loadq(FILE *,Q *);
                   1844: void loadnum(FILE *,Num *);
                   1845: void loadgfmmat(FILE *,GFMMAT *);
                   1846: void loadbytearray(FILE *,BYTEARRAY *);
                   1847: V loadpfins(FILE *);
                   1848: void eucum2(int mod,UM f1,UM f2,UM a,UM b);
                   1849: void clearum(UM p,int n);
                   1850: BM BMALLOC(int dx,int dy);
                   1851: int isequalum(UM f1,UM f2);
                   1852: void dec_um(int p,int a,UM u);
                   1853: void setmod_sf(int p,int n);
                   1854: int search_defpoly_and_primitive_root(int p,int n,UM dp);
                   1855: void generate_defpoly_um(int p,int n,UM dp);
                   1856: int generate_primitive_root_enc(int p,int n,UM dp);
                   1857: int mulremum_enc(int p,int n,UM dp,int a,int b);
                   1858: void gfs_galois_action(GFS a,Q e,GFS *c);
                   1859: void gfs_embed(GFS z,int k,int pm,GFS *c);
                   1860: void qtogfs(Q a,GFS *c);
                   1861: void mqtogfs(MQ a,GFS *c);
                   1862: void gfstomq(GFS a,MQ *c);
                   1863: void ntogfs(Obj a,GFS *b);
                   1864: void addgfs(GFS a,GFS b,GFS *c);
                   1865: void subgfs(GFS a,GFS b,GFS *c);
                   1866: void mulgfs(GFS a,GFS b,GFS *c);
                   1867: void divgfs(GFS a,GFS b,GFS *c);
                   1868: void chsgngfs(GFS a,GFS *c);
                   1869: int cmpgfs(GFS a,GFS b);
                   1870: void randomgfs(GFS *r);
                   1871: int _addsf(int a,int b);
                   1872: int _chsgnsf(int a);
                   1873: int _subsf(int a,int b);
                   1874: int _mulsf(int a,int b);
                   1875: int _invsf(int a);
                   1876: int _divsf(int a,int b);
                   1877: int _pwrsf(int a,int b);
                   1878: int _onesf();
                   1879: int _itosf(int n);
                   1880: int _isonesf(int a);
                   1881: int _randomsf();
                   1882: int field_order_sf();
                   1883: int characteristic_sf();
                   1884: int extdeg_sf();
                   1885: void addsfum(UM p1,UM p2,UM pr);
                   1886: void subsfum(UM p1,UM p2,UM pr);
                   1887: void gcdsfum(UM p1,UM p2,UM pr);
                   1888: void mulsfum(UM p1,UM p2,UM pr);
                   1889: void mulssfum(UM p,int n,UM pr);
                   1890: void kmulsfum(UM n1,UM n2,UM nr);
                   1891: void kmulsfummain(UM n1,UM n2,UM nr);
                   1892: int divsfum(UM p1,UM p2,UM pq);
                   1893: void diffsfum(UM f,UM fd);
                   1894: void monicsfum(UM f);
                   1895: int compsfum(UM a,UM b);
                   1896: void mulsfbm(BM f1,BM f2,BM fr);
                   1897: int degbm(BM f);
                   1898: void addtosfbm(BM f,BM g);
                   1899: void eucsfum(UM f1,UM f2,UM a,UM b);
                   1900: void shiftsfum(UM f,int a,UM g);
                   1901: void shiftsflum(int n,LUM f,int ev);
                   1902: void shiftsfbm(BM f,int a);
                   1903: void clearbm(int n,BM f);
                   1904:
                   1905: void ksquareum(int mod,UM n1,UM nr);
                   1906: void extractum(UM n,int index,int len,UM nr);
                   1907: void copyum(UM n1,UM n2);
                   1908: void c_copyum(UM n,int len,int *p);
                   1909: void kmulummain(int mod,UM n1,UM n2,UM nr);
                   1910: void ksquareummain(int mod,UM n1,UM nr);
                   1911:
                   1912: void simp_ff(Obj p,Obj *rp);
                   1913: void field_order_ff(Z *order);
                   1914:
                   1915: void random_lm(LM *r);
                   1916: void setmod_lm(Z p);
                   1917: void getmod_lm(Z *p);
                   1918:
                   1919: void qtolm(Q q,LM *l);
                   1920: void addlm(LM a,LM b,LM *c);
                   1921: void sublm(LM a,LM b,LM *c);
                   1922: void mullm(LM a,LM b,LM *c);
                   1923: void divlm(LM a,LM b,LM *c);
                   1924: void chsgnlm(LM a,LM *c);
                   1925: void pwrlm(LM a,Z b,LM *c);
                   1926: int cmplm(LM a,LM b);
                   1927: void simplm(LM a,LM *b);
                   1928: void simplm_force(LM a,LM *b);
                   1929:
                   1930: void addlf(Z a,Z b,Z *c);
                   1931: void sublf(Z a,Z b,Z *c);
                   1932: void mullf(Z a,Z b,Z *c);
                   1933: void divlf(Z a,Z b,Z *c);
                   1934: void chsgnlf(Z a,Z *c);
                   1935: int cmplf(Z a,Z b);
                   1936: void simplf(Z a,Z *b);
                   1937: void simplf_force(Z a,Z *b);
                   1938: void setmod_lf(Z p);
                   1939:
                   1940: void setmod_gfpn(P p);
                   1941: void getmod_gfpn(UP *up);
                   1942: void ptogfpn(Obj q,GFPN *l);
                   1943: void gfpntop(GFPN q,P *l);
                   1944: void simpgfpn(GFPN n,GFPN *r);
                   1945: void ntogfpn(Obj a,GFPN *b);
                   1946: void addgfpn(GFPN a,GFPN b,GFPN *c);
                   1947: void subgfpn(GFPN a,GFPN b,GFPN *c);
                   1948: void mulgfpn(GFPN a,GFPN b,GFPN *c);
                   1949: void squaregfpn(GFPN a,GFPN *c);
                   1950: void divgfpn(GFPN a,GFPN b,GFPN *c);
                   1951: void invgfpn(GFPN b,GFPN *c);
                   1952: void chsgngfpn(GFPN a,GFPN *c);
                   1953: int cmpgfpn(GFPN a,GFPN b);
                   1954: void randomgfpn(GFPN *r);
                   1955: void setmod_gfsn(UM p);
                   1956: void getmod_gfsn(UM *up);
                   1957: void simpgfsn(GFSN n,GFSN *r);
                   1958: void ntogfsn(Obj a,GFSN *b);
                   1959: void addgfsn(GFSN a,GFSN b,GFSN *c);
                   1960: void subgfsn(GFSN a,GFSN b,GFSN *c);
                   1961: void mulgfsn(GFSN a,GFSN b,GFSN *c);
                   1962: void divgfsn(GFSN a,GFSN b,GFSN *c);
                   1963: void invgfsn(GFSN b,GFSN *c);
                   1964: void chsgngfsn(GFSN a,GFSN *c);
                   1965: void pwrgfsn(GFSN a,Z b,GFSN *c);
                   1966: int cmpgfsn(GFSN a,GFSN b);
                   1967: void randomgfsn(GFSN *r);
                   1968: void setmod_gf2n(P p);
                   1969: void getmod_gf2n(UP2 *p);
                   1970: void simpgf2n(GF2N n,GF2N *r);
                   1971: void ptogf2n(Obj q,GF2N *l);
                   1972: void gf2ntop(GF2N q,P *l);
                   1973: void gf2ntovect(GF2N q,VECT *l);
                   1974: void addgf2n(GF2N a,GF2N b,GF2N *c);
                   1975: void subgf2n(GF2N a,GF2N b,GF2N *c);
                   1976: void mulgf2n(GF2N a,GF2N b,GF2N *c);
                   1977: void squaregf2n(GF2N a,GF2N *c);
                   1978: void divgf2n(GF2N a,GF2N b,GF2N *c);
                   1979: void invgf2n(GF2N b,GF2N *c);
                   1980: void chsgngf2n(GF2N a,GF2N *c);
                   1981: int cmpgf2n(GF2N a,GF2N b);
                   1982: void randomgf2n(GF2N *r);
                   1983: void nadictoz(int base,int d,unsigned int *w,Z *nrp);
                   1984: void intarraytoz(int len,unsigned int *w,Z *nrp);
                   1985: void ptomp(int m,P p,P *pr);
                   1986: void mptop(P f,P *gp);
                   1987: void ptosfp(P p,P *pr);
                   1988: void sfptop(P f,P *gp);
                   1989: void sf_galois_action(P p,Q e,P *pr);
                   1990: void sf_embed(P p,int k,int pm,P *pr);
                   1991: void ptolmp(P p,P *pr);
                   1992: void lmptop(P f,P *gp);
                   1993: void ptoum(int m,P f,UM wf);
                   1994: void umtop(V v,UM w,P *f);
                   1995: void ptosfum(P f,UM wf);
                   1996: void sfumtop(V v,UM w,P *f);
                   1997: void ptoup(P n,UP *nr);
                   1998: void uptop(UP n,P *nr);
                   1999: void ulmptoum(int m,UP f,UM wf);
                   2000: void objtobobj(int base,Obj p,Obj *rp);
                   2001: void bobjtoobj(int base,Obj p,Obj *rp);
                   2002: void numtobnum(int base,Num p,Num *rp);
                   2003: void bnumtonum(int base,Num p,Num *rp);
                   2004: void ptobp(int base,P p,P *rp);
                   2005: void bptop(int base,P p,P *rp);
                   2006: void listtoblist(int base,LIST p,LIST *rp);
                   2007: void blisttolist(int base,LIST p,LIST *rp);
                   2008: void vecttobvect(int base,VECT p,VECT *rp);
                   2009: void bvecttovect(int base,VECT p,VECT *rp);
                   2010: void mattobmat(int base,MAT p,MAT *rp);
                   2011: void bmattomat(int base,MAT p,MAT *rp);
                   2012: void mptoum(P p,UM pr);
                   2013: void umtomp(V v,UM p,P *pr);
                   2014: void enc_to_p(int p,int a,V v,P *pr);
                   2015: int comp_dum(DUM a,DUM b);
                   2016: void fctrsf(P p,DCP *dcp);
                   2017: void gensqfrsfum(UM p,struct oDUM *dc);
                   2018: void randsfum(int d,UM p);
                   2019: void pwrmodsfum(UM p,int e,UM f,UM pr);
                   2020: void spwrsfum(UM m,UM f,Z e,UM r);
                   2021: void tracemodsfum(UM m,UM f,int e,UM r);
                   2022: void make_qmatsf(UM p,UM *tab,int ***mp);
                   2023: void nullsf(int **mat,int n,int *ind);
                   2024: void null_to_solsf(int **mat,int *ind,int n,UM *r);
                   2025: void czsfum(UM f,UM *r);
                   2026: int berlekampsf(UM p,int df,UM *tab,UM *r);
                   2027: void minipolysf(UM f,UM p,UM mp);
                   2028: int find_rootsf(UM p,int *root);
                   2029: void sqfrsf(VL vl,P f, DCP *dcp);
                   2030: void canzassf(UM f,int d,UM *r);
                   2031: void sfhensel(int count,P f,V x,V y,int degbound,GFS *evp,P *sfp,ML *listp);
                   2032: int sfberle(V x,V y,P f,int count,GFS *ev,DCP *dcp);
                   2033: void sfgcdgen(P f,ML blist,ML *clistp);
                   2034: void sfhenmain2(BM f,UM g0,UM h0,int dy,BM *gp);
                   2035: void ptosfbm(int dy,P f,BM fl);
                   2036: void sfbmtop(BM f,V x,V y,P *fp);
                   2037: void sfsqfr(P f,DCP *dcp);
                   2038: void sfusqfr(P f,DCP *dcp);
                   2039: void sfbsqfr(P f,V x,V y,DCP *dcp);
                   2040: void sfbfctr(P f,V x,V y,int degbound,DCP *dcp);
                   2041: void sfdtest(P f,ML list,V x,V y,DCP *dcp);
                   2042: int sfdtestmain(VL vl,P lcg,UM lcg0,BM lcy,P csum,ML list,
                   2043:   int k,int *in,P *fp,P *cofp);
                   2044: void const_term(P f,UM c);
                   2045: void const_term_sfbm(BM f,UM c);
                   2046: int sfctest(UM lcg0,BM lcy,ML list,int k,int *in);
                   2047: void mulsfbmarray(int dx,BM lcy,ML list,int k,int *in,V x,V y,P *g);
                   2048: void sfcsump(VL vl,P f,P *s);
                   2049: void cont_pp_sfp(VL vl,P f,P *cp,P *fp);
                   2050: int divtp_by_sfbm(VL vl,P f,P g,P *qp);
                   2051: void generate_defpoly_sfum(int n,UM *dp);
                   2052: NODE symb_merge(NODE,NODE,int);
                   2053: void _free_private_storage();
                   2054: void _DL_alloc();
                   2055: void _MP_alloc();
                   2056: void _DP_alloc();
                   2057: void _addmd_destructive(int mod,DP p1,DP p2,DP *pr);
                   2058: void _mulmd_dup(int mod,DP p1,DP p2,DP *pr);
                   2059: void _comm_mulmd_dup(int mod,DP p1,DP p2,DP *pr);
                   2060: void _weyl_mulmd_dup(int mod,DP p1,DP p2,DP *pr);
                   2061: void _mulmdm_dup(int mod,DP p,MP m0,DP *pr);
                   2062: void _weyl_mulmdm_dup(int mod,MP m0,DP p,DP *pr);
                   2063: void _weyl_mulmmm_dup(int mod,MP m0,MP m1,int n,struct cdlm *rtab,int rtablen);
                   2064: void _comm_mulmd_tab(int mod,int nv,struct cdlm *t,int n,struct cdlm *t1,int n1,struct cdlm *rt);
                   2065: void _comm_mulmd_tab_destructive(int mod,int nv,struct cdlm *t,int n,struct cdlm *t1,int n1);
                   2066: void dlto_dl(DL d,DL *dr);
                   2067: void _dltodl(DL d,DL *dr);
                   2068: void _adddl_dup(int n,DL d1,DL d2,DL *dr);
                   2069: void _free_dlarray(DL *a,int n);
                   2070: void _free_dp(DP f);
                   2071: void dpto_dp(DP p,DP *r);
                   2072: void _dptodp(DP p,DP *r);
                   2073: NODE _symb_merge(NODE m1,NODE m2,int n);
                   2074: void _addd_destructive(VL vl,DP p1,DP p2,DP *pr);
                   2075: void _muld_dup(VL vl,DP p1,DP p2,DP *pr);
                   2076: void _comm_muld_dup(VL vl,DP p1,DP p2,DP *pr);
                   2077: void _weyl_muld_dup(VL vl,DP p1,DP p2,DP *pr);
                   2078: void _muldm_dup(VL vl,DP p,MP m0,DP *pr);
                   2079: void _weyl_muldm_dup(VL vl,MP m0,DP p,DP *pr);
                   2080: void _weyl_mulmm_dup(VL vl,MP m0,MP m1,int n,struct cdl *rtab,int rtablen);
                   2081: void _comm_muld_tab(VL vl,int nv,struct cdl *t,int n,struct cdl *t1,int n1,struct cdl *rt);
                   2082: void _comm_muld_tab_destructive(VL vl,int nv,struct cdl *t,int n,struct cdl *t1,int n1);
                   2083:
                   2084: int has_fcoef(DP f);
                   2085: int has_fcoef_p(P f);
                   2086: void initd(struct order_spec *spec);
                   2087: void ptod(VL vl,VL dvl,P p,DP *pr);
                   2088: void dtop(VL vl,VL dvl,DP p,Obj *pr);
                   2089: void nodetod(NODE node,DP *dp);
                   2090: void nodetodpm(NODE node,Obj pos,DPM *dp);
                   2091: int sugard(MP m);
                   2092: void addd(VL vl,DP p1,DP p2,DP *pr);
                   2093: void symb_addd(DP p1,DP p2,DP *pr);
                   2094: NODE symb_merge(NODE m1,NODE m2,int n);
                   2095: DLBUCKET symb_merge_bucket(DLBUCKET m1,DLBUCKET m2,int n);
                   2096: void subd(VL vl,DP p1,DP p2,DP *pr);
                   2097: void chsgnd(DP p,DP *pr);
                   2098: void muld(VL vl,DP p1,DP p2,DP *pr);
                   2099: void comm_muld(VL vl,DP p1,DP p2,DP *pr);
                   2100: void muldm(VL vl,DP p,MP m0,DP *pr);
                   2101: void weyl_muld(VL vl,DP p1,DP p2,DP *pr);
                   2102: void weyl_muldm(VL vl,MP m0,DP p,DP *pr);
                   2103: void weyl_mulmm(VL vl,MP m0,MP m1,int n,struct cdl *rtab,int rtablen);
                   2104: void comm_muld_tab(VL vl,int nv,struct cdl *t,int n,struct cdl *t1,int n1,struct cdl *rt);
                   2105: void muldc(VL vl,DP p,Obj c,DP *pr);
                   2106: void divsdc(VL vl,DP p,P c,DP *pr);
                   2107: void divdc(VL vl,DP p,Obj c,DP *pr);
                   2108: void adddl(int n,DL d1,DL d2,DL *dr);
                   2109: void adddl_destructive(int n,DL d1,DL d2);
                   2110: int compd(VL vl,DP p1,DP p2);
                   2111: int cmpdl_lex(int n,DL d1,DL d2);
                   2112: int cmpdl_revlex(int n,DL d1,DL d2);
                   2113: int cmpdl_gradlex(int n,DL d1,DL d2);
                   2114: int cmpdl_revgradlex(int n,DL d1,DL d2);
                   2115: int cmpdl_blex(int n,DL d1,DL d2);
                   2116: int cmpdl_bgradlex(int n,DL d1,DL d2);
                   2117: int cmpdl_brevgradlex(int n,DL d1,DL d2);
                   2118: int cmpdl_brevrev(int n,DL d1,DL d2);
                   2119: int cmpdl_bgradrev(int n,DL d1,DL d2);
                   2120: int cmpdl_blexrev(int n,DL d1,DL d2);
                   2121: int cmpdl_elim(int n,DL d1,DL d2);
                   2122: int cmpdl_weyl_elim(int n,DL d1,DL d2);
                   2123: int cmpdl_homo_ww_drl(int n,DL d1,DL d2);
                   2124: int cmpdl_order_pair(int n,DL d1,DL d2);
                   2125: int cmpdl_matrix(int n,DL d1,DL d2);
                   2126: void ptomd(VL vl,int mod,VL dvl,P p,DP *pr);
                   2127: void mptomd(VL vl,int mod,VL dvl,P p,DP *pr);
                   2128: void mdtop(VL vl,int mod,VL dvl,DP p,P *pr);
                   2129: void addmd(VL vl,int mod,DP p1,DP p2,DP *pr);
                   2130: void submd(VL vl,int mod,DP p1,DP p2,DP *pr);
                   2131: void chsgnmd(int mod,DP p,DP *pr);
                   2132: void mulmd(VL vl,int mod,DP p1,DP p2,DP *pr);
                   2133: void comm_mulmd(VL vl,int mod,DP p1,DP p2,DP *pr);
                   2134: void weyl_mulmd(VL vl,int mod,DP p1,DP p2,DP *pr);
                   2135: void mulmdm(VL vl,int mod,DP p,MP m0,DP *pr);
                   2136: void weyl_mulmdm(VL vl,int mod,DP p,MP m0,DP *pr);
                   2137: void weyl_mulmmm(VL vl,int mod,MP m0,MP m1,int n,DP *pr);
                   2138: void mulmdc(VL vl,int mod,DP p,P c,DP *pr);
                   2139: void divsmdc(VL vl,int mod,DP p,P c,DP *pr);
                   2140: void _dtop_mod(VL vl,VL dvl,DP p,P *pr);
                   2141: void _dp_mod(DP p,int mod,NODE subst,DP *rp);
                   2142: void _dp_monic(DP p,int mod,DP *rp);
                   2143: void _printdp(DP d);
                   2144: void addmd_destructive(int mod,DP p1,DP p2,DP *pr);
                   2145: void mulmd_dup(int mod,DP p1,DP p2,DP *pr);
                   2146: void comm_mulmd_dup(int mod,DP p1,DP p2,DP *pr);
                   2147: void weyl_mulmd_dup(int mod,DP p1,DP p2,DP *pr);
                   2148: void mulmdm_dup(int mod,DP p,MP m0,DP *pr);
                   2149: void weyl_mulmdm_dup(int mod,MP m0,DP p,DP *pr);
                   2150: void weyl_mulmmm_dup(int mod,MP m0,MP m1,int n,struct cdlm *rtab,int rtablen);
                   2151: void comm_mulmd_tab_destructive(int mod,int nv,struct cdlm *t,int n,struct cdlm *t1,int n1);
                   2152: void adddl_dup(int n,DL d1,DL d2,DL *dr);
                   2153: void monicup(UP a,UP *b);
                   2154: void simpup(UP a,UP *b);
                   2155: void simpnum(Num a,Num *b);
                   2156: void uremp(P p1,P p2,P *rp);
                   2157: void ugcdp(P p1,P p2,P *rp);
                   2158: void reversep(P p1,Q d,P *rp);
                   2159: void invmodp(P p1,Q d,P *rp);
                   2160: void addup(UP n1,UP n2,UP *nr);
                   2161: void subup(UP n1,UP n2,UP *nr);
                   2162: void chsgnup(UP n1,UP *nr);
                   2163: void hybrid_mulup(int ff,UP n1,UP n2,UP *nr);
                   2164: void hybrid_squareup(int ff,UP n1,UP *nr);
                   2165: void hybrid_tmulup(int ff,UP n1,UP n2,int d,UP *nr);
                   2166: void mulup(UP n1,UP n2,UP *nr);
                   2167: void mulcup(Num c,UP n1,UP *nr);
                   2168: void tmulup(UP n1,UP n2,int d,UP *nr);
                   2169: void squareup(UP n1,UP *nr);
                   2170: void remup(UP n1,UP n2,UP *nr);
                   2171: void remup_destructive(UP n1,UP n2);
                   2172: void qrup(UP n1,UP n2,UP *nq,UP *nr);
                   2173: void qrup_destructive(UP n1,UP n2);
                   2174: void gcdup(UP n1,UP n2,UP *nr);
                   2175: void extended_gcdup(UP a,UP m,UP *r);
                   2176: void reverseup(UP n1,int d,UP *nr);
                   2177: void invmodup(UP n1,int d,UP *nr);
                   2178: void pwrup(UP n,Z e,UP *nr);
                   2179: int compup(UP n1,UP n2);
                   2180: void kmulp(VL vl,P n1,P n2,P *nr);
                   2181: void ksquarep(VL vl,P n1,P *nr);
                   2182: void kmulup(UP n1,UP n2,UP *nr);
                   2183: void ksquareup(UP n1,UP *nr);
                   2184: void copyup(UP n1,UP n2);
                   2185: void c_copyup(UP n,int len,pointer *p);
                   2186: void kmulupmain(UP n1,UP n2,UP *nr);
                   2187: void ksquareupmain(UP n1,UP *nr);
                   2188: void rembymulup(UP n1,UP n2,UP *nr);
                   2189: void hybrid_rembymulup_special(int ff,UP n1,UP n2,UP inv2,UP *nr);
                   2190: void rembymulup_special(UP n1,UP n2,UP inv2,UP *nr);
                   2191: void tkmulup(UP n1,UP n2,int d,UP *nr);
                   2192: void shiftup(UP n,int d,UP *nr);
                   2193: void fft_rembymulup_special(UP n1,UP n2,UP inv2,UP *nr);
                   2194: void set_degreeup(UP n,int d);
                   2195: void decompup(UP n,int d,UP *n0,UP *n1);
                   2196: void truncup(UP n1,int d,UP *nr);
                   2197: int int_bits(int t);
                   2198: int maxblenup(UP n);
                   2199: void uptofmarray(int mod,UP n,ModNum *f);
                   2200: void fmarraytoup(ModNum *f,int d,UP *nr);
                   2201: void uiarraytoup(unsigned int **f,int n,int d,UP *nr);
                   2202: void adj_coefup(UP n,Z m,Z m2,UP *nr);
                   2203: void remcup(UP n,Z mod,UP *nr);
                   2204: void fft_mulup(UP n1,UP n2,UP *nr);
                   2205: void trunc_fft_mulup(UP n1,UP n2,int dbd,UP *nr);
                   2206: void fft_squareup(UP n1,UP *nr);
                   2207: void fft_mulup_main(UP n1,UP n2,int dbd,UP *nr);
                   2208: void crup(ModNum **f,int d,int *mod,int index,Z m,UP *r);
                   2209: void crup_lm(ModNum **f,int d,int *mod,int index,Z m,Z lm_mod,UP *r);
                   2210: void fft_mulup_specialmod_main(UP n1,UP n2,int dbd,int *modind,int nmod,UP *nr);
                   2211: void fft_mulup_lm(UP n1,UP n2,UP *nr);
                   2212: void fft_squareup_lm(UP n1,UP *nr);
                   2213: void trunc_fft_mulup_lm(UP n1,UP n2,int dbd,UP *nr);
                   2214: void fft_rembymulup_special_lm(UP n1,UP n2,UP inv2,UP *nr);
                   2215: void uptolmup(UP n,UP *nr);
                   2216: void save_up(UP obj,char *name);
                   2217: void hybrid_powermodup(UP f,UP *xp);
                   2218: void powermodup(UP f,UP *xp);
                   2219: void hybrid_generic_powermodup(UP g,UP f,Z d,UP *xp);
                   2220: void generic_powermodup(UP g,UP f,Z d,UP *xp);
                   2221: void hybrid_powertabup(UP f,UP xp,UP *tab);
                   2222: void powertabup(UP f,UP xp,UP *tab);
                   2223: void squarep_gf2n(VL vl,P n1,P *nr);
                   2224: void squareup_gf2n(UP n1,UP *nr);
                   2225: void powermodup_gf2n(UP f,UP *xp);
                   2226: void generic_powermodup_gf2n(UP g,UP f,Z d,UP *xp);
                   2227: void tracemodup_gf2n(UP g,UP f,Z d,UP *xp);
                   2228: void tracemodup_gf2n_slow(UP g,UP f,Z d,UP *xp);
                   2229: void tracemodup_gf2n_tab(UP g,UP f,Z d,UP *xp);
                   2230: void square_rem_tab_up_gf2n(UP f,UP *tab,UP *rp);
                   2231: void powertabup_gf2n(UP f,UP xp,UP *tab);
                   2232: void find_root_gf2n(UP f,GF2N *r);
                   2233: void ptoup2(P n,UP2 *nr);
                   2234: void ptoup2_sparse(P n,UP2 *nr);
                   2235: void up2top(UP2 n,P *nr);
                   2236: void up2tovect(UP2 n,VECT *nr);
                   2237: void up2ton(UP2 p,Q *n);
                   2238: void ntoup2(Q n,UP2 *p);
                   2239: void gen_simpup2(UP2 p,GEN_UP2 m,UP2 *r);
                   2240: void gen_simpup2_destructive(UP2 p,GEN_UP2 m);
                   2241: void gen_invup2(UP2 p,GEN_UP2 m,UP2 *r);
                   2242: void gen_pwrmodup2(UP2 a,Z b,GEN_UP2 m,UP2 *c);
                   2243: void simpup2(UP2 p,UP2 m,UP2 *r);
                   2244: int degup2(UP2 a);
                   2245: int degup2_sparse(UP2 a);
                   2246: int degup2_1(unsigned int a);
                   2247: void addup2(UP2 a,UP2 b,UP2 *c);
                   2248: void subup2(UP2 a,UP2 b,UP2 *c);
                   2249: void _mulup2_1(UP2 a,unsigned int b,UP2 c);
                   2250: void _mulup2_h(UP2 a,unsigned int b,UP2 c);
                   2251: void mulup2(UP2 a,UP2 b,UP2 *c);
                   2252: void _kmulup2_(unsigned int *a,unsigned int *b,int w,unsigned int *c);
                   2253: void _mulup2_nn(unsigned int *a,unsigned int *b,int w,unsigned int *c);
                   2254: void _mulup2(UP2 a,UP2 b,UP2 c);
                   2255: void _mulup2_(_UP2 a,_UP2 b,_UP2 c);
                   2256: void squareup2(UP2 n,UP2 *nr);
                   2257: void _squareup2(UP2 n,UP2 nr);
                   2258: void _adjup2(UP2 n);
                   2259: void _adjup2_(_UP2 n);
                   2260: void _addup2(UP2 a,UP2 b,UP2 c);
                   2261: void _addup2_destructive(UP2 a,UP2 b);
                   2262: void _addup2_(_UP2 a,_UP2 b,_UP2 c);
                   2263: void _addtoup2_(_UP2 a,_UP2 b);
                   2264: unsigned int mulup2_bb(unsigned int a,unsigned int b);
                   2265: void init_up2_tab();
                   2266: void divup2_1(unsigned int a1,unsigned int a2,int e1,int e2,unsigned int *qp,unsigned int *rp);
                   2267: void qrup2(UP2 a,UP2 b,UP2 *q,UP2 *r);
                   2268: void _qrup2(UP2 a,UP2 b,UP2 q,UP2 r);
                   2269: void remup2(UP2 a,UP2 b,UP2 *c);
                   2270: void _remup2(UP2 a,UP2 b,UP2 c);
                   2271: void remup2_sparse(UP2 a,UP2 b,UP2 *c);
                   2272: void remup2_sparse_destructive(UP2 a,UP2 b);
                   2273: void remup2_type1_destructive(UP2 a,int d);
                   2274: void remup2_3_destructive(UP2 a,UP2 b);
                   2275: void remup2_5_destructive(UP2 a,UP2 b);
                   2276: void _invup2_1(unsigned int f1,unsigned int f2,unsigned int *a1,unsigned int *b1);
                   2277: void _gcdup2_1(unsigned int f1,unsigned int f2,unsigned int *gcd);
                   2278: void up2_init_eg();
                   2279: void up2_show_eg();
                   2280: void invup2(UP2 a,UP2 m,UP2 *inv);
                   2281: void gcdup2(UP2 a,UP2 m,UP2 *gcd);
                   2282: void chsgnup2(UP2 a,UP2 *c);
                   2283: int compup2(UP2 n1,UP2 n2);
                   2284: void _copyup2(UP2 n,UP2 r);
                   2285: void _bshiftup2(UP2 n,int b,UP2 r);
                   2286: void _bshiftup2_destructive(UP2 n,int b);
                   2287: void diffup2(UP2 f,UP2 *r);
                   2288: int sqfrcheckup2(UP2 f);
                   2289: int irredcheckup2(UP2 f);
                   2290: int irredcheck_dddup2(UP2 f);
                   2291: void _copy_up2bits(UP2 p,unsigned int **mat,int pos);
                   2292: int compute_multiplication_matrix(P p0,GF2MAT *mp);
                   2293: void compute_change_of_basis_matrix(P p0,P p1,int to,GF2MAT *m01,GF2MAT *m10);
                   2294: void compute_change_of_basis_matrix_with_root(P p0,P p1,int to,GF2N root,GF2MAT *m01,GF2MAT *m10);
                   2295: int compute_representation_conversion_matrix(P p0,GF2MAT *np,GF2MAT *pn);
                   2296: void mul_nb(GF2MAT mat,unsigned int *a,unsigned int *b,unsigned int *c);
                   2297: void leftshift(unsigned int *a,int n);
                   2298: void mat_to_gf2mat(MAT a,unsigned int ***b);
                   2299: void gf2mat_to_mat(unsigned int **a,int n,MAT *b);
                   2300: void mulgf2mat(int n,unsigned int **a,unsigned int **b,unsigned int **c);
                   2301: void mulgf2vectmat(int n,unsigned int *a,unsigned int **b,unsigned int *c);
                   2302: int mulgf2vectvect(int n,unsigned int *a,unsigned int *b);
                   2303: int invgf2mat(int n,unsigned int **a,unsigned int **b);
                   2304: void _mulup2_22(unsigned int *a1,unsigned int *a2,unsigned int *ar);
                   2305: void _mulup2_33(unsigned int *a1,unsigned int *a2,unsigned int *ar);
                   2306: void _mulup2_44(unsigned int *a1,unsigned int *a2,unsigned int *ar);
                   2307: void _mulup2_55(unsigned int *a1,unsigned int *a2,unsigned int *ar);
                   2308: void _mulup2_66(unsigned int *a1,unsigned int *a2,unsigned int *ar);
                   2309: void type1_bin_invup2(UP2 a,int n,UP2 *inv);
                   2310: UP2 *compute_tab_gf2n(UP2 f);
                   2311: UP compute_trace_gf2n(UP2 *tab,GF2N c,int n);
                   2312: void up2toup(UP2 f,UP *r);
                   2313: void find_root_up2(UP2 f,GF2N *r);
                   2314: void addq(Q n1,Q n2,Q *nr);
                   2315: void subq(Q n1,Q n2,Q *nr);
                   2316: void mulq(Q n1,Q n2,Q *nr);
                   2317: void divq(Q n1,Q n2,Q *nq);
                   2318: void divsq(Q n1,Q n2,Q *nq);
                   2319: void invq(Q n,Q *nr);
                   2320: void chsgnq(Q n,Q *nr);
                   2321: void pwrq(Q n1,Q n,Q *nr);
                   2322: int cmpq(Q q1,Q q2);
                   2323: void remq(Q n,Q m,Q *nr);
                   2324: void mkbc(int n,Z *t);
                   2325: void mkwcm(int k,int l,int m,int *t);
                   2326: void invl(Q a,Q mod,Q *ar);
                   2327: void plisttop(P *f,V v,int n,P *gp);
                   2328: int divtp(VL vl,P p1,P p2,P *q);
                   2329: int divtdcp(VL vl,P p1,P p2,P *q);
                   2330: int divtpz(VL vl,P p1,P p2,P *q);
                   2331: int divtdcpz(VL vl,P p1,P p2,P *q);
                   2332: void udivpz(P f1,P f2,P *fqp,P *frp);
                   2333: void udivpwm(Z mod,P p1,P p2,P *q,P *r);
                   2334: void udivpzwm(Z mod,P f1,P f2,P *fqp,P *frp);
                   2335: void henmv(VL vl,VN vn,P f,P g0,P h0,P a0,P b0,P lg,P lh,P lg0,P lh0,Z q,int k,P *gp,P *hp);
                   2336: void henmvmain(VL vl,VN vn,P f,P fi0,P fi1,P gi0,P gi1,P l0,P l1,Z mod,Z mod2,int k,P *fr0,P *fr1);
                   2337: void henzq(P f,P i0,UM fi0,P i1,UM fi1,int p,int k,P *fr0p,P *fr1p,P *gr0p,P *gr1p,Z *qrp);
                   2338: void henzq1(P g,P h,Q bound,P *gcp,P *hcp,Z *qp);
                   2339: void addm2p(VL vl,Z mod,Z mod2,P n1,P n2,P *nr);
                   2340: void subm2p(VL vl,Z mod,Z mod2,P n1,P n2,P *nr);
                   2341: void mulm2p(VL vl,Z mod,Z mod2,P n1,P n2,P *nr);
                   2342: void addm2q(Z mod,Z mod2,Z n1,Z n2,Z *nr);
                   2343: void subm2q(Z mod,Z mod2,Z n1,Z n2,Z *nr);
                   2344: void mulm2q(Z mod,Z mod2,Z n1,Z n2,Z *nr);
                   2345: void rem2q(Z n,Z m,Z m2,Z *nr);
                   2346: void exthpc_generic(VL vl,P p,int d,V v,P *pr);
                   2347: void exthp(VL vl,P p,int d,P *pr);
                   2348: void exthpc(VL vl,V v,P p,int d,P *pr);
                   2349: void cbound(VL vl,P p,Q *b);
                   2350: int geldb(VL vl,P p);
                   2351: int getdeg(V v,P p);
                   2352: void cmax(P p,Q *b);
                   2353: int nextbin(VN vn,int n);
                   2354: void mulsgn(VN vn,VN vnt,int n,VN vn1);
                   2355: void next(VN vn);
                   2356: void clctv(VL vl,P p,VL *nvlp);
                   2357: void markv(VN vn,int n,P p);
                   2358: void vntovl(VN vn,int n,VL *vlp);
                   2359: int dbound(V v,P f);
                   2360: int homdeg(P f);
                   2361: int minhomdeg(P f);
                   2362: void adjc(VL vl,P f,P a,P lc0,Z q,P *fr,P *ar);
                   2363: void affinemain(VL vl,P p,V v0,int n,P *pl,P *pr);
                   2364: void restore(VL vl,P f,VN vn,P *fr);
                   2365: void mergev(VL vl,VL vl1,VL vl2,VL *nvlp);
                   2366: void substvp(VL vl,P f,VN vn,P *g);
                   2367: void affine(VL vl,P f,VN vn,P *fr);
                   2368: void addnum(VL vl,Num a,Num b,Num *c);
                   2369: void subnum(VL vl,Num a,Num b,Num *c);
                   2370: void mulnum(VL vl,Num a,Num b,Num *c);
                   2371: void divnum(VL vl,Num a,Num b,Num *c);
                   2372: void pwrnum(VL vl,Num a,Num b,Num *c);
                   2373: void chsgnnum(Num a,Num *c);
                   2374: int compnum(VL vl,Num a,Num b);
                   2375: void one_ff(Num *c);
                   2376: int negative_number(Num c);
                   2377: void simp_ff(Obj p,Obj *rp);
                   2378: int fft_available(int d1,int n1,int d2,int n2);
                   2379: void get_fft_prime(int index,int *p,int *d);
                   2380: void nglob_init();
                   2381: void get_eg(struct oEGT *p);
                   2382: void init_eg(struct oEGT *eg);
                   2383: void add_eg(struct oEGT *base,struct oEGT *start,struct oEGT *end);
                   2384: void print_eg(char *item,struct oEGT *eg);
                   2385: void print_split_eg(struct oEGT *start,struct oEGT *end);
                   2386: void print_split_e(struct oEGT *start,struct oEGT *end);
                   2387: void suspend_timer() ;
                   2388: void resume_timer() ;
                   2389: void reset_engine() ;
                   2390: unsigned int get_asir_version() ;
                   2391: char *get_asir_distribution();
                   2392: void create_error(ERR *err,unsigned int serial,char *msg,LIST trace);
                   2393: void init_lprime();
                   2394: int get_lprime(int index);
                   2395: void create_new_lprimes(int index);
                   2396: void reorderp(VL nvl,VL ovl,P p,P *pr);
                   2397: void substp(VL vl,P p,V v0,P p0,P *pr);
                   2398: void detp(VL vl,P **rmat,int n,P *dp);
                   2399: void invmatp(VL vl,P **rmat,int n,P ***imatp,P *dnp);
                   2400: void reordvar(VL vl,V v,VL *nvlp);
                   2401: void gcdprsp(VL vl,P p1,P p2,P *pr);
                   2402: void gcdcp(VL vl,P p,P *pr);
                   2403: void sprs(VL vl,V v,P p1,P p2,P *pr);
                   2404: void resultp(VL vl,V v,P p1,P p2,P *pr);
                   2405: void srch2(VL vl,V v,P p1,P p2,P *pr);
                   2406: void srcr(VL vl,V v,P p1,P p2,P *pr);
                   2407: void res_ch_det(VL vl,V v,P p1,P p2,P *pr);
                   2408: void res_detmp(VL vl,int mod,V v,P p1,P p2,P *dp);
                   2409: void premp(VL vl,P p1,P p2,P *pr);
                   2410: void ptozp0(P p,P *pr);
                   2411: void mindegp(VL vl,P p,VL *mvlp,P *pr);
                   2412: void maxdegp(VL vl,P p,VL *mvlp,P *pr);
                   2413: void min_common_vars_in_coefp(VL vl,P p,VL *mvlp,P *pr);
                   2414: void minlcdegp(VL vl,P p,VL *mvlp,P *pr);
                   2415: void sort_by_deg(int n,P *p,P *pr);
                   2416: void sort_by_deg_rev(int n,P *p,P *pr);
                   2417: void minchdegp(VL vl,P p,VL *mvlp,P *pr);
                   2418: int getchomdeg(V v,P p);
                   2419: int getlchomdeg(V v,P p,int *d);
                   2420: int nmonop(P p);
                   2421: int qpcheck(Obj p);
                   2422: int uzpcheck(Obj p);
                   2423: int p_mag(P p);
                   2424: int maxblenp(P p);
                   2425: void berle(int index,int count,P f,ML *listp);
                   2426: int berlecnt(int mod,UM f);
                   2427: int berlecntmain(int mod,int n,int m,int **c);
                   2428: UM *berlemain(int mod,UM f,UM *fp);
                   2429: void hensel(int index,int count,P f,ML *listp);
                   2430: void hensel2(int index,int count,P f,ML *listp);
                   2431: void henmain2(LUM f,UM g0,UM h0,UM a0,UM b0,int m,int bound,LUM *gp);
                   2432: void clearlum(int n,int bound,LUM f);
                   2433: void addtolum(int m,int bound,LUM f,LUM g);
                   2434: void hsq(int index,int count,P f,int *nindex,DCP *dcp);
                   2435: void gcdgen(P f,ML blist,ML *clistp);
                   2436: void henprep2(int mod,int q,int k,UM f,UM g,UM h,UM qg,UM qh,UM qa,UM qb);
                   2437: void henprep(P f,ML blist,ML clist,ML *bqlistp,ML *cqlistp);
                   2438: void henmain(LUM f,ML bqlist,ML cqlist,ML *listp);
                   2439: int mignotte(int q,P f);
                   2440: int mig(int q,int d,P f);
                   2441: void sqad(mp_limb_t man,int exp);
                   2442: void ptolum(int q,int bound,P f,LUM fl);
                   2443: void modfctrp(P p,int mod,int flag,DCP *dcp);
                   2444: void gensqfrum(int mod,UM p,struct oDUM *dc);
                   2445: void ddd(int mod,UM f,UM *r);
                   2446: void canzas(int mod,UM f,int d,UM *base,UM *r);
                   2447: void randum(int mod,int d,UM p);
                   2448: void pwrmodum(int mod,UM p,int e,UM f,UM pr);
                   2449: void spwrum0(int mod,UM m,UM f,Z e,UM r);
                   2450: void mult_mod_tab(UM p,int mod,UM *tab,UM r,int d);
                   2451: void make_qmat(UM p,int mod,UM *tab,int ***mp);
                   2452: void null_mod(int **mat,int mod,int n,int *ind);
                   2453: void null_to_sol(int **mat,int *ind,int mod,int n,UM *r);
                   2454: void newddd(int mod,UM f,UM *r);
                   2455: int nfctr_mod(UM f,int mod);
                   2456: int irred_check(UM f,int mod);
                   2457: int berlekamp(UM p,int mod,int df,UM *tab,UM *r);
                   2458: void minipoly_mod(int mod,UM f,UM p,UM mp);
                   2459: void lnf_mod(int mod,int n,UM p0,UM p1,struct p_pair *list,UM np0,UM np1);
                   2460: void showum(UM p);
                   2461: void showumat(int **mat,int n);
                   2462: int find_root(int mod,UM p,int *root);
                   2463: void fctrp(VL vl,P f,DCP *dcp);
                   2464: void fctr_wrt_v_p(VL vl,P f,V v,DCP *dcp);
                   2465: void homfctr(VL vl,P g,DCP *dcp);
                   2466: void mfctr(VL vl,P f,DCP *dcp);
                   2467: void mfctr_wrt_v(VL vl,P f,V v,DCP *dcp);
                   2468: void adjsgn(P p,DCP dc);
                   2469: int headsgn(P p);
                   2470: void fctrwithmvp(VL vl,P f,V v,DCP *dcp);
                   2471: void mfctrwithmv(VL vl,P f,V v,DCP *dcp);
                   2472: void ufctr(P f,int hint,DCP *dcp);
                   2473: void mfctrmain(VL vl,P p,DCP *dcp);
                   2474: void ufctrmain(P p,int hint,DCP *dcp);
                   2475: void cycm(V v,int n,DCP *dcp);
                   2476: void cycp(V v,int n,DCP *dcp);
                   2477: void calcphi(V v,int n,struct oMF *mfp);
                   2478: void mkssum(V v,int e,int s,int sgn,P *r);
                   2479: int iscycp(P f);
                   2480: int iscycm(P f);
                   2481: void sortfs(DCP *dcp);
                   2482: void sortfsrev(DCP *dcp);
                   2483: void nthrootchk(P f,struct oDUM *dc,ML fp,DCP *dcp);
                   2484: void sqfrp(VL vl,P f,DCP *dcp);
                   2485: void msqfr(VL vl,P f,DCP *dcp);
                   2486: void usqp(P f,DCP *dcp);
                   2487: void msqfrmain(VL vl,P p,DCP *dcp);
                   2488: void msqfrmainmain(VL vl,P p,VN vn,P p0,DCP dc0,DCP *dcp,P *pp);
                   2489: void mfctrhen2(VL vl,VN vn,P f,P f0,P g0,P h0,P lcg,P lch,P *gp);
                   2490: int sqfrchk(P p);
                   2491: int cycchk(P p);
                   2492: int zerovpchk(VL vl,P p,VN vn);
                   2493: int valideval(VL vl,DCP dc,VN vn);
                   2494: void estimatelc(VL vl,Z c,DCP dc,VN vn,P *lcp);
                   2495: void monomialfctr(VL vl,P p,P *pr,DCP *dcp);
                   2496: void afctr(VL vl,P p0,P p,DCP *dcp);
                   2497: void afctrmain(VL vl,P p0,P p,int init,DCP *dcp);
                   2498: int divtmp(VL vl,int mod,P p1,P p2,P *q);
                   2499: int divtdcmp(VL vl,int mod,P p1,P p2,P *q);
                   2500: void GC_gcollect();
                   2501:
                   2502: /* IMAT */
                   2503: void Pnewimat(NODE, IMAT *);
                   2504: void PChsgnI(NODE, IMAT *);
                   2505: void Pm2Im(NODE, IMAT *);
                   2506: void PIm2m(NODE, MAT *);
                   2507:
                   2508: void AddMatI(VL, IMAT, IMAT, IMAT *);
                   2509: void MulMatI(VL, IMAT, IMAT, IMAT *);
                   2510: void MulMatG(VL, Obj, Obj, Obj *);
                   2511: void MulrMatI(VL, Obj, Obj, Obj *);
                   2512: void MulMatS(VL, IMAT, IMAT, IMAT *);
                   2513: void PutIent(IMAT, int, int, Obj);
                   2514: void GetIent(IMAT, int, int, Obj);
                   2515: void GetIbody(IMAT, int, int, Obj *);
                   2516: void ChsgnI(IMAT, IMAT *c);
                   2517: void AppendIent(IMAT, int, int, Obj);
                   2518: void MEnt(int, int, int, Obj, IENT *);
                   2519: void GetForeIent(IMATC *, IENT *, int *);
                   2520: void GetNextIent(IMATC *, IENT *, int *);
                   2521: void SubMatI(VL, IMAT, IMAT, IMAT *);
                   2522: /* IMAT */
                   2523:
                   2524:
                   2525: #if 0 && !defined(VISUAL) && !defined(__MINGW32__)
                   2526: void bzero(const void *,int);
                   2527: void bcopy(const void *,void *,int);
                   2528: char *index(char *,int);
                   2529: #endif
                   2530:
                   2531: void chsgnnbp(NBP p,NBP *rp);
                   2532: void subnbp(VL vl,NBP p1,NBP p2, NBP *rp);
                   2533: void addnbp(VL vl,NBP p1,NBP p2, NBP *rp);
                   2534: void mulnbp(VL vl,NBP p1,NBP p2, NBP *rp);
                   2535: void pwrnbp(VL vl,NBP p1,Z n, NBP *rp);
                   2536: int compnbp(VL vl,NBP p1,NBP p2);
                   2537:
                   2538: #define WORDSIZE_IN_N(a) (ABS((a)->_mp_size)*GMP_LIMB_BITS/32)
                   2539:
                   2540: #define MPZTOZ(g,q) (!mpz_sgn(g)?((q)=0):(NEWZ(q),BDY(q)[0]=(g)[0],(q)))
                   2541: #define MPDNTOQ(n,d,q) (NEWQ(q),mpq_numref(BDY(q))[0]=(n)[0],mpq_denref(BDY(q))[0]=(d)[0],(q))
                   2542: #define MPQTOQ(g,q) (!mpq_sgn(g)?((q)=0):(NEWQ(q),BDY(q)[0]=(g)[0],(q)))
                   2543:
                   2544: #define INTMPQ(a)  (!mpz_cmp_ui(mpq_denref(a),1))
1.3       noro     2545: #define INTQ(a) ((a)&&NUM(a)&&RATN(a)&&((Q)a)->z==1)
1.1       noro     2546: #define UNIQ(a) (INTQ(a)&&!mpz_cmp_si(BDY((Z)a),1))
                   2547: #define MUNIQ(a) (INTQ(a)&&!mpz_cmp_si(BDY((Z)a),-1))
                   2548:
                   2549: #define MPZTOMPQ(z,q) (mpq_init(q),mpq_numref(q)[0] = (z)[0],mpz_set_ui(mpq_denref(q),1))
                   2550:
                   2551: #define MPFRTOBF(g,q) (NEWBF(q),BDY(q)[0]=(g)[0],(q))
                   2552:
                   2553: void *gc_realloc(void *p,size_t osize,size_t nsize);
                   2554: void gc_free(void *p,size_t size);
                   2555: void init_gmpq();
                   2556: Q mpqtozq(mpq_t a);
1.2       noro     2557:
                   2558: unsigned long mul64(unsigned long a,unsigned long b,unsigned long *c);
                   2559: unsigned long mod64(unsigned long u,unsigned long l,unsigned long b);
                   2560: unsigned long mulmod64(unsigned long a,unsigned long b,unsigned long m);
                   2561: unsigned long muladdmod64(unsigned long a,unsigned long b,unsigned long c,unsigned long m);
                   2562: unsigned long invmod64(unsigned long a,unsigned long m);
                   2563:
1.1       noro     2564: void addz(Z n1,Z n2,Z *nr);
                   2565: void subz(Z n1,Z n2,Z *nr);
                   2566: void mulz(Z n1,Z n2,Z *nr);
                   2567: void mul1z(Z n1,long n2,Z *nr);
                   2568: void muladdtoz(Z n1,Z n2,Z *nr);
                   2569: void mul1addtoz(Z n1,long n2,Z *nr);
                   2570: void divz(Z n1,Z n2,Z *nq);
                   2571: void divqrz(Z n1,Z n2,Z *nq,Z *nr);
                   2572: void remz(Z n1,Z n2,Z *nr);
                   2573: void invz(Z n1,Z n2,Z *nr);
                   2574: void chsgnz(Z n,Z *nr);
                   2575: void absz(Z n,Z *nr);
                   2576: int evenz(Z n);
                   2577: int smallz(Z n);
                   2578: void bshiftz(Z n,int s,Z *nr);
                   2579: void pwrz(Z n1,Z n,Z *nr);
                   2580: int cmpz(Z q1,Z q2);
                   2581: void gcdz(Z n1,Z n2,Z *nq);
                   2582: void lcmz(Z n1,Z n2,Z *nq);
                   2583: void gcdvz(VECT v,Z *q);
                   2584: void gcdvz_estimate(VECT v,Z *q);
                   2585: void factorialz(unsigned int n,Z *nr);
                   2586: void randomz(int blen,Z *nr);
                   2587: int tstbitz(Z n,int k);
                   2588: void addq(Q n1,Q n2,Q *nr);
                   2589: void subq(Q n1,Q n2,Q *nr);
                   2590: void mulq(Q n1,Q n2,Q *nr);
                   2591: void divq(Q n1,Q n2,Q *nq);
                   2592: void chsgnq(Q n,Q *nr);
                   2593: void absq(Q n,Q *nr);
                   2594: void pwrq(Q n1,Q n,Q *nr);
                   2595: int cmpq(Q n1,Q n2);
                   2596: void mkwc(int k,int l,Z *t);
                   2597: unsigned int remqi(Q n,unsigned int m);
                   2598: void nmq(Q q,Z *z);
                   2599: void dnq(Q q,Z *z);
                   2600: void _mdtodp(DP p,DP *pr);
                   2601: void add_denomlist(P f);
                   2602: void algobjtorat(Obj f,Obj *r);
                   2603: void algtodalg(Alg a,DAlg *r);
                   2604: void appenduflist(NODE n);
                   2605: void arf_add(VL,Obj,Obj,Obj *);
                   2606: void arf_chsgn(Obj,Obj *);
                   2607: void arf_div(VL,Obj,Obj,Obj *);
                   2608: void arf_mul(VL,Obj,Obj,Obj *);
                   2609: void arf_sub(VL,Obj,Obj,Obj *);
                   2610: void asir_terminate(int);
                   2611: void check_intr();
                   2612: void clctalg(P,VL *);
                   2613: void comm_muld_trunc(VL vl,DP p1,DP p2,DL dl,DP *pr);
                   2614: void comm_quod(VL vl,DP p1,DP p2,DP *pr);
                   2615: void create_modorder_spec(int id,LIST shift,struct modorder_spec **s);
                   2616: void dalgtoalg(DAlg da,Alg *r);
                   2617: void divsz(Z n1,Z n2,Z *nq);
                   2618: void dp_ht(DP p,DP *rp);
                   2619: void dp_interreduce(LIST f,LIST v,int field,struct order_spec *ord,LIST *rp);
                   2620: void dp_mbase(NODE,NODE *);
                   2621: void dp_nf_tab_f(DP p,LIST *tab,DP *rp);
                   2622: void dp_ptozp(DP,DP *);
                   2623: void dp_sort(DP p,DP *rp);
                   2624: void dp_subd(DP,DP,DP *);
                   2625: void dp_true_nf(NODE,DP,DP *,int,DP *,P *);
                   2626: void dp_true_nf_marked(NODE b,DP g,DP *ps,DP *hps,DP *rp,P *nmp,P *dnp);
                   2627: void dp_true_nf_marked_mod(NODE b,DP g,DP *ps,DP *hps,int mod,DP *rp,P *dnp);
                   2628: void gbcheck_list(NODE f,int n,VECT *gp,LIST *pp);
                   2629: void gcdsf(VL vl,P *pa,int k,P *r);
                   2630: void get_algtree(Obj f,VL *r);
                   2631: void get_vars(Obj,VL *);
                   2632: void gfstopgfs(GFS a,V v,P *c);
                   2633: void henmain_incremental(LUM f,LUM *bqlist,ML cqlist, int np, int mod, int start, int bound);
                   2634: void iftogfs(int n,GFS *c);
                   2635: void indextogfs(int index,GFS *c);
                   2636: void init_denomlist();
                   2637: void inva_chrem(P p0,P p,NODE *pr);
                   2638: void itogfs(int n,GFS *c);
                   2639: void makevar(char *,P *);
                   2640: void mdtodp(DP p,DP *pr);
                   2641: void mfctrsf(VL vl,P f,DCP *dcp);
                   2642: void mulp_trunc(VL vl,P p1,P p2,VN vn,P *pr);
                   2643: void nd_det(int mod,MAT f,P *rp);
                   2644: void nd_gr(LIST f,LIST v,int m,int homo,int retdp,int f4,struct order_spec *ord,LIST *rp);
                   2645: void nd_gr_postproc(LIST f,LIST v,int m,struct order_spec *ord,int do_check,LIST *rp);
                   2646: void nd_gr_recompute_trace(LIST f,LIST v,int m,struct order_spec *ord,LIST tlist,LIST *rp);
1.9       noro     2647: void nd_gr_trace(LIST f,LIST v,int trace,int homo,int retdp,int f4,struct order_spec *ord,LIST *rp);
1.1       noro     2648: void nd_nf_p(Obj f,LIST g,LIST v,int m,struct order_spec *ord,Obj *rp);
                   2649: void obj_algtodalg(Obj obj,Obj *r);
                   2650: void obj_dalgtoalg(Obj obj,Obj *r);
                   2651: void ox_bcast_102(int root);
                   2652: void ox_reduce_102(int root,void (*func)());
                   2653: void print_to_wfep(Obj obj);
                   2654: void printz(Z n);
                   2655: void pthrootgfs(GFS a,GFS *b);
                   2656: void quop_trunc(VL vl,P p1,P p2,VN vn,P *pr);
                   2657: void red_by_vect_sf(int m,unsigned int *p,unsigned int *r,unsigned int hc,int len);
                   2658: void red_by_vect_lf(mpz_t *p,mpz_t *r,mpz_t hc,int len);
                   2659: void removecont_array(P *c,int n,int full);
                   2660: void reset_top_weight();
                   2661: void setfield_dalg(NODE alist);
                   2662: void setfield_gb(NODE gb,VL vl,struct order_spec *spec);
                   2663: void setsecuremode(int value);
                   2664: void sfbfctr_shift(P f,V x,V y,int degbound,GFS *evp,P *sfp,DCP *dcp);
                   2665: void sfexgcd_by_hensel(BM g,BM h,int dy,BM *ap,BM *bp);
                   2666: void sfptopsfp(P f,V v,P *gp);
                   2667: void simpdalg(DAlg da,DAlg *r);
                   2668: void simple_derivr(VL vl,Obj a,V v,Obj *b);
                   2669: void substpp(VL vl,P p,V *vvect,P *svect,int nv,P *pr);
                   2670: void ufctrsf(P p,DCP *dcp);
                   2671: void vltopl(VL vl,LIST *l);
                   2672:
                   2673: int arf_comp(VL, Obj, Obj);
                   2674: int available_mcindex(int ind);
                   2675: int compare_zero(int n,int *u,int row,int **w);
                   2676: int create_composite_order_spec(VL vl,LIST order,struct order_spec **specp);
                   2677: int create_order_spec(VL,Obj,struct order_spec **);
                   2678: int dalgtoup(DAlg da,P *up,Z *dn);
                   2679: int dl_equal(int nv,DL dl1,DL dl2);
                   2680: int dp_redble(DP,DP);
                   2681: int dpv_hp(DPV p);
                   2682: int generic_gauss_elim(MAT mat,MAT *nm,Z *dn,int **rindp,int **cindp);
                   2683: int generic_gauss_elim2(MAT mat,MAT *nm,Z *dn,int **rindp,int **cindp);
                   2684: int generic_gauss_elim_full(MAT mat,MAT *nm,Z *dn,int **rindp,int **cindp);
                   2685: int generic_gauss_elim_direct(MAT mat,MAT *nm,Z *dn,int **rindp,int **cindp);
                   2686: int generic_gauss_elim_hensel(MAT mat,MAT *nmmat,Z *dn,int **rindp,int **cindp);
                   2687: int generic_gauss_elim_hensel_dalg(MAT mat,DP *mb,MAT *nmmat,Z *dn,int **rindp,int **cindp);
                   2688: int generic_gauss_elim_mod(int **mat0,int row,int col,int md,int *colstat);
                   2689: int generic_gauss_elim_mod2(int **mat0,int row,int col,int md,int *colstat,int *rowstat);
                   2690: int get_field_type(P p);
                   2691: int get_ox_server_id(int index);
                   2692: int getsecuremode();
                   2693: int find_lhs_and_lu_mod(unsigned int **a,int row,int col,unsigned int md,int **rinfo,int **cinfo);
                   2694: void solve_by_lu_mod(int **a,int n,int md,int **b,int l,int normalize);
                   2695: int inttorat(Z c,Z m,Z b,Z *nmp,Z *dnp);
                   2696: int intvtoratv(Z *v,int n,Z md,Z b,Z *nm,Z *dn);
                   2697: int intmtoratm(MAT mat,Z md,MAT nm,Z *dn);
                   2698: int intmtoratm2(MAT mat,Z md,MAT nm,Z *dn,int *stat);
                   2699: int gensolve_check(MAT mat,MAT nm,Z dn,int *rind,int *cind);
                   2700: int gensolve_check2(MAT mat,MAT nm,Z *dn,int *rind,int *cind);
                   2701: int invdalg(DAlg a,DAlg *c);
                   2702: int is_eq(Obj a0,Obj a1);
                   2703: int length(NODE);
                   2704: int lu_mod(unsigned int **a,int n,unsigned int md,int **rinfo);
                   2705: int n_bits_z(Z a);
                   2706: int nd_gauss_elim_z(Z **mat0,int *sugar,int row,int col,int *colstat);
                   2707: int poly_is_dependent(P p,V v);
                   2708: int setsecureflag(char *name,int value);
                   2709: int sfdegtest(int dy,int bound,UM *d1c,int k,int *in);
                   2710: int sgnz(Z n);
                   2711: int sgnq(Q n);
                   2712: void binarytoz(char *binary,Z *np);
                   2713: void hextoz(char *hex,Z *np);
                   2714: void todouble(Obj,Obj *);
                   2715:
                   2716: void lmtolf(LM f,Z *b);
                   2717:
1.5       noro     2718: #if SIZEOF_LONG == 8
                   2719: mp_limb_t get_lprime64(int index);
                   2720: mp_limb_t **almat64(int,int);
                   2721: mp_limb_t remqi64(Q n,mp_limb_t m);
1.6       noro     2722: int generic_gauss_elim64(MAT mat,MAT *nm,Z *dn,int **rindp,int **cindp);
                   2723: int generic_gauss_elim_mod64(mp_limb_t **mat,int row,int col,mp_limb_t md,int *colstat);
1.5       noro     2724: #endif
                   2725:
1.1       noro     2726: #if defined(VISUAL) || defined(__MINGW32__)
                   2727: void check_intr();
                   2728: void enter_signal_cs();
                   2729: void leave_signal_cs();
                   2730: void leave_signal_cs_all();
                   2731: #define LEAVE_SIGNAL_CS_ALL  leave_signal_cs_all()
                   2732: #else
                   2733: #define LEAVE_SIGNAL_CS_ALL
                   2734: #endif

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>