[BACK]Return to nd.c CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2000 / engine

Annotation of OpenXM_contrib2/asir2000/engine/nd.c, Revision 1.49

1.49    ! noro        1: /* $OpenXM: OpenXM_contrib2/asir2000/engine/nd.c,v 1.48 2003/08/26 01:42:12 noro Exp $ */
1.2       noro        2:
1.1       noro        3: #include "ca.h"
                      4: #include "inline.h"
                      5:
                      6: #if defined(__GNUC__)
                      7: #define INLINE inline
                      8: #elif defined(VISUAL)
                      9: #define INLINE __inline
                     10: #else
                     11: #define INLINE
                     12: #endif
                     13:
1.47      noro       14: #define USE_GEOBUCKET 1
1.28      noro       15:
1.1       noro       16: #define REDTAB_LEN 32003
                     17:
1.40      noro       18: /* GeoBucket for polynomial addition */
                     19:
1.1       noro       20: typedef struct oPGeoBucket {
                     21:        int m;
                     22:        struct oND *body[32];
                     23: } *PGeoBucket;
                     24:
1.40      noro       25: /* distributed polynomial; linked list rep. */
1.1       noro       26: typedef struct oND {
                     27:        struct oNM *body;
                     28:        int nv;
1.31      noro       29:        int len;
1.1       noro       30:        int sugar;
                     31: } *ND;
                     32:
1.40      noro       33: /* distributed polynomial; array rep. */
1.3       noro       34: typedef struct oNDV {
                     35:        struct oNMV *body;
                     36:        int nv;
1.31      noro       37:        int len;
1.3       noro       38:        int sugar;
                     39: } *NDV;
                     40:
1.40      noro       41: /* monomial; linked list rep. */
1.1       noro       42: typedef struct oNM {
                     43:        struct oNM *next;
1.14      noro       44:        union {
                     45:                int m;
                     46:                Q z;
                     47:        } c;
1.1       noro       48:        unsigned int dl[1];
                     49: } *NM;
                     50:
1.40      noro       51: /* monomial; array rep. */
1.3       noro       52: typedef struct oNMV {
1.14      noro       53:        union {
                     54:                int m;
                     55:                Q z;
                     56:        } c;
1.3       noro       57:        unsigned int dl[1];
                     58: } *NMV;
                     59:
1.40      noro       60: /* history of reducer */
1.13      noro       61: typedef struct oRHist {
                     62:        struct oRHist *next;
                     63:        int index;
1.34      noro       64:        int sugar;
1.13      noro       65:        unsigned int dl[1];
                     66: } *RHist;
                     67:
1.40      noro       68: /* S-pair list */
1.1       noro       69: typedef struct oND_pairs {
                     70:        struct oND_pairs *next;
                     71:        int i1,i2;
1.34      noro       72:        int sugar;
1.1       noro       73:        unsigned int lcm[1];
                     74: } *ND_pairs;
                     75:
1.42      noro       76: /* index and shift count for each exponent */
                     77: typedef struct oEPOS {
                     78:        int i; /* index */
                     79:        int s; /* shift */
                     80: } *EPOS;
                     81:
1.43      noro       82: typedef struct oBlockMask {
                     83:        int n;
                     84:        struct order_pair *order_pair;
                     85:        unsigned int **mask;
                     86: } *BlockMask;
                     87:
1.45      noro       88: typedef struct oBaseSet {
                     89:        int len;
                     90:        NDV *ps;
                     91:        unsigned int **bound;
                     92: } *BaseSet;
                     93:
                     94: int (*ndl_compare_function)(unsigned int *a1,unsigned int *a2);
1.32      noro       95:
1.42      noro       96: static double nd_scale=2;
1.1       noro       97: static unsigned int **nd_bound;
1.42      noro       98: static struct order_spec *nd_ord;
                     99: static EPOS nd_epos;
1.43      noro      100: static BlockMask nd_blockmask;
1.42      noro      101: static int nd_nvar;
                    102: static int nd_isrlex;
                    103: static int nd_epw,nd_bpe,nd_wpd,nd_exporigin;
                    104: static unsigned int nd_mask[32];
                    105: static unsigned int nd_mask0,nd_mask1;
                    106:
                    107: static NM _nm_free_list;
                    108: static ND _nd_free_list;
                    109: static ND_pairs _ndp_free_list;
1.20      noro      110:
                    111: static NDV *nd_ps;
                    112: static NDV *nd_psq;
1.42      noro      113: static RHist *nd_psh;
                    114: static int nd_psn,nd_pslen;
1.20      noro      115:
1.42      noro      116: static RHist *nd_red;
1.1       noro      117:
1.42      noro      118: static int nd_found,nd_create,nd_notfirst;
                    119: static int nm_adv;
                    120: static int nmv_adv;
                    121: static int nd_dcomp;
1.1       noro      122:
1.34      noro      123: extern int Top,Reverse,dp_nelim;
1.1       noro      124:
1.40      noro      125: /* fundamental macros */
1.34      noro      126: #define TD(d) (d[0])
1.1       noro      127: #define HDL(d) ((d)->body->dl)
1.34      noro      128: #define HTD(d) (TD(HDL(d)))
1.14      noro      129: #define HCM(d) ((d)->body->c.m)
1.16      noro      130: #define HCQ(d) ((d)->body->c.z)
1.14      noro      131: #define CM(a) ((a)->c.m)
1.16      noro      132: #define CQ(a) ((a)->c.z)
1.14      noro      133: #define DL(a) ((a)->dl)
                    134: #define SG(a) ((a)->sugar)
                    135: #define LEN(a) ((a)->len)
1.33      noro      136: #define LCM(a) ((a)->lcm)
1.42      noro      137: #define GET_EXP(d,a) (((d)[nd_epos[a].i]>>nd_epos[a].s)&nd_mask0)
                    138: #define PUT_EXP(r,a,e) ((r)[nd_epos[a].i] |= ((e)<<nd_epos[a].s))
1.45      noro      139: #define XOR_EXP(r,a,e) ((r)[nd_epos[a].i] ^= ((e)<<nd_epos[a].s))
1.1       noro      140:
1.40      noro      141: /* macros for term comparison */
1.34      noro      142: #define TD_DL_COMPARE(d1,d2)\
1.41      noro      143: (TD(d1)>TD(d2)?1:(TD(d1)<TD(d2)?-1:ndl_lex_compare(d1,d2)))
1.43      noro      144: #if 0
1.34      noro      145: #define DL_COMPARE(d1,d2)\
1.43      noro      146: (nd_dcomp>0?TD_DL_COMPARE(d1,d2)\
                    147:          :(nd_dcomp==0?ndl_lex_compare(d1,d2)\
                    148:                      :(nd_blockmask?ndl_block_compare(d1,d2)\
1.45      noro      149:                                                                   :(*ndl_compare_function)(d1,d2))))
1.43      noro      150: #else
                    151: #define DL_COMPARE(d1,d2)\
1.45      noro      152: (nd_dcomp>0?TD_DL_COMPARE(d1,d2):(*ndl_compare_function)(d1,d2))
1.43      noro      153: #endif
1.34      noro      154:
1.40      noro      155: /* allocators */
1.15      noro      156: #define NEWRHist(r) \
1.41      noro      157: ((r)=(RHist)MALLOC(sizeof(struct oRHist)+(nd_wpd-1)*sizeof(unsigned int)))
1.34      noro      158: #define NEWND_pairs(m) \
                    159: if(!_ndp_free_list)_NDP_alloc();\
                    160: (m)=_ndp_free_list; _ndp_free_list = NEXT(_ndp_free_list)
                    161: #define NEWNM(m)\
                    162: if(!_nm_free_list)_NM_alloc();\
                    163: (m)=_nm_free_list; _nm_free_list = NEXT(_nm_free_list)
                    164: #define MKND(n,m,len,d)\
                    165: if(!_nd_free_list)_ND_alloc();\
                    166: (d)=_nd_free_list; _nd_free_list = (ND)BDY(_nd_free_list);\
                    167: NV(d)=(n); LEN(d)=(len); BDY(d)=(m)
1.40      noro      168: #define NEWNDV(d) ((d)=(NDV)MALLOC(sizeof(struct oNDV)))
                    169: #define MKNDV(n,m,l,d) NEWNDV(d); NV(d)=(n); BDY(d)=(m); LEN(d) = l;
1.1       noro      170:
1.40      noro      171: /* allocate and link a new object */
1.13      noro      172: #define NEXTRHist(r,c) \
                    173: if(!(r)){NEWRHist(r);(c)=(r);}else{NEWRHist(NEXT(c));(c)=NEXT(c);}
1.1       noro      174: #define NEXTNM(r,c) \
                    175: if(!(r)){NEWNM(r);(c)=(r);}else{NEWNM(NEXT(c));(c)=NEXT(c);}
                    176: #define NEXTNM2(r,c,s) \
                    177: if(!(r)){(c)=(r)=(s);}else{NEXT(c)=(s);(c)=(s);}
1.40      noro      178: #define NEXTND_pairs(r,c) \
                    179: if(!(r)){NEWND_pairs(r);(c)=(r);}else{NEWND_pairs(NEXT(c));(c)=NEXT(c);}
1.34      noro      180:
1.40      noro      181: /* deallocators */
1.1       noro      182: #define FREENM(m) NEXT(m)=_nm_free_list; _nm_free_list=(m)
                    183: #define FREENDP(m) NEXT(m)=_ndp_free_list; _ndp_free_list=(m)
                    184: #define FREEND(m) BDY(m)=(NM)_nd_free_list; _nd_free_list=(m)
                    185:
1.40      noro      186: /* macro for increasing pointer to NMV */
                    187: #define NMV_ADV(m) (m = (NMV)(((char *)m)+nmv_adv))
                    188:
                    189: /* external functions */
                    190: void GC_gcollect();
                    191: NODE append_one(NODE,int);
1.1       noro      192:
1.40      noro      193: /* manipulation of coefficients */
1.20      noro      194: void nd_removecont(int mod,ND p);
1.21      noro      195: void nd_removecont2(ND p1,ND p2);
1.40      noro      196: void removecont_array(Q *c,int n);
                    197:
                    198: /* GeoBucket functions */
1.25      noro      199: ND normalize_pbucket(int mod,PGeoBucket g);
                    200: int head_pbucket(int mod,PGeoBucket g);
1.26      noro      201: int head_pbucket_q(PGeoBucket g);
1.31      noro      202: void add_pbucket(int mod,PGeoBucket g,ND d);
1.25      noro      203: void free_pbucket(PGeoBucket b);
1.26      noro      204: void mulq_pbucket(PGeoBucket g,Q c);
1.25      noro      205: PGeoBucket create_pbucket();
1.20      noro      206:
1.40      noro      207: /* manipulation of pairs and bases */
1.39      noro      208: int nd_newps(int mod,ND a,ND aq);
1.40      noro      209: ND_pairs nd_newpairs( NODE g, int t );
1.1       noro      210: ND_pairs nd_minp( ND_pairs d, ND_pairs *prest );
                    211: NODE update_base(NODE nd,int ndp);
1.40      noro      212: ND_pairs update_pairs( ND_pairs d, NODE /* of index */ g, int t);
                    213: ND_pairs equivalent_pairs( ND_pairs d1, ND_pairs *prest );
                    214: ND_pairs crit_B( ND_pairs d, int s );
                    215: ND_pairs crit_M( ND_pairs d1 );
                    216: ND_pairs crit_F( ND_pairs d1 );
1.1       noro      217: int crit_2( int dp1, int dp2 );
1.40      noro      218:
                    219: /* top level functions */
                    220: void nd_gr(LIST f,LIST v,int m,struct order_spec *ord,LIST *rp);
                    221: void nd_gr_trace(LIST f,LIST v,int m,int homo,struct order_spec *ord,LIST *rp);
1.27      noro      222: NODE nd_gb(int m,int checkonly);
1.23      noro      223: NODE nd_gb_trace(int m);
1.40      noro      224:
                    225: /* ndl functions */
1.39      noro      226: int ndl_weight(unsigned int *d);
1.43      noro      227: int ndl_weight_mask(unsigned int *d,int i);
1.34      noro      228: void ndl_dehomogenize(unsigned int *p);
1.43      noro      229: void ndl_reconstruct(int obpe,EPOS oepos,unsigned int *d,unsigned int *r);
1.40      noro      230: INLINE int ndl_reducible(unsigned int *d1,unsigned int *d2);
                    231: INLINE int ndl_lex_compare(unsigned int *d1,unsigned int *d2);
1.43      noro      232: INLINE int ndl_block_compare(unsigned int *d1,unsigned int *d2);
1.40      noro      233: INLINE int ndl_equal(unsigned int *d1,unsigned int *d2);
                    234: INLINE void ndl_copy(unsigned int *d1,unsigned int *d2);
                    235: INLINE void ndl_add(unsigned int *d1,unsigned int *d2,unsigned int *d);
                    236: INLINE void ndl_sub(unsigned int *d1,unsigned int *d2,unsigned int *d);
                    237: INLINE int ndl_hash_value(unsigned int *d);
1.45      noro      238:
                    239: /* normal forms */
1.40      noro      240: INLINE int nd_find_reducer(ND g);
                    241: INLINE int nd_find_reducer_direct(ND g,NDV *ps,int len);
1.16      noro      242: int nd_sp(int mod,ND_pairs p,ND *nf);
                    243: int nd_nf(int mod,ND g,int full,ND *nf);
1.30      noro      244: int nd_nf_pbucket(int mod,ND g,int full,ND *nf);
1.45      noro      245: int nd_nf_direct(int mod,ND g,BaseSet base,int full,ND *rp);
1.40      noro      246:
                    247: /* finalizers */
                    248: NODE nd_reducebase(NODE x);
1.23      noro      249: NODE nd_reduceall(int m,NODE f);
1.27      noro      250: int nd_gbcheck(int m,NODE f);
                    251: int nd_membercheck(int m,NODE f);
1.40      noro      252:
                    253: /* allocators */
                    254: void nd_free_private_storage();
                    255: void _NM_alloc();
                    256: void _ND_alloc();
1.1       noro      257: void nd_free(ND p);
1.40      noro      258: void nd_free_redlist();
                    259:
                    260: /* printing */
1.1       noro      261: void ndl_print(unsigned int *dl);
                    262: void nd_print(ND p);
1.16      noro      263: void nd_print_q(ND p);
1.1       noro      264: void ndp_print(ND_pairs d);
1.40      noro      265:
                    266:
                    267: /* setup, reconstruct */
                    268: void nd_init_ord(struct order_spec *spec);
                    269: ND_pairs nd_reconstruct(int mod,int trace,ND_pairs ndp);
                    270: void nd_reconstruct_direct(int mod,NDV *ps,int len);
                    271: void nd_setup(int mod,int trace,NODE f);
                    272: void nd_setup_parameters();
1.43      noro      273: BlockMask nd_create_blockmask(struct order_spec *ord);
1.48      noro      274: int nd_get_exporigin(struct order_spec *ord);
1.40      noro      275:
                    276: /* ND functions */
                    277: int nd_check_candidate(NODE input,NODE cand);
                    278: void nd_mul_c(int mod,ND p,int mul);
                    279: void nd_mul_c_q(ND p,Q mul);
                    280: ND nd_remove_head(ND p);
1.1       noro      281: int nd_length(ND p);
1.34      noro      282: void nd_append_red(unsigned int *d,int i);
1.45      noro      283: unsigned int *ndv_compute_bound(NDV p);
1.5       noro      284: unsigned int *dp_compute_bound(DP p);
1.6       noro      285: ND nd_copy(ND p);
1.40      noro      286: ND nd_add(int mod,ND p1,ND p2);
                    287: ND nd_add_q(ND p1,ND p2);
1.41      noro      288: INLINE int nd_length(ND p);
1.4       noro      289:
1.40      noro      290: /* NDV functions */
1.19      noro      291: void ndv_mul_c(int mod,NDV p,int mul);
1.40      noro      292: void ndv_mul_c_q(NDV p,Q mul);
1.43      noro      293: void ndv_realloc(NDV p,int obpe,int oadv,EPOS oepos);
1.40      noro      294: ND ndv_mul_nm(int mod,NDV p,NM m0);
1.45      noro      295: void ndv_dehomogenize(NDV p,struct order_spec *spec);
1.40      noro      296: void ndv_removecont(int mod,NDV p);
                    297: void ndv_print(NDV p);
                    298: void ndv_print_q(NDV p);
                    299: void ndv_free(NDV p);
                    300:
                    301: /* converters */
1.16      noro      302: NDV ndtondv(int mod,ND p);
1.23      noro      303: ND ndvtond(int mod,NDV p);
1.16      noro      304: NDV dptondv(int,DP);
                    305: DP ndvtodp(int,NDV);
1.17      noro      306: ND dptond(int,DP);
                    307: DP ndtodp(int,ND);
1.1       noro      308:
                    309: void nd_free_private_storage()
                    310: {
                    311:        _nd_free_list = 0;
                    312:        _nm_free_list = 0;
1.5       noro      313:        _ndp_free_list = 0;
1.13      noro      314:        bzero(nd_red,sizeof(REDTAB_LEN*sizeof(RHist)));
1.1       noro      315:        GC_gcollect();
                    316: }
                    317:
                    318: void _NM_alloc()
                    319: {
                    320:        NM p;
                    321:        int i;
                    322:
1.11      noro      323:        for ( i = 0; i < 1024; i++ ) {
1.41      noro      324:                p = (NM)GC_malloc(sizeof(struct oNM)+(nd_wpd-1)*sizeof(unsigned int));
1.1       noro      325:                p->next = _nm_free_list; _nm_free_list = p;
                    326:        }
                    327: }
                    328:
                    329: void _ND_alloc()
                    330: {
                    331:        ND p;
                    332:        int i;
                    333:
                    334:        for ( i = 0; i < 1024; i++ ) {
                    335:                p = (ND)GC_malloc(sizeof(struct oND));
                    336:                p->body = (NM)_nd_free_list; _nd_free_list = p;
                    337:        }
                    338: }
                    339:
                    340: void _NDP_alloc()
                    341: {
                    342:        ND_pairs p;
                    343:        int i;
                    344:
1.11      noro      345:        for ( i = 0; i < 1024; i++ ) {
1.1       noro      346:                p = (ND_pairs)GC_malloc(sizeof(struct oND_pairs)
1.41      noro      347:                        +(nd_wpd-1)*sizeof(unsigned int));
1.1       noro      348:                p->next = _ndp_free_list; _ndp_free_list = p;
                    349:        }
                    350: }
                    351:
1.30      noro      352: INLINE int nd_length(ND p)
1.1       noro      353: {
                    354:        NM m;
                    355:        int i;
                    356:
                    357:        if ( !p )
                    358:                return 0;
                    359:        else {
                    360:                for ( i = 0, m = BDY(p); m; m = NEXT(m), i++ );
                    361:                return i;
                    362:        }
                    363: }
                    364:
1.35      noro      365: INLINE int ndl_reducible(unsigned int *d1,unsigned int *d2)
1.1       noro      366: {
                    367:        unsigned int u1,u2;
                    368:        int i,j;
                    369:
1.34      noro      370:        if ( TD(d1) < TD(d2) ) return 0;
1.1       noro      371:        switch ( nd_bpe ) {
                    372:                case 4:
1.41      noro      373:                        for ( i = nd_exporigin; i < nd_wpd; i++ ) {
1.1       noro      374:                                u1 = d1[i]; u2 = d2[i];
                    375:                                if ( (u1&0xf0000000) < (u2&0xf0000000) ) return 0;
                    376:                                if ( (u1&0xf000000) < (u2&0xf000000) ) return 0;
                    377:                                if ( (u1&0xf00000) < (u2&0xf00000) ) return 0;
                    378:                                if ( (u1&0xf0000) < (u2&0xf0000) ) return 0;
                    379:                                if ( (u1&0xf000) < (u2&0xf000) ) return 0;
                    380:                                if ( (u1&0xf00) < (u2&0xf00) ) return 0;
                    381:                                if ( (u1&0xf0) < (u2&0xf0) ) return 0;
                    382:                                if ( (u1&0xf) < (u2&0xf) ) return 0;
                    383:                        }
                    384:                        return 1;
                    385:                        break;
                    386:                case 6:
1.41      noro      387:                        for ( i = nd_exporigin; i < nd_wpd; i++ ) {
1.1       noro      388:                                u1 = d1[i]; u2 = d2[i];
                    389:                                if ( (u1&0x3f000000) < (u2&0x3f000000) ) return 0;
                    390:                                if ( (u1&0xfc0000) < (u2&0xfc0000) ) return 0;
                    391:                                if ( (u1&0x3f000) < (u2&0x3f000) ) return 0;
                    392:                                if ( (u1&0xfc0) < (u2&0xfc0) ) return 0;
                    393:                                if ( (u1&0x3f) < (u2&0x3f) ) return 0;
                    394:                        }
                    395:                        return 1;
                    396:                        break;
                    397:                case 8:
1.41      noro      398:                        for ( i = nd_exporigin; i < nd_wpd; i++ ) {
1.1       noro      399:                                u1 = d1[i]; u2 = d2[i];
                    400:                                if ( (u1&0xff000000) < (u2&0xff000000) ) return 0;
                    401:                                if ( (u1&0xff0000) < (u2&0xff0000) ) return 0;
                    402:                                if ( (u1&0xff00) < (u2&0xff00) ) return 0;
                    403:                                if ( (u1&0xff) < (u2&0xff) ) return 0;
                    404:                        }
                    405:                        return 1;
                    406:                        break;
                    407:                case 16:
1.41      noro      408:                        for ( i = nd_exporigin; i < nd_wpd; i++ ) {
1.1       noro      409:                                u1 = d1[i]; u2 = d2[i];
                    410:                                if ( (u1&0xffff0000) < (u2&0xffff0000) ) return 0;
                    411:                                if ( (u1&0xffff) < (u2&0xffff) ) return 0;
                    412:                        }
                    413:                        return 1;
                    414:                        break;
                    415:                case 32:
1.41      noro      416:                        for ( i = nd_exporigin; i < nd_wpd; i++ )
1.1       noro      417:                                if ( d1[i] < d2[i] ) return 0;
                    418:                        return 1;
                    419:                        break;
                    420:                default:
1.41      noro      421:                        for ( i = nd_exporigin; i < nd_wpd; i++ ) {
1.1       noro      422:                                u1 = d1[i]; u2 = d2[i];
                    423:                                for ( j = 0; j < nd_epw; j++ )
                    424:                                        if ( (u1&nd_mask[j]) < (u2&nd_mask[j]) ) return 0;
                    425:                        }
                    426:                        return 1;
                    427:        }
                    428: }
                    429:
1.34      noro      430: void ndl_dehomogenize(unsigned int *d)
1.23      noro      431: {
                    432:        unsigned int mask;
                    433:        unsigned int h;
1.31      noro      434:        int i,bits;
1.23      noro      435:
1.44      noro      436:        if ( nd_blockmask ) {
                    437:                h = GET_EXP(d,nd_nvar-1);
1.45      noro      438:                XOR_EXP(d,nd_nvar-1,h);
1.44      noro      439:                TD(d) -= h;
                    440:                d[nd_exporigin-1] -= h;
                    441:        } else {
                    442:                if ( nd_isrlex ) {
                    443:                        if ( nd_bpe == 32 ) {
                    444:                                h = d[nd_exporigin];
                    445:                                for ( i = nd_exporigin+1; i < nd_wpd; i++ )
                    446:                                        d[i-1] = d[i];
                    447:                                d[i-1] = 0;
                    448:                                TD(d) -= h;
                    449:                        } else {
                    450:                                bits = nd_epw*nd_bpe;
                    451:                                mask = bits==32?0xffffffff:((1<<(nd_epw*nd_bpe))-1);
                    452:                                h = (d[nd_exporigin]>>((nd_epw-1)*nd_bpe))&nd_mask0;
                    453:                                for ( i = nd_exporigin; i < nd_wpd; i++ )
                    454:                                        d[i] = ((d[i]<<nd_bpe)&mask)
                    455:                                                |(i+1<nd_wpd?((d[i+1]>>((nd_epw-1)*nd_bpe))&nd_mask0):0);
                    456:                                TD(d) -= h;
                    457:                        }
1.45      noro      458:                } else {
                    459:                        h = GET_EXP(d,nd_nvar-1);
                    460:                        XOR_EXP(d,nd_nvar-1,h);
                    461:                        TD(d) -= h;
                    462:                }
1.44      noro      463:        }
1.23      noro      464: }
                    465:
1.1       noro      466: void ndl_lcm(unsigned int *d1,unsigned *d2,unsigned int *d)
                    467: {
                    468:        unsigned int t1,t2,u,u1,u2;
1.43      noro      469:        int i,j,l;
1.1       noro      470:
                    471:        switch ( nd_bpe ) {
                    472:                case 4:
1.41      noro      473:                        for ( i = nd_exporigin; i < nd_wpd; i++ ) {
1.1       noro      474:                                u1 = d1[i]; u2 = d2[i];
                    475:                                t1 = (u1&0xf0000000); t2 = (u2&0xf0000000); u = t1>t2?t1:t2;
                    476:                                t1 = (u1&0xf000000); t2 = (u2&0xf000000); u |= t1>t2?t1:t2;
                    477:                                t1 = (u1&0xf00000); t2 = (u2&0xf00000); u |= t1>t2?t1:t2;
                    478:                                t1 = (u1&0xf0000); t2 = (u2&0xf0000); u |= t1>t2?t1:t2;
                    479:                                t1 = (u1&0xf000); t2 = (u2&0xf000); u |= t1>t2?t1:t2;
                    480:                                t1 = (u1&0xf00); t2 = (u2&0xf00); u |= t1>t2?t1:t2;
                    481:                                t1 = (u1&0xf0); t2 = (u2&0xf0); u |= t1>t2?t1:t2;
                    482:                                t1 = (u1&0xf); t2 = (u2&0xf); u |= t1>t2?t1:t2;
                    483:                                d[i] = u;
                    484:                        }
                    485:                        break;
                    486:                case 6:
1.41      noro      487:                        for ( i = nd_exporigin; i < nd_wpd; i++ ) {
1.1       noro      488:                                u1 = d1[i]; u2 = d2[i];
                    489:                                t1 = (u1&0x3f000000); t2 = (u2&0x3f000000); u = t1>t2?t1:t2;
                    490:                                t1 = (u1&0xfc0000); t2 = (u2&0xfc0000); u |= t1>t2?t1:t2;
                    491:                                t1 = (u1&0x3f000); t2 = (u2&0x3f000); u |= t1>t2?t1:t2;
                    492:                                t1 = (u1&0xfc0); t2 = (u2&0xfc0); u |= t1>t2?t1:t2;
                    493:                                t1 = (u1&0x3f); t2 = (u2&0x3f); u |= t1>t2?t1:t2;
                    494:                                d[i] = u;
                    495:                        }
                    496:                        break;
                    497:                case 8:
1.41      noro      498:                        for ( i = nd_exporigin; i < nd_wpd; i++ ) {
1.1       noro      499:                                u1 = d1[i]; u2 = d2[i];
                    500:                                t1 = (u1&0xff000000); t2 = (u2&0xff000000); u = t1>t2?t1:t2;
                    501:                                t1 = (u1&0xff0000); t2 = (u2&0xff0000); u |= t1>t2?t1:t2;
                    502:                                t1 = (u1&0xff00); t2 = (u2&0xff00); u |= t1>t2?t1:t2;
                    503:                                t1 = (u1&0xff); t2 = (u2&0xff); u |= t1>t2?t1:t2;
                    504:                                d[i] = u;
                    505:                        }
                    506:                        break;
                    507:                case 16:
1.41      noro      508:                        for ( i = nd_exporigin; i < nd_wpd; i++ ) {
1.1       noro      509:                                u1 = d1[i]; u2 = d2[i];
                    510:                                t1 = (u1&0xffff0000); t2 = (u2&0xffff0000); u = t1>t2?t1:t2;
                    511:                                t1 = (u1&0xffff); t2 = (u2&0xffff); u |= t1>t2?t1:t2;
                    512:                                d[i] = u;
                    513:                        }
                    514:                        break;
                    515:                case 32:
1.41      noro      516:                        for ( i = nd_exporigin; i < nd_wpd; i++ ) {
1.1       noro      517:                                u1 = d1[i]; u2 = d2[i];
                    518:                                d[i] = u1>u2?u1:u2;
                    519:                        }
                    520:                        break;
                    521:                default:
1.41      noro      522:                        for ( i = nd_exporigin; i < nd_wpd; i++ ) {
1.1       noro      523:                                u1 = d1[i]; u2 = d2[i];
                    524:                                for ( j = 0, u = 0; j < nd_epw; j++ ) {
                    525:                                        t1 = (u1&nd_mask[j]); t2 = (u2&nd_mask[j]); u |= t1>t2?t1:t2;
                    526:                                }
                    527:                                d[i] = u;
                    528:                        }
                    529:                        break;
                    530:        }
1.39      noro      531:        TD(d) = ndl_weight(d);
1.43      noro      532:        if ( nd_blockmask ) {
                    533:                l = nd_blockmask->n;
                    534:                for ( j = 0; j < l; j++ )
                    535:                        d[j+1] = ndl_weight_mask(d,j);
                    536:        }
1.1       noro      537: }
                    538:
1.39      noro      539: int ndl_weight(unsigned int *d)
1.1       noro      540: {
                    541:        unsigned int t,u;
                    542:        int i,j;
                    543:
1.41      noro      544:        for ( t = 0, i = nd_exporigin; i < nd_wpd; i++ ) {
1.1       noro      545:                u = d[i];
                    546:                for ( j = 0; j < nd_epw; j++, u>>=nd_bpe )
                    547:                        t += (u&nd_mask0);
                    548:        }
                    549:        return t;
                    550: }
                    551:
1.43      noro      552: int ndl_weight_mask(unsigned int *d,int index)
                    553: {
                    554:        unsigned int t,u;
                    555:        unsigned int *mask;
                    556:        int i,j;
                    557:
                    558:        mask = nd_blockmask->mask[index];
                    559:        for ( t = 0, i = nd_exporigin; i < nd_wpd; i++ ) {
                    560:                u = d[i]&mask[i];
                    561:                for ( j = 0; j < nd_epw; j++, u>>=nd_bpe )
                    562:                        t += (u&nd_mask0);
                    563:        }
                    564:        return t;
                    565: }
                    566:
                    567: int ndl_lex_compare(unsigned int *d1,unsigned int *d2)
1.1       noro      568: {
                    569:        int i;
                    570:
1.41      noro      571:        d1 += nd_exporigin;
                    572:        d2 += nd_exporigin;
                    573:        for ( i = nd_exporigin; i < nd_wpd; i++, d1++, d2++ )
1.1       noro      574:                if ( *d1 > *d2 )
1.32      noro      575:                        return nd_isrlex ? -1 : 1;
1.1       noro      576:                else if ( *d1 < *d2 )
1.32      noro      577:                        return nd_isrlex ? 1 : -1;
1.1       noro      578:        return 0;
                    579: }
                    580:
1.43      noro      581: int ndl_block_compare(unsigned int *d1,unsigned int *d2)
                    582: {
                    583:        int i,l,j,ord_o,ord_l;
                    584:        struct order_pair *op;
1.44      noro      585:        unsigned int t1,t2,m;
1.43      noro      586:        unsigned int *mask;
                    587:
                    588:        l = nd_blockmask->n;
                    589:        op = nd_blockmask->order_pair;
                    590:        for ( j = 0; j < l; j++ ) {
                    591:                mask = nd_blockmask->mask[j];
                    592:                ord_o = op[j].order;
                    593:                if ( ord_o < 2 )
1.44      noro      594:                        if ( (t1=d1[j+1]) > (t2=d2[j+1]) ) return 1;
                    595:                        else if ( t1 < t2 ) return -1;
1.43      noro      596:                for ( i = nd_exporigin; i < nd_wpd; i++ ) {
1.44      noro      597:                        m = mask[i];
                    598:                        t1 = d1[i]&m;
                    599:                        t2 = d2[i]&m;
1.43      noro      600:                        if ( t1 > t2 )
                    601:                                return !ord_o ? -1 : 1;
                    602:                        else if ( t1 < t2 )
                    603:                                return !ord_o ? 1 : -1;
                    604:                }
                    605:        }
                    606:        return 0;
                    607: }
                    608:
1.1       noro      609: INLINE int ndl_equal(unsigned int *d1,unsigned int *d2)
                    610: {
                    611:        int i;
                    612:
1.41      noro      613:        for ( i = 0; i < nd_wpd; i++ )
1.34      noro      614:                if ( *d1++ != *d2++ )
1.1       noro      615:                        return 0;
                    616:        return 1;
                    617: }
                    618:
1.6       noro      619: INLINE void ndl_copy(unsigned int *d1,unsigned int *d2)
                    620: {
                    621:        int i;
                    622:
                    623:        switch ( nd_wpd ) {
1.41      noro      624:                case 2:
1.34      noro      625:                        TD(d2) = TD(d1);
                    626:                        d2[1] = d1[1];
1.6       noro      627:                        break;
1.41      noro      628:                case 3:
1.34      noro      629:                        TD(d2) = TD(d1);
1.6       noro      630:                        d2[1] = d1[1];
1.34      noro      631:                        d2[2] = d1[2];
1.6       noro      632:                        break;
                    633:                default:
1.41      noro      634:                        for ( i = 0; i < nd_wpd; i++ )
1.6       noro      635:                                d2[i] = d1[i];
                    636:                        break;
                    637:        }
                    638: }
                    639:
1.1       noro      640: INLINE void ndl_add(unsigned int *d1,unsigned int *d2,unsigned int *d)
                    641: {
                    642:        int i;
                    643:
1.43      noro      644: #if 1
1.6       noro      645:        switch ( nd_wpd ) {
1.41      noro      646:                case 2:
                    647:                        TD(d) = TD(d1)+TD(d2);
1.34      noro      648:                        d[1] = d1[1]+d2[1];
1.6       noro      649:                        break;
1.41      noro      650:                case 3:
                    651:                        TD(d) = TD(d1)+TD(d2);
1.6       noro      652:                        d[1] = d1[1]+d2[1];
1.34      noro      653:                        d[2] = d1[2]+d2[2];
1.6       noro      654:                        break;
                    655:                default:
1.43      noro      656:                        for ( i = 0; i < nd_wpd; i++ ) d[i] = d1[i]+d2[i];
1.6       noro      657:                        break;
                    658:        }
1.43      noro      659: #else
                    660:        for ( i = 0; i < nd_wpd; i++ ) d[i] = d1[i]+d2[i];
                    661: #endif
1.6       noro      662: }
                    663:
1.34      noro      664: INLINE void ndl_sub(unsigned int *d1,unsigned int *d2,unsigned int *d)
1.6       noro      665: {
                    666:        int i;
                    667:
1.43      noro      668:        for ( i = 0; i < nd_wpd; i++ ) d[i] = d1[i]-d2[i];
1.1       noro      669: }
                    670:
                    671: int ndl_disjoint(unsigned int *d1,unsigned int *d2)
                    672: {
                    673:        unsigned int t1,t2,u,u1,u2;
                    674:        int i,j;
                    675:
                    676:        switch ( nd_bpe ) {
                    677:                case 4:
1.41      noro      678:                        for ( i = nd_exporigin; i < nd_wpd; i++ ) {
1.1       noro      679:                                u1 = d1[i]; u2 = d2[i];
                    680:                                t1 = u1&0xf0000000; t2 = u2&0xf0000000; if ( t1&&t2 ) return 0;
                    681:                                t1 = u1&0xf000000; t2 = u2&0xf000000; if ( t1&&t2 ) return 0;
                    682:                                t1 = u1&0xf00000; t2 = u2&0xf00000; if ( t1&&t2 ) return 0;
                    683:                                t1 = u1&0xf0000; t2 = u2&0xf0000; if ( t1&&t2 ) return 0;
                    684:                                t1 = u1&0xf000; t2 = u2&0xf000; if ( t1&&t2 ) return 0;
                    685:                                t1 = u1&0xf00; t2 = u2&0xf00; if ( t1&&t2 ) return 0;
                    686:                                t1 = u1&0xf0; t2 = u2&0xf0; if ( t1&&t2 ) return 0;
                    687:                                t1 = u1&0xf; t2 = u2&0xf; if ( t1&&t2 ) return 0;
                    688:                        }
                    689:                        return 1;
                    690:                        break;
                    691:                case 6:
1.41      noro      692:                        for ( i = nd_exporigin; i < nd_wpd; i++ ) {
1.1       noro      693:                                u1 = d1[i]; u2 = d2[i];
                    694:                                t1 = u1&0x3f000000; t2 = u2&0x3f000000; if ( t1&&t2 ) return 0;
                    695:                                t1 = u1&0xfc0000; t2 = u2&0xfc0000; if ( t1&&t2 ) return 0;
                    696:                                t1 = u1&0x3f000; t2 = u2&0x3f000; if ( t1&&t2 ) return 0;
                    697:                                t1 = u1&0xfc0; t2 = u2&0xfc0; if ( t1&&t2 ) return 0;
                    698:                                t1 = u1&0x3f; t2 = u2&0x3f; if ( t1&&t2 ) return 0;
                    699:                        }
                    700:                        return 1;
                    701:                        break;
                    702:                case 8:
1.41      noro      703:                        for ( i = nd_exporigin; i < nd_wpd; i++ ) {
1.1       noro      704:                                u1 = d1[i]; u2 = d2[i];
                    705:                                t1 = u1&0xff000000; t2 = u2&0xff000000; if ( t1&&t2 ) return 0;
                    706:                                t1 = u1&0xff0000; t2 = u2&0xff0000; if ( t1&&t2 ) return 0;
                    707:                                t1 = u1&0xff00; t2 = u2&0xff00; if ( t1&&t2 ) return 0;
                    708:                                t1 = u1&0xff; t2 = u2&0xff; if ( t1&&t2 ) return 0;
                    709:                        }
                    710:                        return 1;
                    711:                        break;
                    712:                case 16:
1.41      noro      713:                        for ( i = nd_exporigin; i < nd_wpd; i++ ) {
1.1       noro      714:                                u1 = d1[i]; u2 = d2[i];
                    715:                                t1 = u1&0xffff0000; t2 = u2&0xffff0000; if ( t1&&t2 ) return 0;
                    716:                                t1 = u1&0xffff; t2 = u2&0xffff; if ( t1&&t2 ) return 0;
                    717:                        }
                    718:                        return 1;
                    719:                        break;
                    720:                case 32:
1.41      noro      721:                        for ( i = nd_exporigin; i < nd_wpd; i++ )
1.1       noro      722:                                if ( d1[i] && d2[i] ) return 0;
                    723:                        return 1;
                    724:                        break;
                    725:                default:
1.41      noro      726:                        for ( i = nd_exporigin; i < nd_wpd; i++ ) {
1.1       noro      727:                                u1 = d1[i]; u2 = d2[i];
                    728:                                for ( j = 0; j < nd_epw; j++ ) {
                    729:                                        if ( (u1&nd_mask0) && (u2&nd_mask0) ) return 0;
                    730:                                        u1 >>= nd_bpe; u2 >>= nd_bpe;
                    731:                                }
                    732:                        }
                    733:                        return 1;
                    734:                        break;
                    735:        }
                    736: }
                    737:
1.5       noro      738: int ndl_check_bound2(int index,unsigned int *d2)
1.1       noro      739: {
1.5       noro      740:        unsigned int u2;
                    741:        unsigned int *d1;
                    742:        int i,j,ind,k;
1.1       noro      743:
1.5       noro      744:        d1 = nd_bound[index];
                    745:        ind = 0;
                    746:        switch ( nd_bpe ) {
                    747:                case 4:
1.41      noro      748:                        for ( i = nd_exporigin; i < nd_wpd; i++ ) {
1.5       noro      749:                                u2 = d2[i];
                    750:                                if ( d1[ind++]+((u2>>28)&0xf) >= 0x10 ) return 1;
                    751:                                if ( d1[ind++]+((u2>>24)&0xf) >= 0x10 ) return 1;
                    752:                                if ( d1[ind++]+((u2>>20)&0xf) >= 0x10 ) return 1;
                    753:                                if ( d1[ind++]+((u2>>16)&0xf) >= 0x10 ) return 1;
                    754:                                if ( d1[ind++]+((u2>>12)&0xf) >= 0x10 ) return 1;
                    755:                                if ( d1[ind++]+((u2>>8)&0xf) >= 0x10 ) return 1;
                    756:                                if ( d1[ind++]+((u2>>4)&0xf) >= 0x10 ) return 1;
                    757:                                if ( d1[ind++]+(u2&0xf) >= 0x10 ) return 1;
                    758:                        }
                    759:                        return 0;
                    760:                        break;
                    761:                case 6:
1.41      noro      762:                        for ( i = nd_exporigin; i < nd_wpd; i++ ) {
1.5       noro      763:                                u2 = d2[i];
                    764:                                if ( d1[ind++]+((u2>>24)&0x3f) >= 0x40 ) return 1;
                    765:                                if ( d1[ind++]+((u2>>18)&0x3f) >= 0x40 ) return 1;
                    766:                                if ( d1[ind++]+((u2>>12)&0x3f) >= 0x40 ) return 1;
                    767:                                if ( d1[ind++]+((u2>>6)&0x3f) >= 0x40 ) return 1;
                    768:                                if ( d1[ind++]+(u2&0x3f) >= 0x40 ) return 1;
                    769:                        }
                    770:                        return 0;
                    771:                        break;
                    772:                case 8:
1.41      noro      773:                        for ( i = nd_exporigin; i < nd_wpd; i++ ) {
1.5       noro      774:                                u2 = d2[i];
                    775:                                if ( d1[ind++]+((u2>>24)&0xff) >= 0x100 ) return 1;
                    776:                                if ( d1[ind++]+((u2>>16)&0xff) >= 0x100 ) return 1;
                    777:                                if ( d1[ind++]+((u2>>8)&0xff) >= 0x100 ) return 1;
                    778:                                if ( d1[ind++]+(u2&0xff) >= 0x100 ) return 1;
                    779:                        }
                    780:                        return 0;
                    781:                        break;
                    782:                case 16:
1.41      noro      783:                        for ( i = nd_exporigin; i < nd_wpd; i++ ) {
1.5       noro      784:                                u2 = d2[i];
                    785:                                if ( d1[ind++]+((u2>>16)&0xffff) > 0x10000 ) return 1;
                    786:                                if ( d1[ind++]+(u2&0xffff) > 0x10000 ) return 1;
                    787:                        }
                    788:                        return 0;
                    789:                        break;
                    790:                case 32:
1.41      noro      791:                        for ( i = nd_exporigin; i < nd_wpd; i++ )
1.5       noro      792:                                if ( d1[i]+d2[i]<d1[i] ) return 1;
                    793:                        return 0;
                    794:                        break;
                    795:                default:
1.41      noro      796:                        for ( i = nd_exporigin; i < nd_wpd; i++ ) {
1.5       noro      797:                                u2 = d2[i];
                    798:                                k = (nd_epw-1)*nd_bpe;
                    799:                                for ( j = 0; j < nd_epw; j++, k -= nd_bpe )
                    800:                                        if ( d1[ind++]+((u2>>k)&nd_mask0) > nd_mask0 ) return 1;
                    801:                        }
                    802:                        return 0;
                    803:                        break;
                    804:        }
1.1       noro      805: }
                    806:
1.23      noro      807: int ndl_check_bound2_direct(unsigned int *d1,unsigned int *d2)
                    808: {
1.45      noro      809:        unsigned int u2;
                    810:        int i,j,ind,k;
1.23      noro      811:
1.45      noro      812:        ind = 0;
1.23      noro      813:        switch ( nd_bpe ) {
                    814:                case 4:
1.41      noro      815:                        for ( i = nd_exporigin; i < nd_wpd; i++ ) {
1.45      noro      816:                                u2 = d2[i];
                    817:                                if ( d1[ind++]+((u2>>28)&0xf) >= 0x10 ) return 1;
                    818:                                if ( d1[ind++]+((u2>>24)&0xf) >= 0x10 ) return 1;
                    819:                                if ( d1[ind++]+((u2>>20)&0xf) >= 0x10 ) return 1;
                    820:                                if ( d1[ind++]+((u2>>16)&0xf) >= 0x10 ) return 1;
                    821:                                if ( d1[ind++]+((u2>>12)&0xf) >= 0x10 ) return 1;
                    822:                                if ( d1[ind++]+((u2>>8)&0xf) >= 0x10 ) return 1;
                    823:                                if ( d1[ind++]+((u2>>4)&0xf) >= 0x10 ) return 1;
                    824:                                if ( d1[ind++]+(u2&0xf) >= 0x10 ) return 1;
1.23      noro      825:                        }
                    826:                        return 0;
                    827:                        break;
                    828:                case 6:
1.41      noro      829:                        for ( i = nd_exporigin; i < nd_wpd; i++ ) {
1.45      noro      830:                                u2 = d2[i];
                    831:                                if ( d1[ind++]+((u2>>24)&0x3f) >= 0x40 ) return 1;
                    832:                                if ( d1[ind++]+((u2>>18)&0x3f) >= 0x40 ) return 1;
                    833:                                if ( d1[ind++]+((u2>>12)&0x3f) >= 0x40 ) return 1;
                    834:                                if ( d1[ind++]+((u2>>6)&0x3f) >= 0x40 ) return 1;
                    835:                                if ( d1[ind++]+(u2&0x3f) >= 0x40 ) return 1;
1.23      noro      836:                        }
                    837:                        return 0;
                    838:                        break;
                    839:                case 8:
1.41      noro      840:                        for ( i = nd_exporigin; i < nd_wpd; i++ ) {
1.45      noro      841:                                u2 = d2[i];
                    842:                                if ( d1[ind++]+((u2>>24)&0xff) >= 0x100 ) return 1;
                    843:                                if ( d1[ind++]+((u2>>16)&0xff) >= 0x100 ) return 1;
                    844:                                if ( d1[ind++]+((u2>>8)&0xff) >= 0x100 ) return 1;
                    845:                                if ( d1[ind++]+(u2&0xff) >= 0x100 ) return 1;
1.23      noro      846:                        }
                    847:                        return 0;
                    848:                        break;
                    849:                case 16:
1.41      noro      850:                        for ( i = nd_exporigin; i < nd_wpd; i++ ) {
1.45      noro      851:                                u2 = d2[i];
                    852:                                if ( d1[ind++]+((u2>>16)&0xffff) > 0x10000 ) return 1;
                    853:                                if ( d1[ind++]+(u2&0xffff) > 0x10000 ) return 1;
1.23      noro      854:                        }
                    855:                        return 0;
                    856:                        break;
                    857:                case 32:
1.41      noro      858:                        for ( i = nd_exporigin; i < nd_wpd; i++ )
1.23      noro      859:                                if ( d1[i]+d2[i]<d1[i] ) return 1;
                    860:                        return 0;
                    861:                        break;
                    862:                default:
1.41      noro      863:                        for ( i = nd_exporigin; i < nd_wpd; i++ ) {
1.45      noro      864:                                u2 = d2[i];
1.23      noro      865:                                k = (nd_epw-1)*nd_bpe;
                    866:                                for ( j = 0; j < nd_epw; j++, k -= nd_bpe )
1.45      noro      867:                                        if ( d1[ind++]+((u2>>k)&nd_mask0) > nd_mask0 ) return 1;
1.23      noro      868:                        }
                    869:                        return 0;
                    870:                        break;
                    871:        }
                    872: }
                    873:
1.34      noro      874: INLINE int ndl_hash_value(unsigned int *d)
1.1       noro      875: {
                    876:        int i;
                    877:        int r;
                    878:
1.34      noro      879:        r = 0;
1.41      noro      880:        for ( i = 0; i < nd_wpd; i++ )
1.1       noro      881:                r = ((r<<16)+d[i])%REDTAB_LEN;
                    882:        return r;
                    883: }
                    884:
1.9       noro      885: INLINE int nd_find_reducer(ND g)
1.1       noro      886: {
1.13      noro      887:        RHist r;
1.34      noro      888:        unsigned int *dg;
1.6       noro      889:        int d,k,i;
1.1       noro      890:
1.34      noro      891:        dg = HDL(g);
1.39      noro      892: #if 1
1.34      noro      893:        d = ndl_hash_value(HDL(g));
1.13      noro      894:        for ( r = nd_red[d], k = 0; r; r = NEXT(r), k++ ) {
1.34      noro      895:                if ( ndl_equal(dg,DL(r)) ) {
1.1       noro      896:                        if ( k > 0 ) nd_notfirst++;
                    897:                        nd_found++;
1.13      noro      898:                        return r->index;
1.1       noro      899:                }
                    900:        }
1.39      noro      901: #endif
1.13      noro      902:        if ( Reverse )
                    903:                for ( i = nd_psn-1; i >= 0; i-- ) {
                    904:                        r = nd_psh[i];
1.34      noro      905:                        if ( ndl_reducible(dg,DL(r)) ) {
1.13      noro      906:                                nd_create++;
1.34      noro      907:                                nd_append_red(dg,i);
1.13      noro      908:                                return i;
                    909:                        }
                    910:                }
                    911:        else
                    912:                for ( i = 0; i < nd_psn; i++ ) {
                    913:                        r = nd_psh[i];
1.34      noro      914:                        if ( ndl_reducible(dg,DL(r)) ) {
1.13      noro      915:                                nd_create++;
1.34      noro      916:                                nd_append_red(dg,i);
1.13      noro      917:                                return i;
                    918:                        }
1.1       noro      919:                }
1.6       noro      920:        return -1;
1.1       noro      921: }
                    922:
1.23      noro      923: INLINE int nd_find_reducer_direct(ND g,NDV *ps,int len)
                    924: {
                    925:        NDV r;
1.31      noro      926:        RHist s;
                    927:        int d,k,i;
1.23      noro      928:
                    929:        if ( Reverse )
                    930:                for ( i = len-1; i >= 0; i-- ) {
                    931:                        r = ps[i];
1.45      noro      932:                        if ( ndl_reducible(HDL(g),HDL(r)) )
1.23      noro      933:                                return i;
                    934:                }
                    935:        else
                    936:                for ( i = 0; i < len; i++ ) {
                    937:                        r = ps[i];
1.45      noro      938:                        if ( ndl_reducible(HDL(g),HDL(r)) )
1.23      noro      939:                                return i;
                    940:                }
                    941:        return -1;
                    942: }
                    943:
1.31      noro      944: ND nd_add(int mod,ND p1,ND p2)
1.1       noro      945: {
                    946:        int n,c;
1.34      noro      947:        int t,can,td1,td2;
1.1       noro      948:        ND r;
                    949:        NM m1,m2,mr0,mr,s;
                    950:
1.34      noro      951:        if ( !p1 ) return p2;
                    952:        else if ( !p2 ) return p1;
                    953:        else if ( !mod ) return nd_add_q(p1,p2);
1.1       noro      954:        else {
1.30      noro      955:                can = 0;
1.1       noro      956:                for ( n = NV(p1), m1 = BDY(p1), m2 = BDY(p2), mr0 = 0; m1 && m2; ) {
1.34      noro      957:                        c = DL_COMPARE(DL(m1),DL(m2));
1.1       noro      958:                        switch ( c ) {
                    959:                                case 0:
1.19      noro      960:                                        t = ((CM(m1))+(CM(m2))) - mod;
1.34      noro      961:                                        if ( t < 0 ) t += mod;
1.1       noro      962:                                        s = m1; m1 = NEXT(m1);
                    963:                                        if ( t ) {
1.34      noro      964:                                                can++; NEXTNM2(mr0,mr,s); CM(mr) = (t);
1.1       noro      965:                                        } else {
1.34      noro      966:                                                can += 2; FREENM(s);
1.1       noro      967:                                        }
                    968:                                        s = m2; m2 = NEXT(m2); FREENM(s);
                    969:                                        break;
                    970:                                case 1:
                    971:                                        s = m1; m1 = NEXT(m1); NEXTNM2(mr0,mr,s);
                    972:                                        break;
                    973:                                case -1:
                    974:                                        s = m2; m2 = NEXT(m2); NEXTNM2(mr0,mr,s);
                    975:                                        break;
                    976:                        }
                    977:                }
                    978:                if ( !mr0 )
1.34      noro      979:                        if ( m1 ) mr0 = m1;
                    980:                        else if ( m2 ) mr0 = m2;
                    981:                        else return 0;
                    982:                else if ( m1 ) NEXT(mr) = m1;
                    983:                else if ( m2 ) NEXT(mr) = m2;
                    984:                else NEXT(mr) = 0;
1.1       noro      985:                BDY(p1) = mr0;
1.14      noro      986:                SG(p1) = MAX(SG(p1),SG(p2));
1.31      noro      987:                LEN(p1) = LEN(p1)+LEN(p2)-can;
1.1       noro      988:                FREEND(p2);
                    989:                return p1;
                    990:        }
                    991: }
                    992:
1.31      noro      993: ND nd_add_q(ND p1,ND p2)
1.17      noro      994: {
1.30      noro      995:        int n,c,can;
1.17      noro      996:        ND r;
                    997:        NM m1,m2,mr0,mr,s;
                    998:        Q t;
                    999:
1.34      noro     1000:        if ( !p1 ) return p2;
                   1001:        else if ( !p2 ) return p1;
1.31      noro     1002:        else {
1.30      noro     1003:                can = 0;
1.17      noro     1004:                for ( n = NV(p1), m1 = BDY(p1), m2 = BDY(p2), mr0 = 0; m1 && m2; ) {
1.34      noro     1005:                        c = DL_COMPARE(DL(m1),DL(m2));
1.17      noro     1006:                        switch ( c ) {
                   1007:                                case 0:
                   1008:                                        addq(CQ(m1),CQ(m2),&t);
                   1009:                                        s = m1; m1 = NEXT(m1);
                   1010:                                        if ( t ) {
1.34      noro     1011:                                                can++; NEXTNM2(mr0,mr,s); CQ(mr) = (t);
1.17      noro     1012:                                        } else {
1.34      noro     1013:                                                can += 2; FREENM(s);
1.17      noro     1014:                                        }
                   1015:                                        s = m2; m2 = NEXT(m2); FREENM(s);
                   1016:                                        break;
                   1017:                                case 1:
                   1018:                                        s = m1; m1 = NEXT(m1); NEXTNM2(mr0,mr,s);
                   1019:                                        break;
                   1020:                                case -1:
                   1021:                                        s = m2; m2 = NEXT(m2); NEXTNM2(mr0,mr,s);
                   1022:                                        break;
                   1023:                        }
                   1024:                }
                   1025:                if ( !mr0 )
1.34      noro     1026:                        if ( m1 ) mr0 = m1;
                   1027:                        else if ( m2 ) mr0 = m2;
                   1028:                        else return 0;
                   1029:                else if ( m1 ) NEXT(mr) = m1;
                   1030:                else if ( m2 ) NEXT(mr) = m2;
                   1031:                else NEXT(mr) = 0;
1.17      noro     1032:                BDY(p1) = mr0;
                   1033:                SG(p1) = MAX(SG(p1),SG(p2));
1.31      noro     1034:                LEN(p1) = LEN(p1)+LEN(p2)-can;
1.17      noro     1035:                FREEND(p2);
                   1036:                return p1;
                   1037:        }
                   1038: }
                   1039:
1.1       noro     1040: /* ret=1 : success, ret=0 : overflow */
1.16      noro     1041: int nd_nf(int mod,ND g,int full,ND *rp)
1.1       noro     1042: {
1.11      noro     1043:        ND d;
1.1       noro     1044:        NM m,mrd,tail;
1.7       noro     1045:        NM mul;
1.10      noro     1046:        int n,sugar,psugar,sugar0,stat,index;
1.30      noro     1047:        int c,c1,c2,dummy;
1.17      noro     1048:        RHist h;
1.11      noro     1049:        NDV p,red;
1.16      noro     1050:        Q cg,cred,gcd;
1.21      noro     1051:        double hmag;
1.1       noro     1052:
                   1053:        if ( !g ) {
                   1054:                *rp = 0;
                   1055:                return 1;
                   1056:        }
1.34      noro     1057:        if ( !mod ) hmag = ((double)p_mag((P)HCQ(g)))*nd_scale;
1.21      noro     1058:
1.14      noro     1059:        sugar0 = sugar = SG(g);
1.1       noro     1060:        n = NV(g);
1.41      noro     1061:        mul = (NM)ALLOCA(sizeof(struct oNM)+(nd_wpd-1)*sizeof(unsigned int));
1.1       noro     1062:        for ( d = 0; g; ) {
1.6       noro     1063:                index = nd_find_reducer(g);
                   1064:                if ( index >= 0 ) {
1.17      noro     1065:                        h = nd_psh[index];
                   1066:                        ndl_sub(HDL(g),DL(h),DL(mul));
1.14      noro     1067:                        if ( ndl_check_bound2(index,DL(mul)) ) {
1.6       noro     1068:                                nd_free(g); nd_free(d);
                   1069:                                return 0;
                   1070:                        }
1.16      noro     1071:                        if ( mod ) {
1.17      noro     1072:                                p = nd_ps[index];
1.19      noro     1073:                                c1 = invm(HCM(p),mod); c2 = mod-HCM(g);
                   1074:                                DMAR(c1,c2,0,mod,c); CM(mul) = c;
1.16      noro     1075:                        } else {
1.20      noro     1076:                                p = nd_psq[index];
1.17      noro     1077:                                igcd_cofactor(HCQ(g),HCQ(p),&gcd,&cg,&cred);
1.16      noro     1078:                                chsgnq(cg,&CQ(mul));
1.20      noro     1079:                                nd_mul_c_q(d,cred); nd_mul_c_q(g,cred);
1.16      noro     1080:                        }
1.31      noro     1081:                        g = nd_add(mod,g,ndv_mul_nm(mod,p,mul));
1.34      noro     1082:                        sugar = MAX(sugar,SG(p)+TD(DL(mul)));
1.22      noro     1083:                        if ( !mod && hmag && g && ((double)(p_mag((P)HCQ(g))) > hmag) ) {
1.21      noro     1084:                                nd_removecont2(d,g);
                   1085:                                hmag = ((double)p_mag((P)HCQ(g)))*nd_scale;
                   1086:                        }
1.1       noro     1087:                } else if ( !full ) {
                   1088:                        *rp = g;
                   1089:                        return 1;
                   1090:                } else {
                   1091:                        m = BDY(g);
                   1092:                        if ( NEXT(m) ) {
1.34      noro     1093:                                BDY(g) = NEXT(m); NEXT(m) = 0; LEN(g)--;
1.1       noro     1094:                        } else {
                   1095:                                FREEND(g); g = 0;
                   1096:                        }
                   1097:                        if ( d ) {
1.34      noro     1098:                                NEXT(tail)=m; tail=m; LEN(d)++;
1.1       noro     1099:                        } else {
1.34      noro     1100:                                MKND(n,m,1,d); tail = BDY(d);
1.1       noro     1101:                        }
                   1102:                }
                   1103:        }
1.34      noro     1104:        if ( d ) SG(d) = sugar;
1.1       noro     1105:        *rp = d;
                   1106:        return 1;
                   1107: }
1.28      noro     1108:
1.30      noro     1109: int nd_nf_pbucket(int mod,ND g,int full,ND *rp)
1.25      noro     1110: {
                   1111:        int hindex,index;
                   1112:        NDV p;
                   1113:        ND u,d,red;
                   1114:        NODE l;
1.31      noro     1115:        NM mul,m,mrd,tail;
1.25      noro     1116:        int sugar,psugar,n,h_reducible;
                   1117:        PGeoBucket bucket;
                   1118:        int c,c1,c2;
1.26      noro     1119:        Q cg,cred,gcd,zzz;
1.25      noro     1120:        RHist h;
1.28      noro     1121:        double hmag,gmag;
1.25      noro     1122:
                   1123:        if ( !g ) {
                   1124:                *rp = 0;
                   1125:                return 1;
                   1126:        }
                   1127:        sugar = SG(g);
                   1128:        n = NV(g);
1.34      noro     1129:        if ( !mod ) hmag = ((double)p_mag((P)HCQ(g)))*nd_scale;
1.25      noro     1130:        bucket = create_pbucket();
1.31      noro     1131:        add_pbucket(mod,bucket,g);
1.25      noro     1132:        d = 0;
1.41      noro     1133:        mul = (NM)ALLOCA(sizeof(struct oNM)+(nd_wpd-1)*sizeof(unsigned int));
1.25      noro     1134:        while ( 1 ) {
1.26      noro     1135:                hindex = mod?head_pbucket(mod,bucket):head_pbucket_q(bucket);
1.25      noro     1136:                if ( hindex < 0 ) {
1.34      noro     1137:                        if ( d ) SG(d) = sugar;
1.25      noro     1138:                        *rp = d;
                   1139:                        return 1;
                   1140:                }
                   1141:                g = bucket->body[hindex];
                   1142:                index = nd_find_reducer(g);
                   1143:                if ( index >= 0 ) {
                   1144:                        h = nd_psh[index];
                   1145:                        ndl_sub(HDL(g),DL(h),DL(mul));
                   1146:                        if ( ndl_check_bound2(index,DL(mul)) ) {
1.26      noro     1147:                                nd_free(d);
1.25      noro     1148:                                free_pbucket(bucket);
                   1149:                                *rp = 0;
                   1150:                                return 0;
                   1151:                        }
                   1152:                        if ( mod ) {
                   1153:                                p = nd_ps[index];
                   1154:                                c1 = invm(HCM(p),mod); c2 = mod-HCM(g);
                   1155:                                DMAR(c1,c2,0,mod,c); CM(mul) = c;
                   1156:                        } else {
                   1157:                                p = nd_psq[index];
                   1158:                                igcd_cofactor(HCQ(g),HCQ(p),&gcd,&cg,&cred);
                   1159:                                chsgnq(cg,&CQ(mul));
1.26      noro     1160:                                nd_mul_c_q(d,cred);
                   1161:                                mulq_pbucket(bucket,cred);
                   1162:                                g = bucket->body[hindex];
1.28      noro     1163:                                gmag = (double)p_mag((P)HCQ(g));
1.25      noro     1164:                        }
                   1165:                        red = ndv_mul_nm(mod,p,mul);
                   1166:                        bucket->body[hindex] = nd_remove_head(g);
                   1167:                        red = nd_remove_head(red);
1.31      noro     1168:                        add_pbucket(mod,bucket,red);
1.34      noro     1169:                        psugar = SG(p)+TD(DL(mul));
                   1170:                        sugar = MAX(sugar,psugar);
1.28      noro     1171:                        if ( !mod && hmag && (gmag > hmag) ) {
                   1172:                                g = normalize_pbucket(mod,bucket);
                   1173:                                if ( !g ) {
1.34      noro     1174:                                        if ( d ) SG(d) = sugar;
1.28      noro     1175:                                        *rp = d;
                   1176:                                        return 1;
                   1177:                                }
                   1178:                                nd_removecont2(d,g);
                   1179:                                hmag = ((double)p_mag((P)HCQ(g)))*nd_scale;
1.31      noro     1180:                                add_pbucket(mod,bucket,g);
1.28      noro     1181:                        }
1.25      noro     1182:                } else if ( !full ) {
                   1183:                        g = normalize_pbucket(mod,bucket);
1.34      noro     1184:                        if ( g ) SG(g) = sugar;
1.25      noro     1185:                        *rp = g;
                   1186:                        return 1;
                   1187:                } else {
                   1188:                        m = BDY(g);
                   1189:                        if ( NEXT(m) ) {
1.34      noro     1190:                                BDY(g) = NEXT(m); NEXT(m) = 0; LEN(g)--;
1.25      noro     1191:                        } else {
                   1192:                                FREEND(g); g = 0;
                   1193:                        }
                   1194:                        bucket->body[hindex] = g;
                   1195:                        NEXT(m) = 0;
                   1196:                        if ( d ) {
1.34      noro     1197:                                NEXT(tail)=m; tail=m; LEN(d)++;
1.25      noro     1198:                        } else {
1.34      noro     1199:                                MKND(n,m,1,d); tail = BDY(d);
1.25      noro     1200:                        }
                   1201:                }
                   1202:        }
                   1203: }
1.27      noro     1204:
1.45      noro     1205: int nd_nf_direct(int mod,ND g,BaseSet base,int full,ND *rp)
1.23      noro     1206: {
1.30      noro     1207:        ND d;
                   1208:        NM m,mrd,tail;
                   1209:        NM mul;
1.45      noro     1210:        NDV *ps;
                   1211:        int n,sugar,psugar,sugar0,stat,index,len;
1.31      noro     1212:        int c,c1,c2;
1.45      noro     1213:        unsigned int **bound;
1.30      noro     1214:        RHist h;
                   1215:        NDV p,red;
                   1216:        Q cg,cred,gcd;
                   1217:        double hmag;
                   1218:
                   1219:        if ( !g ) {
                   1220:                *rp = 0;
                   1221:                return 1;
                   1222:        }
                   1223: #if 0
                   1224:        if ( !mod )
                   1225:                hmag = ((double)p_mag((P)HCQ(g)))*nd_scale;
                   1226: #else
                   1227:        /* XXX */
                   1228:        hmag = 0;
                   1229: #endif
                   1230:
1.45      noro     1231:        ps = base->ps;
                   1232:        bound = base->bound;
                   1233:        len = base->len;
1.30      noro     1234:        sugar0 = sugar = SG(g);
                   1235:        n = NV(g);
1.41      noro     1236:        mul = (NM)ALLOCA(sizeof(struct oNM)+(nd_wpd-1)*sizeof(unsigned int));
1.30      noro     1237:        for ( d = 0; g; ) {
                   1238:                index = nd_find_reducer_direct(g,ps,len);
                   1239:                if ( index >= 0 ) {
                   1240:                        p = ps[index];
                   1241:                        ndl_sub(HDL(g),HDL(p),DL(mul));
1.45      noro     1242:                        if ( ndl_check_bound2_direct(bound[index],DL(mul)) ) {
1.30      noro     1243:                                nd_free(g); nd_free(d);
                   1244:                                return 0;
                   1245:                        }
                   1246:                        if ( mod ) {
                   1247:                                c1 = invm(HCM(p),mod); c2 = mod-HCM(g);
                   1248:                                DMAR(c1,c2,0,mod,c); CM(mul) = c;
                   1249:                        } else {
                   1250:                                igcd_cofactor(HCQ(g),HCQ(p),&gcd,&cg,&cred);
                   1251:                                chsgnq(cg,&CQ(mul));
                   1252:                                nd_mul_c_q(d,cred); nd_mul_c_q(g,cred);
                   1253:                        }
1.31      noro     1254:                        g = nd_add(mod,g,ndv_mul_nm(mod,p,mul));
1.34      noro     1255:                        sugar = MAX(sugar,SG(p)+TD(DL(mul)));
1.30      noro     1256:                        if ( !mod && hmag && g && ((double)(p_mag((P)HCQ(g))) > hmag) ) {
                   1257:                                nd_removecont2(d,g);
                   1258:                                hmag = ((double)p_mag((P)HCQ(g)))*nd_scale;
                   1259:                        }
                   1260:                } else if ( !full ) {
                   1261:                        *rp = g;
                   1262:                        return 1;
                   1263:                } else {
                   1264:                        m = BDY(g);
                   1265:                        if ( NEXT(m) ) {
1.34      noro     1266:                                BDY(g) = NEXT(m); NEXT(m) = 0; LEN(g)--;
1.30      noro     1267:                        } else {
                   1268:                                FREEND(g); g = 0;
                   1269:                        }
                   1270:                        if ( d ) {
1.34      noro     1271:                                NEXT(tail)=m; tail=m; LEN(d)++;
1.30      noro     1272:                        } else {
1.34      noro     1273:                                MKND(n,m,1,d); tail = BDY(d);
1.30      noro     1274:                        }
                   1275:                }
                   1276:        }
1.34      noro     1277:        if ( d ) SG(d) = sugar;
1.30      noro     1278:        *rp = d;
                   1279:        return 1;
                   1280: }
                   1281:
1.28      noro     1282: /* input : list of DP, cand : list of DP */
                   1283:
                   1284: int nd_check_candidate(NODE input,NODE cand)
                   1285: {
                   1286:        int n,i,stat;
                   1287:        ND nf,d;
1.45      noro     1288:        NODE t,s;
                   1289:
                   1290: #if 0
                   1291:        for ( t = 0; cand; cand = NEXT(cand) ) {
                   1292:                MKNODE(s,BDY(cand),t); t = s;
                   1293:        }
                   1294:        cand = t;
                   1295: #endif
1.28      noro     1296:
1.39      noro     1297:        nd_setup(0,0,cand);
1.31      noro     1298:        n = length(cand);
1.28      noro     1299:
                   1300:        /* membercheck : list is a subset of Id(cand) ? */
                   1301:        for ( t = input; t; t = NEXT(t) ) {
1.45      noro     1302: again:
1.28      noro     1303:                d = dptond(0,(DP)BDY(t));
1.45      noro     1304:                stat = nd_nf(0,d,0,&nf);
                   1305:                if ( !stat ) {
                   1306:                        nd_reconstruct(0,0,0);
                   1307:                        goto again;
                   1308:                } else if ( nf ) return 0;
                   1309:                printf("."); fflush(stdout);
1.28      noro     1310:        }
1.45      noro     1311:        printf("\n");
1.28      noro     1312:        /* gbcheck : cand is a GB of Id(cand) ? */
1.34      noro     1313:        if ( !nd_gb(0,1) ) return 0;
1.28      noro     1314:        /* XXX */
1.23      noro     1315:        return 1;
                   1316: }
1.1       noro     1317:
                   1318: ND nd_remove_head(ND p)
                   1319: {
                   1320:        NM m;
                   1321:
                   1322:        m = BDY(p);
                   1323:        if ( !NEXT(m) ) {
1.34      noro     1324:                FREEND(p); p = 0;
1.31      noro     1325:        } else {
1.34      noro     1326:                BDY(p) = NEXT(m); LEN(p)--;
1.31      noro     1327:        }
1.1       noro     1328:        FREENM(m);
                   1329:        return p;
                   1330: }
                   1331:
                   1332: PGeoBucket create_pbucket()
                   1333: {
                   1334:     PGeoBucket g;
                   1335:
                   1336:        g = CALLOC(1,sizeof(struct oPGeoBucket));
                   1337:        g->m = -1;
                   1338:        return g;
                   1339: }
                   1340:
1.25      noro     1341: void free_pbucket(PGeoBucket b) {
                   1342:        int i;
                   1343:
1.26      noro     1344:        for ( i = 0; i <= b->m; i++ )
1.25      noro     1345:                if ( b->body[i] ) {
                   1346:                        nd_free(b->body[i]);
                   1347:                        b->body[i] = 0;
                   1348:                }
                   1349:        GC_free(b);
                   1350: }
                   1351:
1.31      noro     1352: void add_pbucket(int mod,PGeoBucket g,ND d)
1.1       noro     1353: {
1.31      noro     1354:        int l,i,k,m;
1.1       noro     1355:
1.31      noro     1356:        if ( !d )
                   1357:                return;
                   1358:        l = LEN(d);
1.29      noro     1359:        for ( k = 0, m = 1; l > m; k++, m <<= 1 );
                   1360:        /* 2^(k-1) < l <= 2^k (=m) */
1.31      noro     1361:        d = nd_add(mod,g->body[k],d);
                   1362:        for ( ; d && LEN(d) > m; k++, m <<= 1 ) {
1.1       noro     1363:                g->body[k] = 0;
1.31      noro     1364:                d = nd_add(mod,g->body[k+1],d);
1.1       noro     1365:        }
                   1366:        g->body[k] = d;
                   1367:        g->m = MAX(g->m,k);
                   1368: }
                   1369:
1.26      noro     1370: void mulq_pbucket(PGeoBucket g,Q c)
                   1371: {
                   1372:        int k;
                   1373:
                   1374:        for ( k = 0; k <= g->m; k++ )
                   1375:                nd_mul_c_q(g->body[k],c);
                   1376: }
                   1377:
1.19      noro     1378: int head_pbucket(int mod,PGeoBucket g)
1.1       noro     1379: {
                   1380:        int j,i,c,k,nv,sum;
                   1381:        unsigned int *di,*dj;
                   1382:        ND gi,gj;
                   1383:
                   1384:        k = g->m;
                   1385:        while ( 1 ) {
                   1386:                j = -1;
                   1387:                for ( i = 0; i <= k; i++ ) {
                   1388:                        if ( !(gi = g->body[i]) )
                   1389:                                continue;
                   1390:                        if ( j < 0 ) {
                   1391:                                j = i;
                   1392:                                gj = g->body[j];
                   1393:                                dj = HDL(gj);
1.14      noro     1394:                                sum = HCM(gj);
1.1       noro     1395:                        } else {
1.34      noro     1396:                                c = DL_COMPARE(HDL(gi),dj);
1.1       noro     1397:                                if ( c > 0 ) {
1.34      noro     1398:                                        if ( sum ) HCM(gj) = sum;
                   1399:                                        else g->body[j] = nd_remove_head(gj);
1.1       noro     1400:                                        j = i;
                   1401:                                        gj = g->body[j];
                   1402:                                        dj = HDL(gj);
1.14      noro     1403:                                        sum = HCM(gj);
1.1       noro     1404:                                } else if ( c == 0 ) {
1.19      noro     1405:                                        sum = sum+HCM(gi)-mod;
1.34      noro     1406:                                        if ( sum < 0 ) sum += mod;
1.1       noro     1407:                                        g->body[i] = nd_remove_head(gi);
                   1408:                                }
                   1409:                        }
                   1410:                }
1.34      noro     1411:                if ( j < 0 ) return -1;
1.1       noro     1412:                else if ( sum ) {
1.14      noro     1413:                        HCM(gj) = sum;
1.26      noro     1414:                        return j;
1.31      noro     1415:                } else
1.26      noro     1416:                        g->body[j] = nd_remove_head(gj);
                   1417:        }
                   1418: }
                   1419:
                   1420: int head_pbucket_q(PGeoBucket g)
                   1421: {
                   1422:        int j,i,c,k,nv;
                   1423:        Q sum,t;
                   1424:        ND gi,gj;
                   1425:
                   1426:        k = g->m;
                   1427:        while ( 1 ) {
                   1428:                j = -1;
                   1429:                for ( i = 0; i <= k; i++ ) {
1.34      noro     1430:                        if ( !(gi = g->body[i]) ) continue;
1.26      noro     1431:                        if ( j < 0 ) {
                   1432:                                j = i;
                   1433:                                gj = g->body[j];
                   1434:                                sum = HCQ(gj);
                   1435:                        } else {
                   1436:                                nv = NV(gi);
1.34      noro     1437:                                c = DL_COMPARE(HDL(gi),HDL(gj));
1.26      noro     1438:                                if ( c > 0 ) {
1.34      noro     1439:                                        if ( sum ) HCQ(gj) = sum;
                   1440:                                        else g->body[j] = nd_remove_head(gj);
1.26      noro     1441:                                        j = i;
                   1442:                                        gj = g->body[j];
                   1443:                                        sum = HCQ(gj);
                   1444:                                } else if ( c == 0 ) {
                   1445:                                        addq(sum,HCQ(gi),&t);
                   1446:                                        sum = t;
                   1447:                                        g->body[i] = nd_remove_head(gi);
                   1448:                                }
                   1449:                        }
                   1450:                }
1.34      noro     1451:                if ( j < 0 ) return -1;
1.26      noro     1452:                else if ( sum ) {
                   1453:                        HCQ(gj) = sum;
1.1       noro     1454:                        return j;
1.31      noro     1455:                } else
1.1       noro     1456:                        g->body[j] = nd_remove_head(gj);
                   1457:        }
                   1458: }
                   1459:
1.25      noro     1460: ND normalize_pbucket(int mod,PGeoBucket g)
1.1       noro     1461: {
1.31      noro     1462:        int i;
1.1       noro     1463:        ND r,t;
                   1464:
                   1465:        r = 0;
1.28      noro     1466:        for ( i = 0; i <= g->m; i++ ) {
1.31      noro     1467:                r = nd_add(mod,r,g->body[i]);
1.28      noro     1468:                g->body[i] = 0;
                   1469:        }
                   1470:        g->m = -1;
1.1       noro     1471:        return r;
                   1472: }
                   1473:
1.27      noro     1474: /* return value = 0 => input is not a GB */
                   1475:
                   1476: NODE nd_gb(int m,int checkonly)
1.1       noro     1477: {
                   1478:        int i,nh,sugar,stat;
1.23      noro     1479:        NODE r,g,t;
1.1       noro     1480:        ND_pairs d;
                   1481:        ND_pairs l;
                   1482:        ND h,nf;
                   1483:
1.23      noro     1484:        g = 0; d = 0;
                   1485:        for ( i = 0; i < nd_psn; i++ ) {
1.1       noro     1486:                d = update_pairs(d,g,i);
                   1487:                g = update_base(g,i);
                   1488:        }
                   1489:        sugar = 0;
                   1490:        while ( d ) {
                   1491: again:
                   1492:                l = nd_minp(d,&d);
1.14      noro     1493:                if ( SG(l) != sugar ) {
                   1494:                        sugar = SG(l);
1.1       noro     1495:                        fprintf(asir_out,"%d",sugar);
                   1496:                }
1.16      noro     1497:                stat = nd_sp(m,l,&h);
1.1       noro     1498:                if ( !stat ) {
                   1499:                        NEXT(l) = d; d = l;
1.20      noro     1500:                        d = nd_reconstruct(m,0,d);
1.1       noro     1501:                        goto again;
                   1502:                }
1.41      noro     1503: #if USE_GEOBUCKET
1.30      noro     1504:                stat = m?nd_nf_pbucket(m,h,!Top,&nf):nd_nf(m,h,!Top,&nf);
1.41      noro     1505: #else
                   1506:                stat = nd_nf(m,h,!Top,&nf);
                   1507: #endif
1.1       noro     1508:                if ( !stat ) {
                   1509:                        NEXT(l) = d; d = l;
1.20      noro     1510:                        d = nd_reconstruct(m,0,d);
1.1       noro     1511:                        goto again;
                   1512:                } else if ( nf ) {
1.27      noro     1513:                        if ( checkonly ) return 0;
1.1       noro     1514:                        printf("+"); fflush(stdout);
1.39      noro     1515:                        nh = m?nd_newps(m,nf,0):nd_newps(m,0,nf);
1.1       noro     1516:                        d = update_pairs(d,g,nh);
                   1517:                        g = update_base(g,nh);
                   1518:                        FREENDP(l);
                   1519:                } else {
                   1520:                        printf("."); fflush(stdout);
                   1521:                        FREENDP(l);
                   1522:                }
                   1523:        }
1.23      noro     1524:        if ( m )
1.34      noro     1525:                for ( t = g; t; t = NEXT(t) ) BDY(t) = (pointer)nd_ps[(int)BDY(t)];
1.23      noro     1526:        else
1.34      noro     1527:                for ( t = g; t; t = NEXT(t) ) BDY(t) = (pointer)nd_psq[(int)BDY(t)];
1.1       noro     1528:        return g;
                   1529: }
                   1530:
1.23      noro     1531: NODE nd_gb_trace(int m)
1.20      noro     1532: {
                   1533:        int i,nh,sugar,stat;
1.23      noro     1534:        NODE r,g,t;
1.20      noro     1535:        ND_pairs d;
                   1536:        ND_pairs l;
                   1537:        ND h,nf,nfq;
                   1538:
1.23      noro     1539:        g = 0; d = 0;
                   1540:        for ( i = 0; i < nd_psn; i++ ) {
1.20      noro     1541:                d = update_pairs(d,g,i);
                   1542:                g = update_base(g,i);
                   1543:        }
                   1544:        sugar = 0;
                   1545:        while ( d ) {
                   1546: again:
                   1547:                l = nd_minp(d,&d);
                   1548:                if ( SG(l) != sugar ) {
                   1549:                        sugar = SG(l);
                   1550:                        fprintf(asir_out,"%d",sugar);
                   1551:                }
                   1552:                stat = nd_sp(m,l,&h);
                   1553:                if ( !stat ) {
                   1554:                        NEXT(l) = d; d = l;
                   1555:                        d = nd_reconstruct(m,1,d);
                   1556:                        goto again;
                   1557:                }
1.41      noro     1558: #if USE_GEOBUCKET
1.30      noro     1559:                stat = nd_nf_pbucket(m,h,!Top,&nf);
1.41      noro     1560: #else
                   1561:                stat = nd_nf(m,h,!Top,&nf);
                   1562: #endif
1.20      noro     1563:                if ( !stat ) {
                   1564:                        NEXT(l) = d; d = l;
                   1565:                        d = nd_reconstruct(m,1,d);
                   1566:                        goto again;
                   1567:                } else if ( nf ) {
                   1568:                        /* overflow does not occur */
                   1569:                        nd_sp(0,l,&h);
                   1570:                        nd_nf(0,h,!Top,&nfq);
                   1571:                        if ( nfq ) {
                   1572:                                printf("+"); fflush(stdout);
1.39      noro     1573:                                nh = nd_newps(m,nf,nfq);
1.27      noro     1574:                                /* failure; m|HC(nfq) */
1.38      noro     1575:                                if ( nh < 0 ) return 0;
1.20      noro     1576:                                d = update_pairs(d,g,nh);
                   1577:                                g = update_base(g,nh);
                   1578:                        } else {
                   1579:                                printf("*"); fflush(stdout);
                   1580:                        }
                   1581:                } else {
                   1582:                        printf("."); fflush(stdout);
                   1583:                }
                   1584:                FREENDP(l);
                   1585:        }
1.23      noro     1586:        for ( t = g; t; t = NEXT(t) )
                   1587:                BDY(t) = (pointer)nd_psq[(int)BDY(t)];
1.20      noro     1588:        return g;
                   1589: }
                   1590:
1.23      noro     1591: int ndv_compare(NDV *p1,NDV *p2)
                   1592: {
1.34      noro     1593:        return DL_COMPARE(HDL(*p1),HDL(*p2));
1.23      noro     1594: }
                   1595:
                   1596: int ndv_compare_rev(NDV *p1,NDV *p2)
                   1597: {
1.34      noro     1598:        return -DL_COMPARE(HDL(*p1),HDL(*p2));
1.23      noro     1599: }
                   1600:
                   1601: NODE nd_reduceall(int m,NODE f)
                   1602: {
                   1603:        int i,j,n,stat;
                   1604:        NDV *w,*ps;
                   1605:        ND nf,g;
                   1606:        NODE t,a0,a;
1.45      noro     1607:        struct oBaseSet base;
                   1608:        unsigned int **bound;
1.23      noro     1609:
                   1610:        for ( n = 0, t = f; t; t = NEXT(t), n++ );
                   1611:        ps = (NDV *)ALLOCA(n*sizeof(NDV));
1.45      noro     1612:        bound = (unsigned int **)ALLOCA(n*sizeof(unsigned int *));
                   1613:        for ( i = 0, t = f; i < n; i++, t = NEXT(t) ) {
1.23      noro     1614:                ps[i] = (NDV)BDY(t);
1.45      noro     1615:                bound[i] = ndv_compute_bound(ps[i]);
                   1616:        }
1.23      noro     1617:        qsort(ps,n,sizeof(NDV),(int (*)(const void *,const void *))ndv_compare);
1.45      noro     1618:        base.ps = (NDV *)ALLOCA((n-1)*sizeof(NDV));
                   1619:        base.bound = (unsigned int **)ALLOCA((n-1)*sizeof(unsigned int *));
                   1620:        base.len = n-1;
1.23      noro     1621:        for ( i = 0; i < n; i++ ) {
1.45      noro     1622: again:
                   1623:                for ( j = 0; j < i; j++ ) {
                   1624:                        base.ps[j] = ps[j]; base.bound[j] = bound[j];
                   1625:                }
                   1626:                for ( j = i+1; j < n; j++ ) {
                   1627:                        base.ps[j-1] = ps[j]; base.bound[j-1] = bound[j];
                   1628:                }
1.23      noro     1629:                g = ndvtond(m,ps[i]);
1.45      noro     1630:                stat = nd_nf_direct(m,g,&base,1,&nf);
                   1631:                if ( !stat ) {
1.23      noro     1632:                        nd_reconstruct_direct(m,ps,n);
1.45      noro     1633:                        goto again;
                   1634:                }
1.23      noro     1635:                else if ( !nf ) {
                   1636:                        printf("."); fflush(stdout);
                   1637:                        ndv_free(ps[i]);
1.34      noro     1638:                        for ( j = i+1; j < n; j++ ) ps[j-1] = ps[j];
1.23      noro     1639:                        n--;
                   1640:                } else {
                   1641:                        printf("."); fflush(stdout);
                   1642:                        ndv_free(ps[i]);
1.24      noro     1643:                        nd_removecont(m,nf);
1.23      noro     1644:                        ps[i] = ndtondv(m,nf);
1.45      noro     1645:                        bound[i] = ndv_compute_bound(ps[i]);
1.23      noro     1646:                        nd_free(nf);
                   1647:                }
                   1648:        }
1.45      noro     1649:        printf("\n");
1.23      noro     1650:        for ( a0 = 0, i = 0; i < n; i++ ) {
                   1651:                NEXTNODE(a0,a);
                   1652:                BDY(a) = (pointer)ps[i];
                   1653:        }
                   1654:        NEXT(a) = 0;
                   1655:        return a0;
                   1656: }
                   1657:
1.1       noro     1658: ND_pairs update_pairs( ND_pairs d, NODE /* of index */ g, int t)
                   1659: {
                   1660:        ND_pairs d1,nd,cur,head,prev,remove;
                   1661:
                   1662:        if ( !g ) return d;
                   1663:        d = crit_B(d,t);
                   1664:        d1 = nd_newpairs(g,t);
                   1665:        d1 = crit_M(d1);
                   1666:        d1 = crit_F(d1);
                   1667:        prev = 0; cur = head = d1;
                   1668:        while ( cur ) {
                   1669:                if ( crit_2( cur->i1,cur->i2 ) ) {
                   1670:                        remove = cur;
1.34      noro     1671:                        if ( !prev ) head = cur = NEXT(cur);
                   1672:                        else cur = NEXT(prev) = NEXT(cur);
1.1       noro     1673:                        FREENDP(remove);
                   1674:                } else {
1.34      noro     1675:                        prev = cur; cur = NEXT(cur);
1.1       noro     1676:                }
                   1677:        }
                   1678:        if ( !d )
                   1679:                return head;
                   1680:        else {
                   1681:                nd = d;
1.34      noro     1682:                while ( NEXT(nd) ) nd = NEXT(nd);
1.1       noro     1683:                NEXT(nd) = head;
                   1684:                return d;
                   1685:        }
                   1686: }
                   1687:
                   1688: ND_pairs nd_newpairs( NODE g, int t )
                   1689: {
                   1690:        NODE h;
                   1691:        unsigned int *dl;
1.34      noro     1692:        int ts,s;
1.1       noro     1693:        ND_pairs r,r0;
                   1694:
1.20      noro     1695:        dl = DL(nd_psh[t]);
1.34      noro     1696:        ts = SG(nd_psh[t]) - TD(dl);
1.1       noro     1697:        for ( r0 = 0, h = g; h; h = NEXT(h) ) {
                   1698:                NEXTND_pairs(r0,r);
                   1699:                r->i1 = (int)BDY(h);
                   1700:                r->i2 = t;
1.20      noro     1701:                ndl_lcm(DL(nd_psh[r->i1]),dl,r->lcm);
1.34      noro     1702:                s = SG(nd_psh[r->i1])-TD(DL(nd_psh[r->i1]));
                   1703:                SG(r) = MAX(s,ts) + TD(LCM(r));
1.1       noro     1704:        }
                   1705:        NEXT(r) = 0;
                   1706:        return r0;
                   1707: }
                   1708:
                   1709: ND_pairs crit_B( ND_pairs d, int s )
                   1710: {
                   1711:        ND_pairs cur,head,prev,remove;
                   1712:        unsigned int *t,*tl,*lcm;
                   1713:        int td,tdl;
                   1714:
                   1715:        if ( !d ) return 0;
1.20      noro     1716:        t = DL(nd_psh[s]);
1.1       noro     1717:        prev = 0;
                   1718:        head = cur = d;
1.41      noro     1719:        lcm = (unsigned int *)ALLOCA(nd_wpd*sizeof(unsigned int));
1.1       noro     1720:        while ( cur ) {
                   1721:                tl = cur->lcm;
                   1722:                if ( ndl_reducible(tl,t)
1.20      noro     1723:                        && (ndl_lcm(DL(nd_psh[cur->i1]),t,lcm),!ndl_equal(lcm,tl))
                   1724:                        && (ndl_lcm(DL(nd_psh[cur->i2]),t,lcm),!ndl_equal(lcm,tl)) ) {
1.1       noro     1725:                        remove = cur;
                   1726:                        if ( !prev ) {
                   1727:                                head = cur = NEXT(cur);
                   1728:                        } else {
                   1729:                                cur = NEXT(prev) = NEXT(cur);
                   1730:                        }
                   1731:                        FREENDP(remove);
                   1732:                } else {
1.34      noro     1733:                        prev = cur; cur = NEXT(cur);
1.1       noro     1734:                }
                   1735:        }
                   1736:        return head;
                   1737: }
                   1738:
1.34      noro     1739: /* XXX : check is necessary */
                   1740:
1.1       noro     1741: ND_pairs crit_M( ND_pairs d1 )
                   1742: {
                   1743:        ND_pairs e,d2,d3,dd,p;
                   1744:        unsigned int *id,*jd;
                   1745:
                   1746:        for ( dd = 0, e = d1; e; e = d3 ) {
                   1747:                if ( !(d2 = NEXT(e)) ) {
                   1748:                        NEXT(e) = dd;
                   1749:                        return e;
                   1750:                }
1.34      noro     1751:                id = LCM(e);
1.1       noro     1752:                for ( d3 = 0; d2; d2 = p ) {
1.34      noro     1753:                        p = NEXT(d2);
                   1754:                        jd = LCM(d2);
                   1755:                        if ( ndl_equal(jd,id) )
                   1756:                                ;
                   1757:                        else if ( TD(jd) > TD(id) )
1.1       noro     1758:                                if ( ndl_reducible(jd,id) ) continue;
                   1759:                                else ;
1.34      noro     1760:                        else if ( ndl_reducible(id,jd) ) goto delit;
1.1       noro     1761:                        NEXT(d2) = d3;
                   1762:                        d3 = d2;
                   1763:                }
                   1764:                NEXT(e) = dd;
                   1765:                dd = e;
                   1766:                continue;
                   1767:                /**/
                   1768:        delit:  NEXT(d2) = d3;
                   1769:                d3 = d2;
                   1770:                for ( ; p; p = d2 ) {
                   1771:                        d2 = NEXT(p);
                   1772:                        NEXT(p) = d3;
                   1773:                        d3 = p;
                   1774:                }
                   1775:                FREENDP(e);
                   1776:        }
                   1777:        return dd;
                   1778: }
                   1779:
                   1780: ND_pairs crit_F( ND_pairs d1 )
                   1781: {
                   1782:        ND_pairs rest, head,remove;
                   1783:        ND_pairs last, p, r, w;
                   1784:        int s;
                   1785:
                   1786:        for ( head = last = 0, p = d1; NEXT(p); ) {
                   1787:                r = w = equivalent_pairs(p,&rest);
1.14      noro     1788:                s = SG(r);
1.1       noro     1789:                w = NEXT(w);
                   1790:                while ( w ) {
                   1791:                        if ( crit_2(w->i1,w->i2) ) {
                   1792:                                r = w;
                   1793:                                w = NEXT(w);
                   1794:                                while ( w ) {
                   1795:                                        remove = w;
                   1796:                                        w = NEXT(w);
                   1797:                                        FREENDP(remove);
                   1798:                                }
                   1799:                                break;
1.14      noro     1800:                        } else if ( SG(w) < s ) {
1.1       noro     1801:                                FREENDP(r);
                   1802:                                r = w;
1.14      noro     1803:                                s = SG(r);
1.1       noro     1804:                                w = NEXT(w);
                   1805:                        } else {
                   1806:                                remove = w;
                   1807:                                w = NEXT(w);
                   1808:                                FREENDP(remove);
                   1809:                        }
                   1810:                }
                   1811:                if ( last ) NEXT(last) = r;
                   1812:                else head = r;
                   1813:                NEXT(last = r) = 0;
                   1814:                p = rest;
                   1815:                if ( !p ) return head;
                   1816:        }
                   1817:        if ( !last ) return p;
                   1818:        NEXT(last) = p;
                   1819:        return head;
                   1820: }
                   1821:
                   1822: int crit_2( int dp1, int dp2 )
                   1823: {
1.20      noro     1824:        return ndl_disjoint(DL(nd_psh[dp1]),DL(nd_psh[dp2]));
1.1       noro     1825: }
                   1826:
1.40      noro     1827: ND_pairs equivalent_pairs( ND_pairs d1, ND_pairs *prest )
1.1       noro     1828: {
                   1829:        ND_pairs w,p,r,s;
                   1830:        unsigned int *d;
                   1831:
                   1832:        w = d1;
1.34      noro     1833:        d = LCM(w);
1.1       noro     1834:        s = NEXT(w);
                   1835:        NEXT(w) = 0;
                   1836:        for ( r = 0; s; s = p ) {
                   1837:                p = NEXT(s);
1.34      noro     1838:                if ( ndl_equal(d,LCM(s)) ) {
1.39      noro     1839:                        NEXT(s) = w; w = s;
1.1       noro     1840:                } else {
1.39      noro     1841:                        NEXT(s) = r; r = s;
1.1       noro     1842:                }
                   1843:        }
                   1844:        *prest = r;
                   1845:        return w;
                   1846: }
                   1847:
                   1848: NODE update_base(NODE nd,int ndp)
                   1849: {
                   1850:        unsigned int *dl, *dln;
                   1851:        NODE last, p, head;
                   1852:
1.20      noro     1853:        dl = DL(nd_psh[ndp]);
1.1       noro     1854:        for ( head = last = 0, p = nd; p; ) {
1.20      noro     1855:                dln = DL(nd_psh[(int)BDY(p)]);
1.34      noro     1856:                if ( ndl_reducible( dln, dl ) ) {
1.1       noro     1857:                        p = NEXT(p);
                   1858:                        if ( last ) NEXT(last) = p;
                   1859:                } else {
                   1860:                        if ( !last ) head = p;
                   1861:                        p = NEXT(last = p);
                   1862:                }
                   1863:        }
                   1864:        head = append_one(head,ndp);
                   1865:        return head;
                   1866: }
                   1867:
                   1868: ND_pairs nd_minp( ND_pairs d, ND_pairs *prest )
                   1869: {
                   1870:        ND_pairs m,ml,p,l;
                   1871:        unsigned int *lcm;
1.33      noro     1872:        int s,td,len,tlen,c,c1;
1.1       noro     1873:
                   1874:        if ( !(p = NEXT(m = d)) ) {
                   1875:                *prest = p;
                   1876:                NEXT(m) = 0;
                   1877:                return m;
                   1878:        }
1.14      noro     1879:        s = SG(m);
1.33      noro     1880:        for ( ml = 0, l = m; p; p = NEXT(l = p) )
1.34      noro     1881:                if ( (SG(p) < s)
                   1882:                        || ((SG(p) == s) && (DL_COMPARE(LCM(p),LCM(m)) < 0)) ) {
1.39      noro     1883:                        ml = l; m = p; s = SG(m);
1.1       noro     1884:                }
                   1885:        if ( !ml ) *prest = NEXT(m);
                   1886:        else {
                   1887:                NEXT(ml) = NEXT(m);
                   1888:                *prest = d;
                   1889:        }
                   1890:        NEXT(m) = 0;
                   1891:        return m;
                   1892: }
                   1893:
1.39      noro     1894: int nd_newps(int mod,ND a,ND aq)
1.1       noro     1895: {
1.3       noro     1896:        int len;
1.13      noro     1897:        RHist r;
1.20      noro     1898:        NDV b;
1.3       noro     1899:
1.1       noro     1900:        if ( nd_psn == nd_pslen ) {
                   1901:                nd_pslen *= 2;
1.11      noro     1902:                nd_ps = (NDV *)REALLOC((char *)nd_ps,nd_pslen*sizeof(NDV));
1.20      noro     1903:                nd_psq = (NDV *)REALLOC((char *)nd_psq,nd_pslen*sizeof(NDV));
1.13      noro     1904:                nd_psh = (RHist *)REALLOC((char *)nd_psh,nd_pslen*sizeof(RHist));
1.1       noro     1905:                nd_bound = (unsigned int **)
                   1906:                        REALLOC((char *)nd_bound,nd_pslen*sizeof(unsigned int *));
                   1907:        }
1.39      noro     1908:        if ( a && aq ) {
                   1909:                /* trace lifting */
1.46      noro     1910:                if ( !rem(NM(HCQ(aq)),mod) )
                   1911:                        return -1;
1.39      noro     1912:        }
                   1913:        NEWRHist(r); nd_psh[nd_psn] = r;
                   1914:        if ( aq ) {
                   1915:                nd_removecont(0,aq);
                   1916:                nd_psq[nd_psn] = ndtondv(0,aq);
1.45      noro     1917:                nd_bound[nd_psn] = ndv_compute_bound(nd_psq[nd_psn]);
1.39      noro     1918:                SG(r) = SG(aq); ndl_copy(HDL(aq),DL(r));
                   1919:        }
                   1920:        if ( a ) {
                   1921:                nd_removecont(mod,a);
                   1922:                nd_ps[nd_psn] = ndtondv(mod,a);
                   1923:                if ( !aq ) {
1.45      noro     1924:                        nd_bound[nd_psn] = ndv_compute_bound(nd_ps[nd_psn]);
1.39      noro     1925:                        SG(r) = SG(a); ndl_copy(HDL(a),DL(r));
                   1926:                }
1.20      noro     1927:        }
1.39      noro     1928:        nd_free(a); nd_free(aq);
1.1       noro     1929:        return nd_psn++;
                   1930: }
                   1931:
1.39      noro     1932: void nd_setup(int mod,int trace,NODE f)
1.1       noro     1933: {
1.5       noro     1934:        int i,j,td,len,max;
1.1       noro     1935:        NODE s,s0,f0;
1.5       noro     1936:        unsigned int *d;
1.13      noro     1937:        RHist r;
1.20      noro     1938:        NDV a;
1.11      noro     1939:
                   1940:        nd_found = 0; nd_notfirst = 0; nd_create = 0;
1.1       noro     1941:
                   1942:        nd_psn = length(f); nd_pslen = 2*nd_psn;
1.11      noro     1943:        nd_ps = (NDV *)MALLOC(nd_pslen*sizeof(NDV));
1.20      noro     1944:        nd_psq = (NDV *)MALLOC(nd_pslen*sizeof(NDV));
1.13      noro     1945:        nd_psh = (RHist *)MALLOC(nd_pslen*sizeof(RHist));
1.1       noro     1946:        nd_bound = (unsigned int **)MALLOC(nd_pslen*sizeof(unsigned int *));
1.5       noro     1947:        for ( max = 0, i = 0, s = f; i < nd_psn; i++, s = NEXT(s) ) {
                   1948:                nd_bound[i] = d = dp_compute_bound((DP)BDY(s));
                   1949:                for ( j = 0; j < nd_nvar; j++ )
                   1950:                        max = MAX(d[j],max);
                   1951:        }
1.11      noro     1952:        if ( !nd_red )
1.13      noro     1953:                nd_red = (RHist *)MALLOC(REDTAB_LEN*sizeof(RHist));
                   1954:        bzero(nd_red,REDTAB_LEN*sizeof(RHist));
1.5       noro     1955:
1.34      noro     1956:        if ( max < 2 ) nd_bpe = 2;
                   1957:        else if ( max < 4 ) nd_bpe = 4;
                   1958:        else if ( max < 64 ) nd_bpe = 6;
                   1959:        else if ( max < 256 ) nd_bpe = 8;
                   1960:        else if ( max < 65536 ) nd_bpe = 16;
                   1961:        else nd_bpe = 32;
1.13      noro     1962:
1.1       noro     1963:        nd_setup_parameters();
                   1964:        nd_free_private_storage();
                   1965:        for ( i = 0; i < nd_psn; i++, f = NEXT(f) ) {
1.20      noro     1966:                NEWRHist(r);
1.39      noro     1967:                a = dptondv(mod,(DP)BDY(f)); ndv_removecont(mod,a);
1.34      noro     1968:                SG(r) = HTD(a); ndl_copy(HDL(a),DL(r));
1.1       noro     1969:
1.39      noro     1970:                if ( trace ) {
                   1971:                        nd_ps[i] = a;
                   1972:                        a = dptondv(0,(DP)BDY(f)); ndv_removecont(0,a);
                   1973:                        nd_psq[i] = a;
                   1974:                } else {
                   1975:                        if ( mod ) nd_ps[i] = a;
                   1976:                        else nd_psq[i] = a;
                   1977:                }
1.20      noro     1978:                nd_psh[i] = r;
                   1979:        }
                   1980: }
                   1981:
1.1       noro     1982: void nd_gr(LIST f,LIST v,int m,struct order_spec *ord,LIST *rp)
                   1983: {
                   1984:        struct order_spec ord1;
                   1985:        VL fv,vv,vc;
                   1986:        NODE fd,fd0,r,r0,t,x,s,xx;
                   1987:        DP a,b,c;
                   1988:
                   1989:        get_vars((Obj)f,&fv); pltovl(v,&vv);
                   1990:        nd_nvar = length(vv);
1.32      noro     1991:        nd_init_ord(ord);
                   1992:        /* XXX for DP */
1.1       noro     1993:        initd(ord);
                   1994:        for ( fd0 = 0, t = BDY(f); t; t = NEXT(t) ) {
                   1995:                ptod(CO,vv,(P)BDY(t),&b);
1.20      noro     1996:                NEXTNODE(fd0,fd); BDY(fd) = (pointer)b;
1.1       noro     1997:        }
                   1998:        if ( fd0 ) NEXT(fd) = 0;
1.39      noro     1999:        nd_setup(m,0,fd0);
1.27      noro     2000:        x = nd_gb(m,0);
1.25      noro     2001:        fprintf(asir_out,"found=%d,notfirst=%d,create=%d\n",
                   2002:                nd_found,nd_notfirst,nd_create);
1.23      noro     2003:        x = nd_reduceall(m,x);
                   2004:        for ( r0 = 0, t = x; t; t = NEXT(t) ) {
1.1       noro     2005:                NEXTNODE(r0,r);
1.20      noro     2006:                if ( m ) {
1.23      noro     2007:                        a = ndvtodp(m,BDY(t));
1.16      noro     2008:                        _dtop_mod(CO,vv,a,(P *)&BDY(r));
1.20      noro     2009:                } else {
1.23      noro     2010:                        a = ndvtodp(m,BDY(t));
1.16      noro     2011:                        dtop(CO,vv,a,(P *)&BDY(r));
1.20      noro     2012:                }
                   2013:        }
                   2014:        if ( r0 ) NEXT(r) = 0;
                   2015:        MKLIST(*rp,r0);
                   2016: }
                   2017:
1.23      noro     2018: void nd_gr_trace(LIST f,LIST v,int m,int homo,struct order_spec *ord,LIST *rp)
1.20      noro     2019: {
                   2020:        struct order_spec ord1;
                   2021:        VL fv,vv,vc;
1.27      noro     2022:        NODE fd,fd0,in0,in,r,r0,t,s,cand;
1.23      noro     2023:        DP a,b,c,h;
1.27      noro     2024:        P p;
1.20      noro     2025:
                   2026:        get_vars((Obj)f,&fv); pltovl(v,&vv);
                   2027:        nd_nvar = length(vv);
                   2028:        initd(ord);
1.23      noro     2029:        if ( homo ) {
                   2030:                homogenize_order(ord,nd_nvar,&ord1);
1.27      noro     2031:                for ( fd0 = 0, in0 = 0, t = BDY(f); t; t = NEXT(t) ) {
1.23      noro     2032:                        ptod(CO,vv,(P)BDY(t),&c);
                   2033:                        if ( c ) {
                   2034:                                dp_homo(c,&h); NEXTNODE(fd0,fd); BDY(fd) = (pointer)h;
1.27      noro     2035:                                NEXTNODE(in0,in); BDY(in) = (pointer)c;
1.23      noro     2036:                        }
                   2037:                }
                   2038:                if ( fd0 ) NEXT(fd) = 0;
1.27      noro     2039:                if ( in0 ) NEXT(in) = 0;
1.32      noro     2040:                nd_init_ord(&ord1);
1.23      noro     2041:                initd(&ord1);
                   2042:                nd_nvar++;
1.25      noro     2043:        } else {
                   2044:                for ( fd0 = 0, t = BDY(f); t; t = NEXT(t) ) {
                   2045:                        ptod(CO,vv,(P)BDY(t),&c);
                   2046:                        if ( c ) {
                   2047:                                NEXTNODE(fd0,fd); BDY(fd) = (pointer)c;
1.23      noro     2048:                        }
                   2049:                }
1.25      noro     2050:                if ( fd0 ) NEXT(fd) = 0;
1.27      noro     2051:                in0 = fd0;
1.33      noro     2052:                nd_init_ord(ord);
1.27      noro     2053:        }
                   2054:        do {
1.39      noro     2055:                nd_setup(m,1,fd0);
1.27      noro     2056:                cand = nd_gb_trace(m);
                   2057:                if ( !cand ) continue;
                   2058:                if ( homo ) {
                   2059:                        /* dehomogenization */
                   2060:                        for ( t = cand; t; t = NEXT(t) )
1.45      noro     2061:                                ndv_dehomogenize((NDV)BDY(t),ord);
1.27      noro     2062:                        nd_nvar--;
1.45      noro     2063:                        initd(ord);
                   2064:                        nd_init_ord(ord);
1.27      noro     2065:                        nd_setup_parameters();
                   2066:                        cand = nd_reducebase(cand);
                   2067:                }
                   2068:                fprintf(asir_out,"found=%d,notfirst=%d,create=%d\n",
                   2069:                        nd_found,nd_notfirst,nd_create);
                   2070:                cand = nd_reduceall(0,cand);
                   2071:                initd(ord);
                   2072:                for ( r0 = 0; cand; cand = NEXT(cand) ) {
                   2073:                        NEXTNODE(r0,r);
                   2074:                        BDY(r) = (pointer)ndvtodp(0,(NDV)BDY(cand));
                   2075:                }
                   2076:                if ( r0 ) NEXT(r) = 0;
                   2077:                cand = r0;
                   2078:        } while ( !nd_check_candidate(in0,cand) );
                   2079:        /* dp->p */
                   2080:        for ( r = cand; r; r = NEXT(r) ) {
                   2081:                dtop(CO,vv,BDY(r),&p);
                   2082:                BDY(r) = (pointer)p;
1.23      noro     2083:        }
1.27      noro     2084:        MKLIST(*rp,cand);
1.1       noro     2085: }
                   2086:
                   2087: void dltondl(int n,DL dl,unsigned int *r)
                   2088: {
                   2089:        unsigned int *d;
1.43      noro     2090:        int i,j,l,s,ord_l,ord_o;
                   2091:        struct order_pair *op;
1.1       noro     2092:
                   2093:        d = dl->d;
1.41      noro     2094:        for ( i = 0; i < nd_wpd; i++ ) r[i] = 0;
1.43      noro     2095:        if ( nd_blockmask ) {
                   2096:                l = nd_blockmask->n;
                   2097:                op = nd_blockmask->order_pair;
                   2098:                for ( j = 0, s = 0; j < l; j++ ) {
                   2099:                        ord_o = op[j].order;
                   2100:                        ord_l = op[j].length;
                   2101:                        if ( !ord_o )
                   2102:                                for ( i = 0; i < ord_l; i++ )
                   2103:                                        PUT_EXP(r,s+ord_l-i-1,d[s+i]);
                   2104:                        else
                   2105:                                for ( i = 0; i < ord_l; i++ )
                   2106:                                        PUT_EXP(r,s+i,d[s+i]);
                   2107:                        s += ord_l;
                   2108:                }
                   2109:                TD(r) = ndl_weight(r);
                   2110:                for ( j = 0; j < l; j++ )
                   2111:                        r[j+1] = ndl_weight_mask(r,j);
                   2112:        } else {
                   2113:                if ( nd_isrlex )
                   2114:                        for ( i = 0; i < n; i++ ) PUT_EXP(r,n-1-i,d[i]);
                   2115:                else
                   2116:                        for ( i = 0; i < n; i++ ) PUT_EXP(r,i,d[i]);
                   2117:                TD(r) = ndl_weight(r);
                   2118:        }
1.1       noro     2119: }
                   2120:
1.34      noro     2121: DL ndltodl(int n,unsigned int *ndl)
1.1       noro     2122: {
                   2123:        DL dl;
                   2124:        int *d;
1.43      noro     2125:        int i,j,l,s,ord_l,ord_o;
                   2126:        struct order_pair *op;
1.1       noro     2127:
                   2128:        NEWDL(dl,n);
1.34      noro     2129:        dl->td = TD(ndl);
1.1       noro     2130:        d = dl->d;
1.43      noro     2131:        if ( nd_blockmask ) {
                   2132:                l = nd_blockmask->n;
                   2133:                op = nd_blockmask->order_pair;
                   2134:                for ( j = 0, s = 0; j < l; j++ ) {
                   2135:                        ord_o = op[j].order;
                   2136:                        ord_l = op[j].length;
                   2137:                        if ( !ord_o )
                   2138:                                for ( i = 0; i < ord_l; i++ )
                   2139:                                        d[s+i] = GET_EXP(ndl,s+ord_l-i-1);
                   2140:                        else
                   2141:                                for ( i = 0; i < ord_l; i++ )
                   2142:                                        d[s+i] = GET_EXP(ndl,s+i);
                   2143:                        s += ord_l;
                   2144:                }
                   2145:        } else {
                   2146:                if ( nd_isrlex )
                   2147:                        for ( i = 0; i < n; i++ )
                   2148:                                d[i] = GET_EXP(ndl,n-1-i);
                   2149:                else
                   2150:                        for ( i = 0; i < n; i++ )
                   2151:                                d[i] = GET_EXP(ndl,i);
                   2152:        }
1.1       noro     2153:        return dl;
                   2154: }
                   2155:
1.17      noro     2156: ND dptond(int mod,DP p)
1.1       noro     2157: {
                   2158:        ND d;
                   2159:        NM m0,m;
                   2160:        MP t;
1.31      noro     2161:        int n,l;
1.1       noro     2162:
                   2163:        if ( !p )
                   2164:                return 0;
                   2165:        n = NV(p);
                   2166:        m0 = 0;
1.31      noro     2167:        for ( t = BDY(p), l = 0; t; t = NEXT(t), l++ ) {
1.1       noro     2168:                NEXTNM(m0,m);
1.34      noro     2169:                if ( mod ) CM(m) = ITOS(C(t));
                   2170:                else CQ(m) = (Q)C(t);
1.14      noro     2171:                dltondl(n,DL(t),DL(m));
1.1       noro     2172:        }
                   2173:        NEXT(m) = 0;
1.31      noro     2174:        MKND(n,m0,l,d);
1.14      noro     2175:        SG(d) = SG(p);
1.1       noro     2176:        return d;
                   2177: }
                   2178:
1.17      noro     2179: DP ndtodp(int mod,ND p)
1.1       noro     2180: {
                   2181:        DP d;
                   2182:        MP m0,m;
                   2183:        NM t;
                   2184:        int n;
                   2185:
                   2186:        if ( !p )
                   2187:                return 0;
                   2188:        n = NV(p);
                   2189:        m0 = 0;
                   2190:        for ( t = BDY(p); t; t = NEXT(t) ) {
                   2191:                NEXTMP(m0,m);
1.34      noro     2192:                if ( mod ) C(m) = STOI(CM(t));
                   2193:                else C(m) = (P)CQ(t);
                   2194:                DL(m) = ndltodl(n,DL(t));
1.1       noro     2195:        }
                   2196:        NEXT(m) = 0;
                   2197:        MKDP(n,m0,d);
1.14      noro     2198:        SG(d) = SG(p);
1.1       noro     2199:        return d;
                   2200: }
                   2201:
                   2202: void ndl_print(unsigned int *dl)
                   2203: {
                   2204:        int n;
1.43      noro     2205:        int i,j,l,ord_o,ord_l,s,s0;
                   2206:        struct order_pair *op;
1.1       noro     2207:
                   2208:        n = nd_nvar;
                   2209:        printf("<<");
1.43      noro     2210:        if ( nd_blockmask ) {
                   2211:                l = nd_blockmask->n;
                   2212:                op = nd_blockmask->order_pair;
                   2213:                for ( j = 0, s = s0 = 0; j < l; j++ ) {
                   2214:                        ord_o = op[j].order;
                   2215:                        ord_l = op[j].length;
                   2216:                        if ( !ord_o )
                   2217:                                for ( i = 0, s0 += ord_l; i < ord_l; i++, s++ )
                   2218:                                        printf(s==n-1?"%d":"%d,",GET_EXP(dl,s0-i-1));
                   2219:                        else
                   2220:                                for ( i = 0; i < ord_l; i++, s++ )
                   2221:                                        printf(s==n-1?"%d":"%d,",GET_EXP(dl,s));
                   2222:                }
                   2223:        } else {
                   2224:                if ( nd_isrlex )
                   2225:                        for ( i = 0; i < n; i++ ) printf(i==n-1?"%d":"%d,",GET_EXP(dl,n-1-i));
                   2226:                else
                   2227:                        for ( i = 0; i < n; i++ ) printf(i==n-1?"%d":"%d,",GET_EXP(dl,i));
                   2228:        }
1.1       noro     2229:        printf(">>");
                   2230: }
                   2231:
                   2232: void nd_print(ND p)
                   2233: {
                   2234:        NM m;
                   2235:
                   2236:        if ( !p )
                   2237:                printf("0\n");
                   2238:        else {
                   2239:                for ( m = BDY(p); m; m = NEXT(m) ) {
1.14      noro     2240:                        printf("+%d*",CM(m));
                   2241:                        ndl_print(DL(m));
1.1       noro     2242:                }
                   2243:                printf("\n");
                   2244:        }
                   2245: }
                   2246:
1.16      noro     2247: void nd_print_q(ND p)
                   2248: {
                   2249:        NM m;
                   2250:
                   2251:        if ( !p )
                   2252:                printf("0\n");
                   2253:        else {
                   2254:                for ( m = BDY(p); m; m = NEXT(m) ) {
                   2255:                        printf("+");
                   2256:                        printexpr(CO,CQ(m));
                   2257:                        printf("*");
                   2258:                        ndl_print(DL(m));
                   2259:                }
                   2260:                printf("\n");
                   2261:        }
                   2262: }
                   2263:
1.1       noro     2264: void ndp_print(ND_pairs d)
                   2265: {
                   2266:        ND_pairs t;
                   2267:
1.34      noro     2268:        for ( t = d; t; t = NEXT(t) ) printf("%d,%d ",t->i1,t->i2);
1.1       noro     2269:        printf("\n");
                   2270: }
                   2271:
1.20      noro     2272: void nd_removecont(int mod,ND p)
1.16      noro     2273: {
                   2274:        int i,n;
                   2275:        Q *w;
                   2276:        Q dvr,t;
                   2277:        NM m;
1.21      noro     2278:        struct oVECT v;
                   2279:        N q,r;
1.16      noro     2280:
1.34      noro     2281:        if ( mod ) nd_mul_c(mod,p,invm(HCM(p),mod));
1.20      noro     2282:        else {
                   2283:                for ( m = BDY(p), n = 0; m; m = NEXT(m), n++ );
                   2284:                w = (Q *)ALLOCA(n*sizeof(Q));
1.21      noro     2285:                v.len = n;
                   2286:                v.body = (pointer *)w;
1.34      noro     2287:                for ( m = BDY(p), i = 0; i < n; m = NEXT(m), i++ ) w[i] = CQ(m);
1.21      noro     2288:                removecont_array(w,n);
                   2289:                for ( m = BDY(p), i = 0; i < n; m = NEXT(m), i++ ) CQ(m) = w[i];
1.16      noro     2290:        }
                   2291: }
                   2292:
1.21      noro     2293: void nd_removecont2(ND p1,ND p2)
                   2294: {
                   2295:        int i,n1,n2,n;
                   2296:        Q *w;
                   2297:        Q dvr,t;
                   2298:        NM m;
                   2299:        struct oVECT v;
                   2300:        N q,r;
                   2301:
                   2302:        if ( !p1 ) {
                   2303:                nd_removecont(0,p2); return;
                   2304:        } else if ( !p2 ) {
                   2305:                nd_removecont(0,p1); return;
                   2306:        }
                   2307:        n1 = nd_length(p1);
                   2308:        n2 = nd_length(p2);
                   2309:        n = n1+n2;
                   2310:        w = (Q *)ALLOCA(n*sizeof(Q));
                   2311:        v.len = n;
                   2312:        v.body = (pointer *)w;
1.34      noro     2313:        for ( m = BDY(p1), i = 0; i < n1; m = NEXT(m), i++ ) w[i] = CQ(m);
                   2314:        for ( m = BDY(p2); i < n; m = NEXT(m), i++ ) w[i] = CQ(m);
1.21      noro     2315:        removecont_array(w,n);
                   2316:        for ( m = BDY(p1), i = 0; i < n1; m = NEXT(m), i++ ) CQ(m) = w[i];
                   2317:        for ( m = BDY(p2); i < n; m = NEXT(m), i++ ) CQ(m) = w[i];
                   2318: }
                   2319:
1.20      noro     2320: void ndv_removecont(int mod,NDV p)
1.16      noro     2321: {
                   2322:        int i,len;
                   2323:        Q *w;
                   2324:        Q dvr,t;
                   2325:        NMV m;
                   2326:
1.20      noro     2327:        if ( mod )
                   2328:                ndv_mul_c(mod,p,invm(HCM(p),mod));
                   2329:        else {
                   2330:                len = p->len;
                   2331:                w = (Q *)ALLOCA(len*sizeof(Q));
1.34      noro     2332:                for ( m = BDY(p), i = 0; i < len; NMV_ADV(m), i++ ) w[i] = CQ(m);
1.20      noro     2333:                sortbynm(w,len);
                   2334:                qltozl(w,len,&dvr);
                   2335:                for ( m = BDY(p), i = 0; i < len; NMV_ADV(m), i++ ) {
                   2336:                        divq(CQ(m),dvr,&t); CQ(m) = t;
                   2337:                }
1.16      noro     2338:        }
1.21      noro     2339: }
                   2340:
1.45      noro     2341: void ndv_dehomogenize(NDV p,struct order_spec *ord)
1.23      noro     2342: {
1.45      noro     2343:        int i,j,adj,len,newnvar,newwpd,newadv,newexporigin;
1.23      noro     2344:        Q *w;
                   2345:        Q dvr,t;
                   2346:        NMV m,r;
                   2347: #define NEWADV(m) (m = (NMV)(((char *)m)+newadv))
                   2348:
                   2349:        len = p->len;
                   2350:        newnvar = nd_nvar-1;
1.48      noro     2351:        newexporigin = nd_get_exporigin(ord);
1.45      noro     2352:        newwpd = newnvar/nd_epw+(newnvar%nd_epw?1:0)+newexporigin;
1.23      noro     2353:        for ( m = BDY(p), i = 0; i < len; NMV_ADV(m), i++ )
1.34      noro     2354:                ndl_dehomogenize(DL(m));
1.23      noro     2355:        if ( newwpd != nd_wpd ) {
1.41      noro     2356:                newadv = sizeof(struct oNMV)+(newwpd-1)*sizeof(unsigned int);
1.23      noro     2357:                for ( m = r = BDY(p), i = 0; i < len; NMV_ADV(m), NEWADV(r), i++ ) {
1.45      noro     2358:                        CQ(r) = CQ(m);
                   2359:                        for ( j = 0; j < newexporigin; j++ ) DL(r)[j] = DL(m)[j];
                   2360:                        adj = nd_exporigin-newexporigin;
                   2361:                        for ( ; j < newwpd; j++ ) DL(r)[j] = DL(m)[j+adj];
1.23      noro     2362:                }
                   2363:        }
                   2364:        NV(p)--;
                   2365: }
                   2366:
1.21      noro     2367: void removecont_array(Q *c,int n)
                   2368: {
                   2369:        struct oVECT v;
                   2370:        Q d0,d1,a,u,u1,gcd;
                   2371:        int i;
                   2372:        N qn,rn,gn;
                   2373:        Q *q,*r;
                   2374:
                   2375:        q = (Q *)ALLOCA(n*sizeof(Q));
                   2376:        r = (Q *)ALLOCA(n*sizeof(Q));
                   2377:        v.id = O_VECT; v.len = n; v.body = (pointer *)c;
                   2378:        igcdv_estimate(&v,&d0);
                   2379:        for ( i = 0; i < n; i++ ) {
                   2380:                divn(NM(c[i]),NM(d0),&qn,&rn);
                   2381:                NTOQ(qn,SGN(c[i])*SGN(d0),q[i]);
                   2382:                NTOQ(rn,SGN(c[i]),r[i]);
                   2383:        }
1.34      noro     2384:        for ( i = 0; i < n; i++ ) if ( r[i] ) break;
1.21      noro     2385:        if ( i < n ) {
                   2386:                v.id = O_VECT; v.len = n; v.body = (pointer *)r;
                   2387:                igcdv(&v,&d1);
                   2388:                gcdn(NM(d0),NM(d1),&gn); NTOQ(gn,1,gcd);
                   2389:                divsn(NM(d0),gn,&qn); NTOQ(qn,1,a);
                   2390:                for ( i = 0; i < n; i++ ) {
                   2391:                        mulq(a,q[i],&u);
                   2392:                        if ( r[i] ) {
                   2393:                                divsn(NM(r[i]),gn,&qn); NTOQ(qn,SGN(r[i]),u1);
                   2394:                                addq(u,u1,&q[i]);
                   2395:                        } else
                   2396:                                q[i] = u;
                   2397:                }
                   2398:        }
1.34      noro     2399:        for ( i = 0; i < n; i++ ) c[i] = q[i];
1.16      noro     2400: }
                   2401:
1.19      noro     2402: void nd_mul_c(int mod,ND p,int mul)
1.1       noro     2403: {
                   2404:        NM m;
                   2405:        int c,c1;
                   2406:
1.34      noro     2407:        if ( !p ) return;
1.1       noro     2408:        for ( m = BDY(p); m; m = NEXT(m) ) {
1.14      noro     2409:                c1 = CM(m);
1.19      noro     2410:                DMAR(c1,mul,0,mod,c);
1.14      noro     2411:                CM(m) = c;
1.1       noro     2412:        }
                   2413: }
                   2414:
1.16      noro     2415: void nd_mul_c_q(ND p,Q mul)
                   2416: {
                   2417:        NM m;
                   2418:        Q c;
                   2419:
1.34      noro     2420:        if ( !p ) return;
1.16      noro     2421:        for ( m = BDY(p); m; m = NEXT(m) ) {
                   2422:                mulq(CQ(m),mul,&c); CQ(m) = c;
                   2423:        }
                   2424: }
                   2425:
1.1       noro     2426: void nd_free(ND p)
                   2427: {
                   2428:        NM t,s;
                   2429:
1.34      noro     2430:        if ( !p ) return;
1.1       noro     2431:        t = BDY(p);
                   2432:        while ( t ) {
                   2433:                s = NEXT(t);
                   2434:                FREENM(t);
                   2435:                t = s;
                   2436:        }
                   2437:        FREEND(p);
                   2438: }
                   2439:
1.23      noro     2440: void ndv_free(NDV p)
                   2441: {
                   2442:        GC_free(BDY(p));
                   2443: }
                   2444:
1.34      noro     2445: void nd_append_red(unsigned int *d,int i)
1.1       noro     2446: {
1.13      noro     2447:        RHist m,m0;
1.1       noro     2448:        int h;
                   2449:
1.13      noro     2450:        NEWRHist(m);
1.34      noro     2451:        h = ndl_hash_value(d);
1.13      noro     2452:        m->index = i;
1.14      noro     2453:        ndl_copy(d,DL(m));
1.1       noro     2454:        NEXT(m) = nd_red[h];
                   2455:        nd_red[h] = m;
                   2456: }
                   2457:
1.5       noro     2458: unsigned int *dp_compute_bound(DP p)
                   2459: {
                   2460:        unsigned int *d,*d1,*d2,*t;
                   2461:        MP m;
1.7       noro     2462:        int i,l;
1.5       noro     2463:
                   2464:        if ( !p )
                   2465:                return 0;
                   2466:        d1 = (unsigned int *)ALLOCA(nd_nvar*sizeof(unsigned int));
                   2467:        d2 = (unsigned int *)ALLOCA(nd_nvar*sizeof(unsigned int));
                   2468:        m = BDY(p);
1.35      noro     2469:        d = DL(m)->d;
                   2470:        for ( i = 0; i < nd_nvar; i++ ) d1[i] = d[i];
1.5       noro     2471:        for ( m = NEXT(BDY(p)); m; m = NEXT(m) ) {
1.14      noro     2472:                d = DL(m)->d;
1.5       noro     2473:                for ( i = 0; i < nd_nvar; i++ )
                   2474:                        d2[i] = d[i] > d1[i] ? d[i] : d1[i];
                   2475:                t = d1; d1 = d2; d2 = t;
                   2476:        }
1.13      noro     2477:        l = (nd_nvar+31);
1.7       noro     2478:        t = (unsigned int *)MALLOC_ATOMIC(l*sizeof(unsigned int));
1.35      noro     2479:        for ( i = 0; i < nd_nvar; i++ ) t[i] = d1[i];
                   2480:        for ( ; i < l; i++ ) t[i] = 0;
1.5       noro     2481:        return t;
                   2482: }
                   2483:
1.45      noro     2484: unsigned int *ndv_compute_bound(NDV p)
1.1       noro     2485: {
                   2486:        unsigned int *d1,*d2,*t;
1.45      noro     2487:        int i,l,len;
                   2488:        NMV m;
1.1       noro     2489:
                   2490:        if ( !p )
                   2491:                return 0;
                   2492:        d1 = (unsigned int *)ALLOCA(nd_wpd*sizeof(unsigned int));
                   2493:        d2 = (unsigned int *)ALLOCA(nd_wpd*sizeof(unsigned int));
1.45      noro     2494:        len = LEN(p);
                   2495:        m = BDY(p); ndl_copy(DL(m),d1); NMV_ADV(m);
                   2496:        for ( i = 1; i < len; i++, NMV_ADV(m) ) {
1.14      noro     2497:                ndl_lcm(DL(m),d1,d2);
1.1       noro     2498:                t = d1; d1 = d2; d2 = t;
                   2499:        }
1.12      noro     2500:        l = nd_nvar+31;
1.9       noro     2501:        t = (unsigned int *)MALLOC_ATOMIC(l*sizeof(unsigned int));
1.42      noro     2502:        for ( i = 0; i < nd_nvar; i++ ) t[i] = GET_EXP(d1,i);
1.35      noro     2503:        for ( ; i < l; i++ ) t[i] = 0;
1.1       noro     2504:        return t;
                   2505: }
                   2506:
1.48      noro     2507: int nd_get_exporigin(struct order_spec *ord)
                   2508: {
1.41      noro     2509:        switch ( nd_ord->id ) {
                   2510:                case 0:
1.48      noro     2511:                        return 1;
1.41      noro     2512:                case 1:
                   2513:                        /* block order */
1.43      noro     2514:                        /* d[0]:weight d[1]:w0,...,d[nd_exporigin-1]:w(n-1) */
1.48      noro     2515:                        return ord->ord.block.length+1;
1.41      noro     2516:                case 2:
                   2517:                        error("nd_setup_parameters : matrix order is not supported yet.");
                   2518:        }
1.48      noro     2519: }
                   2520:
                   2521: void nd_setup_parameters() {
                   2522:        int i,n,elen;
                   2523:
                   2524:        nd_epw = (sizeof(unsigned int)*8)/nd_bpe;
                   2525:        elen = nd_nvar/nd_epw+(nd_nvar%nd_epw?1:0);
                   2526:
                   2527:        nd_exporigin = nd_get_exporigin(nd_ord);
1.43      noro     2528:        nd_wpd = nd_exporigin+elen;
                   2529:        nd_epos = (EPOS)MALLOC_ATOMIC(nd_nvar*sizeof(struct oEPOS));
                   2530:        for ( i = 0; i < nd_nvar; i++ ) {
                   2531:                nd_epos[i].i = nd_exporigin + i/nd_epw;
                   2532:                nd_epos[i].s = (nd_epw-(i%nd_epw)-1)*nd_bpe;
                   2533:        }
1.1       noro     2534:        if ( nd_bpe < 32 ) {
                   2535:                nd_mask0 = (1<<nd_bpe)-1;
                   2536:        } else {
                   2537:                nd_mask0 = 0xffffffff;
                   2538:        }
                   2539:        bzero(nd_mask,sizeof(nd_mask));
                   2540:        nd_mask1 = 0;
                   2541:        for ( i = 0; i < nd_epw; i++ ) {
                   2542:                nd_mask[nd_epw-i-1] = (nd_mask0<<(i*nd_bpe));
                   2543:                nd_mask1 |= (1<<(nd_bpe-1))<<(i*nd_bpe);
                   2544:        }
1.41      noro     2545:        nm_adv = sizeof(struct oNM)+(nd_wpd-1)*sizeof(unsigned int);
                   2546:        nmv_adv = sizeof(struct oNMV)+(nd_wpd-1)*sizeof(unsigned int);
1.43      noro     2547:        nd_blockmask = nd_create_blockmask(nd_ord);
1.1       noro     2548: }
                   2549:
1.20      noro     2550: ND_pairs nd_reconstruct(int mod,int trace,ND_pairs d)
1.1       noro     2551: {
1.37      noro     2552:        int i,obpe,oadv,h;
1.13      noro     2553:        NM prev_nm_free_list;
                   2554:        RHist mr0,mr;
                   2555:        RHist r;
1.37      noro     2556:        RHist *old_red;
1.1       noro     2557:        ND_pairs s0,s,t,prev_ndp_free_list;
1.43      noro     2558:        EPOS oepos;
1.15      noro     2559:
1.1       noro     2560:        obpe = nd_bpe;
1.11      noro     2561:        oadv = nmv_adv;
1.43      noro     2562:        oepos = nd_epos;
1.34      noro     2563:        if ( obpe < 4 ) nd_bpe = 4;
                   2564:        else if ( obpe < 6 ) nd_bpe = 6;
                   2565:        else if ( obpe < 8 ) nd_bpe = 8;
                   2566:        else if ( obpe < 16 ) nd_bpe = 16;
                   2567:        else if ( obpe < 32 ) nd_bpe = 32;
                   2568:        else error("nd_reconstruct : exponent too large");
1.5       noro     2569:
1.1       noro     2570:        nd_setup_parameters();
                   2571:        prev_nm_free_list = _nm_free_list;
                   2572:        prev_ndp_free_list = _ndp_free_list;
                   2573:        _nm_free_list = 0;
                   2574:        _ndp_free_list = 0;
1.20      noro     2575:        if ( mod != 0 )
1.43      noro     2576:                for ( i = nd_psn-1; i >= 0; i-- ) ndv_realloc(nd_ps[i],obpe,oadv,oepos);
1.20      noro     2577:        if ( !mod || trace )
1.43      noro     2578:                for ( i = nd_psn-1; i >= 0; i-- ) ndv_realloc(nd_psq[i],obpe,oadv,oepos);
1.1       noro     2579:        s0 = 0;
                   2580:        for ( t = d; t; t = NEXT(t) ) {
                   2581:                NEXTND_pairs(s0,s);
                   2582:                s->i1 = t->i1;
                   2583:                s->i2 = t->i2;
1.14      noro     2584:                SG(s) = SG(t);
1.43      noro     2585:                ndl_reconstruct(obpe,oepos,LCM(t),LCM(s));
1.1       noro     2586:        }
1.37      noro     2587:
                   2588:        old_red = (RHist *)ALLOCA(REDTAB_LEN*sizeof(RHist));
1.6       noro     2589:        for ( i = 0; i < REDTAB_LEN; i++ ) {
1.37      noro     2590:                old_red[i] = nd_red[i];
                   2591:                nd_red[i] = 0;
                   2592:        }
                   2593:        for ( i = 0; i < REDTAB_LEN; i++ )
                   2594:                for ( r = old_red[i]; r; r = NEXT(r) ) {
                   2595:                        NEWRHist(mr);
1.13      noro     2596:                        mr->index = r->index;
1.20      noro     2597:                        SG(mr) = SG(r);
1.43      noro     2598:                        ndl_reconstruct(obpe,oepos,DL(r),DL(mr));
1.37      noro     2599:                        h = ndl_hash_value(DL(mr));
                   2600:                        NEXT(mr) = nd_red[h];
                   2601:                        nd_red[h] = mr;
1.6       noro     2602:                }
1.37      noro     2603:        for ( i = 0; i < REDTAB_LEN; i++ ) old_red[i] = 0;
                   2604:        old_red = 0;
1.11      noro     2605:        for ( i = 0; i < nd_psn; i++ ) {
1.20      noro     2606:                NEWRHist(r); SG(r) = SG(nd_psh[i]);
1.43      noro     2607:                ndl_reconstruct(obpe,oepos,DL(nd_psh[i]),DL(r));
1.13      noro     2608:                nd_psh[i] = r;
1.11      noro     2609:        }
1.1       noro     2610:        if ( s0 ) NEXT(s) = 0;
                   2611:        prev_nm_free_list = 0;
                   2612:        prev_ndp_free_list = 0;
                   2613:        GC_gcollect();
                   2614:        return s0;
                   2615: }
                   2616:
1.23      noro     2617: void nd_reconstruct_direct(int mod,NDV *ps,int len)
                   2618: {
1.37      noro     2619:        int i,obpe,oadv,h;
1.45      noro     2620:        unsigned int **bound;
1.23      noro     2621:        NM prev_nm_free_list;
                   2622:        RHist mr0,mr;
                   2623:        RHist r;
1.37      noro     2624:        RHist *old_red;
1.23      noro     2625:        ND_pairs s0,s,t,prev_ndp_free_list;
1.43      noro     2626:        EPOS oepos;
1.23      noro     2627:
                   2628:        obpe = nd_bpe;
                   2629:        oadv = nmv_adv;
1.43      noro     2630:        oepos = nd_epos;
1.34      noro     2631:        if ( obpe < 4 ) nd_bpe = 4;
                   2632:        else if ( obpe < 6 ) nd_bpe = 6;
                   2633:        else if ( obpe < 8 ) nd_bpe = 8;
                   2634:        else if ( obpe < 16 ) nd_bpe = 16;
                   2635:        else if ( obpe < 32 ) nd_bpe = 32;
                   2636:        else error("nd_reconstruct_direct : exponent too large");
1.23      noro     2637:
                   2638:        nd_setup_parameters();
                   2639:        prev_nm_free_list = _nm_free_list;
                   2640:        prev_ndp_free_list = _ndp_free_list;
1.34      noro     2641:        _nm_free_list = 0; _ndp_free_list = 0;
1.43      noro     2642:        for ( i = len-1; i >= 0; i-- ) ndv_realloc(ps[i],obpe,oadv,oepos);
1.23      noro     2643:        prev_nm_free_list = 0;
                   2644:        prev_ndp_free_list = 0;
                   2645:        GC_gcollect();
                   2646: }
                   2647:
1.43      noro     2648: void ndl_reconstruct(int obpe,EPOS oepos,unsigned int *d,unsigned int *r)
1.1       noro     2649: {
1.43      noro     2650:        int n,i,ei,oepw,omask0,j,s,ord_l,ord_o,l;
                   2651:        struct order_pair *op;
                   2652: #define GET_EXP_OLD(d,a) (((d)[oepos[a].i]>>oepos[a].s)&omask0)
                   2653: #define PUT_EXP_OLD(r,a,e) ((r)[oepos[a].i] |= ((e)<<oepos[a].s))
1.1       noro     2654:
                   2655:        n = nd_nvar;
                   2656:        oepw = (sizeof(unsigned int)*8)/obpe;
1.43      noro     2657:        omask0 = (1<<obpe)-1;
1.34      noro     2658:        TD(r) = TD(d);
1.41      noro     2659:        for ( i = nd_exporigin; i < nd_wpd; i++ ) r[i] = 0;
1.43      noro     2660:        if ( nd_blockmask ) {
                   2661:                l = nd_blockmask->n;
                   2662:                op = nd_blockmask->order_pair;
                   2663:                for ( i = 1; i < nd_exporigin; i++ )
                   2664:                        r[i] = d[i];
                   2665:                for ( j = 0, s = 0; j < l; j++ ) {
                   2666:                        ord_o = op[j].order;
                   2667:                        ord_l = op[j].length;
                   2668:                        if ( !ord_o )
                   2669:                                for ( i = 0; i < ord_l; i++ ) {
                   2670:                                        ei =  GET_EXP_OLD(d,s+ord_l-i-1);
                   2671:                                        PUT_EXP(r,s+ord_l-i-1,ei);
                   2672:                                }
                   2673:                        else
                   2674:                                for ( i = 0; i < ord_l; i++ ) {
                   2675:                                        ei =  GET_EXP_OLD(d,s+i);
                   2676:                                        PUT_EXP(r,s+i,ei);
                   2677:                                }
                   2678:                        s += ord_l;
1.1       noro     2679:                }
1.43      noro     2680:        } else {
                   2681:                if ( nd_isrlex )
                   2682:                        for ( i = 0; i < n; i++ ) {
                   2683:                                ei = GET_EXP_OLD(d,n-1-i);
                   2684:                                PUT_EXP(r,n-1-i,ei);
                   2685:                        }
                   2686:                else
                   2687:                        for ( i = 0; i < n; i++ ) {
                   2688:                                ei = GET_EXP_OLD(d,i);
                   2689:                                PUT_EXP(r,i,ei);
                   2690:                        }
1.1       noro     2691:        }
                   2692: }
1.3       noro     2693:
1.6       noro     2694: ND nd_copy(ND p)
                   2695: {
                   2696:        NM m,mr,mr0;
1.41      noro     2697:        int c,n;
1.6       noro     2698:        ND r;
                   2699:
                   2700:        if ( !p )
                   2701:                return 0;
                   2702:        else {
                   2703:                for ( mr0 = 0, m = BDY(p); m; m = NEXT(m) ) {
                   2704:                        NEXTNM(mr0,mr);
1.14      noro     2705:                        CM(mr) = CM(m);
                   2706:                        ndl_copy(DL(m),DL(mr));
1.6       noro     2707:                }
                   2708:                NEXT(mr) = 0;
1.31      noro     2709:                MKND(NV(p),mr0,LEN(p),r);
1.14      noro     2710:                SG(r) = SG(p);
1.6       noro     2711:                return r;
                   2712:        }
                   2713: }
                   2714:
1.16      noro     2715: int nd_sp(int mod,ND_pairs p,ND *rp)
1.11      noro     2716: {
                   2717:        NM m;
                   2718:        NDV p1,p2;
                   2719:        ND t1,t2;
                   2720:        unsigned int *lcm;
1.31      noro     2721:        int td;
1.11      noro     2722:
1.20      noro     2723:        if ( mod ) {
                   2724:                p1 = nd_ps[p->i1]; p2 = nd_ps[p->i2];
                   2725:        } else {
                   2726:                p1 = nd_psq[p->i1]; p2 = nd_psq[p->i2];
                   2727:        }
1.34      noro     2728:        lcm = LCM(p);
1.11      noro     2729:        NEWNM(m);
1.20      noro     2730:        CQ(m) = HCQ(p2);
1.34      noro     2731:        ndl_sub(lcm,HDL(p1),DL(m));
                   2732:        if ( ndl_check_bound2(p->i1,DL(m)) ) return 0;
1.25      noro     2733:        t1 = ndv_mul_nm(mod,p1,m);
1.34      noro     2734:        if ( mod ) CM(m) = mod-HCM(p1);
                   2735:        else chsgnq(HCQ(p1),&CQ(m));
                   2736:        ndl_sub(lcm,HDL(p2),DL(m));
1.14      noro     2737:        if ( ndl_check_bound2(p->i2,DL(m)) ) {
1.11      noro     2738:                nd_free(t1);
                   2739:                return 0;
                   2740:        }
1.25      noro     2741:        t2 = ndv_mul_nm(mod,p2,m);
1.31      noro     2742:        *rp = nd_add(mod,t1,t2);
1.11      noro     2743:        FREENM(m);
                   2744:        return 1;
                   2745: }
                   2746:
1.19      noro     2747: void ndv_mul_c(int mod,NDV p,int mul)
1.11      noro     2748: {
                   2749:        NMV m;
                   2750:        int c,c1,len,i;
                   2751:
1.34      noro     2752:        if ( !p ) return;
1.14      noro     2753:        len = LEN(p);
1.11      noro     2754:        for ( m = BDY(p), i = 0; i < len; i++, NMV_ADV(m) ) {
1.34      noro     2755:                c1 = CM(m); DMAR(c1,mul,0,mod,c); CM(m) = c;
1.11      noro     2756:        }
                   2757: }
                   2758:
1.16      noro     2759: void ndv_mul_c_q(NDV p,Q mul)
                   2760: {
                   2761:        NMV m;
                   2762:        Q c;
                   2763:        int len,i;
                   2764:
1.34      noro     2765:        if ( !p ) return;
1.16      noro     2766:        len = LEN(p);
                   2767:        for ( m = BDY(p), i = 0; i < len; i++, NMV_ADV(m) ) {
                   2768:                mulq(CQ(m),mul,&c); CQ(m) = c;
                   2769:        }
                   2770: }
                   2771:
1.25      noro     2772: ND ndv_mul_nm(int mod,NDV p,NM m0)
1.9       noro     2773: {
                   2774:        NM mr,mr0;
                   2775:        NMV m;
                   2776:        unsigned int *d,*dt,*dm;
                   2777:        int c,n,td,i,c1,c2,len;
1.16      noro     2778:        Q q;
1.9       noro     2779:        ND r;
                   2780:
1.34      noro     2781:        if ( !p ) return 0;
1.9       noro     2782:        else {
                   2783:                n = NV(p); m = BDY(p);
1.34      noro     2784:                d = DL(m0);
1.14      noro     2785:                len = LEN(p);
1.9       noro     2786:                mr0 = 0;
1.34      noro     2787:                td = TD(d);
1.16      noro     2788:                if ( mod ) {
                   2789:                        c = CM(m0);
                   2790:                        for ( i = 0; i < len; i++, NMV_ADV(m) ) {
                   2791:                                NEXTNM(mr0,mr);
                   2792:                                c1 = CM(m);
1.19      noro     2793:                                DMAR(c1,c,0,mod,c2);
1.16      noro     2794:                                CM(mr) = c2;
                   2795:                                ndl_add(DL(m),d,DL(mr));
                   2796:                        }
                   2797:                } else {
                   2798:                        q = CQ(m0);
                   2799:                        for ( i = 0; i < len; i++, NMV_ADV(m) ) {
                   2800:                                NEXTNM(mr0,mr);
                   2801:                                mulq(CQ(m),q,&CQ(mr));
                   2802:                                ndl_add(DL(m),d,DL(mr));
                   2803:                        }
1.4       noro     2804:                }
1.9       noro     2805:                NEXT(mr) = 0;
1.31      noro     2806:                MKND(NV(p),mr0,len,r);
1.34      noro     2807:                SG(r) = SG(p) + TD(d);
1.9       noro     2808:                return r;
1.4       noro     2809:        }
                   2810: }
                   2811:
1.43      noro     2812: void ndv_realloc(NDV p,int obpe,int oadv,EPOS oepos)
1.11      noro     2813: {
1.13      noro     2814:        NMV m,mr,mr0,t;
                   2815:        int len,i,k;
1.11      noro     2816:
1.13      noro     2817: #define NMV_OPREV(m) (m = (NMV)(((char *)m)-oadv))
                   2818: #define NMV_PREV(m) (m = (NMV)(((char *)m)-nmv_adv))
1.11      noro     2819:
                   2820:        if ( p ) {
1.14      noro     2821:                m = BDY(p); len = LEN(p);
1.34      noro     2822:                mr0 = nmv_adv>oadv?(NMV)REALLOC(BDY(p),len*nmv_adv):BDY(p);
1.13      noro     2823:                m = (NMV)((char *)mr0+(len-1)*oadv);
                   2824:                mr = (NMV)((char *)mr0+(len-1)*nmv_adv);
                   2825:                t = (NMV)ALLOCA(nmv_adv);
                   2826:                for ( i = 0; i < len; i++, NMV_OPREV(m), NMV_PREV(mr) ) {
1.16      noro     2827:                        CQ(t) = CQ(m);
1.14      noro     2828:                        for ( k = 0; k < nd_wpd; k++ ) DL(t)[k] = 0;
1.43      noro     2829:                        ndl_reconstruct(obpe,oepos,DL(m),DL(t));
1.16      noro     2830:                        CQ(mr) = CQ(t);
1.14      noro     2831:                        ndl_copy(DL(t),DL(mr));
1.11      noro     2832:                }
                   2833:                BDY(p) = mr0;
                   2834:        }
                   2835: }
                   2836:
1.16      noro     2837: NDV ndtondv(int mod,ND p)
1.3       noro     2838: {
                   2839:        NDV d;
                   2840:        NMV m,m0;
                   2841:        NM t;
                   2842:        int i,len;
                   2843:
1.34      noro     2844:        if ( !p ) return 0;
1.31      noro     2845:        len = LEN(p);
1.34      noro     2846:        m0 = m = (NMV)(mod?MALLOC_ATOMIC(len*nmv_adv):MALLOC(len*nmv_adv));
1.3       noro     2847:        for ( t = BDY(p), i = 0; t; t = NEXT(t), i++, NMV_ADV(m) ) {
1.14      noro     2848:                ndl_copy(DL(t),DL(m));
1.16      noro     2849:                CQ(m) = CQ(t);
1.3       noro     2850:        }
                   2851:        MKNDV(NV(p),m0,len,d);
1.23      noro     2852:        SG(d) = SG(p);
                   2853:        return d;
                   2854: }
                   2855:
                   2856: ND ndvtond(int mod,NDV p)
                   2857: {
                   2858:        ND d;
                   2859:        NM m,m0;
                   2860:        NMV t;
                   2861:        int i,len;
                   2862:
1.34      noro     2863:        if ( !p ) return 0;
1.23      noro     2864:        m0 = 0;
                   2865:        len = p->len;
                   2866:        for ( t = BDY(p), i = 0; i < len; NMV_ADV(t), i++ ) {
                   2867:                NEXTNM(m0,m);
                   2868:                ndl_copy(DL(t),DL(m));
                   2869:                CQ(m) = CQ(t);
                   2870:        }
                   2871:        NEXT(m) = 0;
1.31      noro     2872:        MKND(NV(p),m0,len,d);
1.14      noro     2873:        SG(d) = SG(p);
1.3       noro     2874:        return d;
                   2875: }
                   2876:
1.16      noro     2877: NDV dptondv(int mod,DP p)
1.11      noro     2878: {
                   2879:        NDV d;
                   2880:        NMV m0,m;
                   2881:        MP t;
1.20      noro     2882:        DP q;
1.11      noro     2883:        int l,i,n;
                   2884:
1.46      noro     2885:        if ( mod ) {
                   2886:                _dp_mod(p,mod,0,&q); p = q;
                   2887:        }
1.34      noro     2888:        if ( !p ) return 0;
1.11      noro     2889:        for ( t = BDY(p), l = 0; t; t = NEXT(t), l++ );
1.46      noro     2890:        if ( mod )
1.16      noro     2891:                m0 = m = (NMV)MALLOC_ATOMIC(l*nmv_adv);
1.46      noro     2892:        else
1.16      noro     2893:                m0 = m = (NMV)MALLOC(l*nmv_adv);
1.11      noro     2894:        n = NV(p);
1.46      noro     2895:        for ( t = BDY(p); t; t = NEXT(t), NMV_ADV(m) ) {
1.34      noro     2896:                if ( mod ) CM(m) = ITOS(C(t));
                   2897:                else CQ(m) = (Q)C(t);
1.17      noro     2898:                dltondl(n,DL(t),DL(m));
1.11      noro     2899:        }
                   2900:        MKNDV(n,m0,l,d);
1.14      noro     2901:        SG(d) = SG(p);
1.11      noro     2902:        return d;
                   2903: }
                   2904:
1.16      noro     2905: DP ndvtodp(int mod,NDV p)
1.11      noro     2906: {
                   2907:        DP d;
                   2908:        MP m0,m;
                   2909:        NMV t;
                   2910:        int len,i,n;
                   2911:
1.34      noro     2912:        if ( !p ) return 0;
1.11      noro     2913:        m0 = 0;
1.14      noro     2914:        len = LEN(p);
1.11      noro     2915:        n = NV(p);
1.17      noro     2916:        for ( t = BDY(p), i = 0; i < len; i++, NMV_ADV(t) ) {
                   2917:                NEXTMP(m0,m);
1.34      noro     2918:                if ( mod ) C(m) = STOI(CM(t));
                   2919:                else C(m) = (P)CQ(t);
                   2920:                DL(m) = ndltodl(n,DL(t));
1.11      noro     2921:        }
                   2922:        NEXT(m) = 0;
                   2923:        MKDP(NV(p),m0,d);
1.14      noro     2924:        SG(d) = SG(p);
1.11      noro     2925:        return d;
                   2926: }
                   2927:
1.3       noro     2928: void ndv_print(NDV p)
                   2929: {
                   2930:        NMV m;
                   2931:        int i,len;
                   2932:
1.34      noro     2933:        if ( !p ) printf("0\n");
1.3       noro     2934:        else {
1.14      noro     2935:                len = LEN(p);
1.3       noro     2936:                for ( m = BDY(p), i = 0; i < len; i++, NMV_ADV(m) ) {
1.14      noro     2937:                        printf("+%d*",CM(m));
1.16      noro     2938:                        ndl_print(DL(m));
                   2939:                }
                   2940:                printf("\n");
                   2941:        }
                   2942: }
                   2943:
                   2944: void ndv_print_q(NDV p)
                   2945: {
                   2946:        NMV m;
                   2947:        int i,len;
                   2948:
1.34      noro     2949:        if ( !p ) printf("0\n");
1.16      noro     2950:        else {
                   2951:                len = LEN(p);
                   2952:                for ( m = BDY(p), i = 0; i < len; i++, NMV_ADV(m) ) {
                   2953:                        printf("+");
                   2954:                        printexpr(CO,CQ(m));
                   2955:                        printf("*");
1.14      noro     2956:                        ndl_print(DL(m));
1.3       noro     2957:                }
                   2958:                printf("\n");
                   2959:        }
1.25      noro     2960: }
                   2961:
1.27      noro     2962: NODE nd_reducebase(NODE x)
                   2963: {
                   2964:        int len,i,j;
                   2965:        NDV *w;
                   2966:        NODE t,t0;
                   2967:
                   2968:        len = length(x);
                   2969:        w = (NDV *)ALLOCA(len*sizeof(NDV));
                   2970:        for ( i = 0, t = x; i < len; i++, t = NEXT(t) ) w[i] = BDY(t);
                   2971:        for ( i = 0; i < len; i++ ) {
                   2972:                for ( j = 0; j < i; j++ ) {
                   2973:                        if ( w[i] && w[j] )
                   2974:                                if ( ndl_reducible(HDL(w[i]),HDL(w[j])) ) w[i] = 0;
                   2975:                                else if ( ndl_reducible(HDL(w[j]),HDL(w[i])) ) w[j] = 0;
                   2976:                }
                   2977:        }
                   2978:        for ( i = len-1, t0 = 0; i >= 0; i-- ) {
                   2979:                if ( w[i] ) { NEXTNODE(t0,t); BDY(t) = (pointer)w[i]; }
                   2980:        }
                   2981:        NEXT(t) = 0; x = t0;
                   2982:        return x;
1.11      noro     2983: }
1.32      noro     2984:
1.43      noro     2985: /* XXX incomplete */
                   2986:
1.32      noro     2987: void nd_init_ord(struct order_spec *ord)
                   2988: {
1.43      noro     2989:        switch ( ord->id ) {
1.32      noro     2990:                case 0:
1.43      noro     2991:                        switch ( ord->ord.simple ) {
                   2992:                                case 0:
                   2993:                                        nd_dcomp = 1;
                   2994:                                        nd_isrlex = 1;
                   2995:                                        break;
                   2996:                                case 1:
                   2997:                                        nd_dcomp = 1;
                   2998:                                        nd_isrlex = 0;
                   2999:                                        break;
                   3000:                                case 2:
                   3001:                                        nd_dcomp = 0;
                   3002:                                        nd_isrlex = 0;
1.45      noro     3003:                                        ndl_compare_function = ndl_lex_compare;
1.43      noro     3004:                                        break;
                   3005:                                default:
                   3006:                                        error("nd_gr : unsupported order");
                   3007:                        }
1.32      noro     3008:                        break;
                   3009:                case 1:
1.43      noro     3010:                        /* XXX */
                   3011:                        nd_dcomp = -1;
1.32      noro     3012:                        nd_isrlex = 0;
1.45      noro     3013:                        ndl_compare_function = ndl_block_compare;
1.34      noro     3014:                        break;
1.43      noro     3015:                case 2:
                   3016:                        error("nd_init_ord : matrix order is not supported yet.");
1.32      noro     3017:                        break;
                   3018:        }
1.41      noro     3019:        nd_ord = ord;
1.32      noro     3020: }
                   3021:
1.43      noro     3022: BlockMask nd_create_blockmask(struct order_spec *ord)
                   3023: {
                   3024:        int n,i,j,s,l;
                   3025:        unsigned int *t;
                   3026:        BlockMask bm;
                   3027:
                   3028:        if ( !ord->id )
                   3029:                return 0;
                   3030:        n = ord->ord.block.length;
                   3031:        bm = (BlockMask)MALLOC(sizeof(struct oBlockMask));
                   3032:        bm->n = n;
                   3033:        bm->order_pair = ord->ord.block.order_pair;
                   3034:        bm->mask = (unsigned int **)MALLOC(n*sizeof(unsigned int *));
                   3035:        for ( i = 0, s = 0; i < n; i++ ) {
                   3036:                bm->mask[i] = t
                   3037:                        = (unsigned int *)MALLOC_ATOMIC(nd_wpd*sizeof(unsigned int));
                   3038:                for ( j = 0; j < nd_wpd; j++ ) t[j] = 0;
                   3039:                l = bm->order_pair[i].length;
                   3040:                for ( j = 0; j < l; j++, s++ ) PUT_EXP(t,s,nd_mask0);
                   3041:        }
                   3042:        return bm;
                   3043: }

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