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

Diff for /OpenXM_contrib2/asir2018/engine/nd.c between version 1.47 and 1.53

version 1.47, 2021/02/01 08:06:33 version 1.53, 2021/03/12 01:18:33
Line 1 
Line 1 
 /* $OpenXM: OpenXM_contrib2/asir2018/engine/nd.c,v 1.46 2021/01/25 00:39:52 noro Exp $ */  /* $OpenXM: OpenXM_contrib2/asir2018/engine/nd.c,v 1.52 2021/03/09 08:48:50 noro Exp $ */
   
 #include "nd.h"  #include "nd.h"
   
 void print_siglist(NODE l);  void print_siglist(NODE l);
   
   NODE nd_hpdata;
 int Nnd_add,Nf4_red,NcriB,NcriMF,Ncri2,Npairs,Nnewpair;  int Nnd_add,Nf4_red,NcriB,NcriMF,Ncri2,Npairs,Nnewpair;
 struct oEGT eg_search,f4_symb,f4_conv,f4_elim1,f4_elim2;  struct oEGT eg_search,f4_symb,f4_conv,f4_elim1,f4_elim2;
   
Line 92  struct comp_sig_spec {
Line 93  struct comp_sig_spec {
   
 struct comp_sig_spec *nd_sba_modord;  struct comp_sig_spec *nd_sba_modord;
   
   DL ndltodl(int n,UINT *ndl);
 NumberField get_numberfield();  NumberField get_numberfield();
 UINT *nd_det_compute_bound(NDV **dm,int n,int j);  UINT *nd_det_compute_bound(NDV **dm,int n,int j);
 void nd_det_reconstruct(NDV **dm,int n,int j,NDV d);  void nd_det_reconstruct(NDV **dm,int n,int j,NDV d);
Line 2467  LIST compute_splist()
Line 2469  LIST compute_splist()
   return l0;    return l0;
 }  }
   
   typedef struct oHPDATA {
     P hn; // HP(t)=hn(t)/(1-t)^n
     int len;
     P *head; // hp(i)=head[i] (i=0,...,len-1)
     P hp; // dim Hm(i)=hp(i) (i >= len)
     VECT x; // BDY(x)[i] = <<0,...,1,...,0>>
     P *plist; // plist[i]=(1-t)^i
   } *HPDATA;
   
   void make_reduced(VECT b,int nv);
   void mhp_rec(VECT b,VECT x,P t,P *r);
   P mhp_ctop(P *r,P *plist,int n);
   void mhp_to_hf(VL vl,P hp,int n,P *plist,VECT *head,P *hf);
   DL monomial_colon(DL a,DL b,int n);
   LIST dp_monomial_hilbert_poincare(VECT b,VECT x,P *plist);
   
   int hpvalue(HPDATA data,int d)
   {
     P *head;
     int len;
     P hp,val;
     Z dz;
   
     head = data->head;
     len = data->len;
     hp = data->hp;
     if ( d < len )
       return ZTOS((Z)head[d]);
     else {
       STOZ(d,dz);
       substp(CO,hp,hp->v,(P)dz,&val);
       return ZTOS((Z)val);
     }
   }
   
   void setup_hpdata(HPDATA final,HPDATA current)
   {
     int n,i;
     P *r;
     DL *p;
     P tv;
     VECT b,x,head;
     DL dl;
   
     n = nd_nvar;
     final->hn = (P)ARG0(nd_hpdata);
     head = (VECT)ARG2(nd_hpdata);
     final->len = head->len;
     final->head = (P *)BDY(head);
     final->hp = (P)ARG3(nd_hpdata);
     final->plist = (P *)BDY((VECT)ARG4(nd_hpdata));
     MKVECT(x,n);
     for ( i = 0; i < n; i++ ) {
       NEWDL(dl,n); dl->d[i] = 1; dl->td = 1; BDY(x)[i] = dl;
     }
     final->x = x;
   
     r = (P *)CALLOC(n+1,sizeof(P));
     MKVECT(b,nd_psn); p = (DL *)BDY(b);
     for ( i = 0; i < nd_psn; i++ ) {
       p[i] = ndltodl(n,nd_psh[i]->dl);
     }
     make_reduced(b,n);
     makevar("t",&tv);
     mhp_rec(b,x,tv,r);
     current->hn = mhp_ctop(r,final->plist,n);
     mhp_to_hf(CO,current->hn,n,final->plist,&head,&current->hp);
     current->head = (P *)BDY(head);
     current->len = head->len;
     current->x = x;
     current->plist = final->plist;
   }
   
   void update_hpdata(HPDATA current,int nh,int do_hf)
   {
     NODE data1,nd,t;
     DL new,dl;
     int len,i,n;
     Z dz;
     DL *p;
     VECT b,head;
     P tv,td,s,hn,hpoly;
     LIST list1;
   
     n = nd_nvar;
     new = ndltodl(n,nd_psh[nh]->dl);
     MKVECT(b,nh); p = (DL *)BDY(b);
     for ( i = 0; i < nh; i++ ) {
       p[i] = monomial_colon(ndltodl(n,nd_psh[i]->dl),new,n);
     }
     // compute HP(I:new)
     list1 = dp_monomial_hilbert_poincare(b,current->x,current->plist);
     data1 = BDY((LIST)list1);
     // HP(I+<new>) = H(I)-t^d*H(I:new), d=tdeg(new)
     makevar("t",&tv); UTOZ(new->td,dz);
     pwrp(CO,tv,dz,&td);
     mulp(CO,(P)ARG0(data1),td,&s);
     subp(CO,current->hn,s,&hn);
     current->hn = hn;
     if ( do_hf ) {
       mhp_to_hf(CO,hn,n,current->plist,&head,&hpoly);
       current->head = (P *)BDY(head);
       current->len = head->len;
       current->hp = hpoly;
     }
   }
   
   ND_pairs nd_remove_same_sugar( ND_pairs d, int sugar)
   {
     struct oND_pairs root;
     ND_pairs prev,cur;
   
     root.next = d;
     prev = &root; cur = d;
     while ( cur ) {
       if ( SG(cur) == sugar )
         prev->next = cur->next;
       else
         prev = cur;
       cur = cur->next;
     }
     return root.next;
   }
   
 /* return value = 0 => input is not a GB */  /* return value = 0 => input is not a GB */
   
 NODE nd_gb(int m,int ishomo,int checkonly,int gensyz,int **indp)  NODE nd_gb(int m,int ishomo,int checkonly,int gensyz,int **indp)
Line 2483  NODE nd_gb(int m,int ishomo,int checkonly,int gensyz,i
Line 2609  NODE nd_gb(int m,int ishomo,int checkonly,int gensyz,i
   int Nnfnz = 0,Nnfz = 0;    int Nnfnz = 0,Nnfz = 0;
   P cont;    P cont;
   LIST list;    LIST list;
     struct oHPDATA current_hpdata,final_hpdata;
     int final_hpvalue;
   
 struct oEGT eg1,eg2,eg_update;  struct oEGT eg1,eg2,eg_update;
   
 init_eg(&eg_update);  init_eg(&eg_update);
Line 2493  init_eg(&eg_update);
Line 2622  init_eg(&eg_update);
     g = update_base(g,i);      g = update_base(g,i);
   }    }
   sugar = 0;    sugar = 0;
     if ( nd_hpdata ) {
       if ( DP_Print ) fprintf(asir_out,"Hilbert driven algorithm.\n");
       setup_hpdata(&final_hpdata,&current_hpdata);
     }
   while ( d ) {    while ( d ) {
 again:  again:
     l = nd_minp(d,&d);      l = nd_minp(d,&d);
Line 2509  again:
Line 2642  again:
       }        }
       sugar = SG(l);        sugar = SG(l);
       if ( DP_Print ) fprintf(asir_out,"%d",sugar);        if ( DP_Print ) fprintf(asir_out,"%d",sugar);
         if ( nd_hpdata ) {
           if ( !compp(CO,final_hpdata.hn,current_hpdata.hn) )
             break;
           else {
             final_hpvalue = hpvalue(&final_hpdata,sugar);
             if ( final_hpvalue == hpvalue(&current_hpdata,sugar) ) {
   //            if ( DP_Print ) fprintf(asir_out,"done.\n",sugar);
               d = nd_remove_same_sugar(d,sugar);
               continue;
             }
           }
         }
     }      }
     stat = nd_sp(m,0,l,&h);      stat = nd_sp(m,0,l,&h);
     if ( !stat ) {      if ( !stat ) {
Line 2566  get_eg(&eg1);
Line 2711  get_eg(&eg1);
 get_eg(&eg2); add_eg(&eg_update,&eg1,&eg2);  get_eg(&eg2); add_eg(&eg_update,&eg1,&eg2);
       g = update_base(g,nh);        g = update_base(g,nh);
       FREENDP(l);        FREENDP(l);
         if ( nd_hpdata ) {
           update_hpdata(&current_hpdata,nh,1);
           if ( final_hpvalue == hpvalue(&current_hpdata,sugar) ) {
   //          if ( DP_Print ) fprintf(asir_out,"sugar=%d done.\n",sugar);
             d = nd_remove_same_sugar(d,sugar);
           }
         }
     } else {      } else {
       Nnfz++;        Nnfz++;
       if ( nd_gentrace && gensyz ) {        if ( nd_gentrace && gensyz ) {
Line 2602  int nd_nf_s(int mod,ND d,ND g,NDV *ps,int full,ND *nf)
Line 2754  int nd_nf_s(int mod,ND d,ND g,NDV *ps,int full,ND *nf)
 void _copydl(int n,DL d1,DL d2);  void _copydl(int n,DL d1,DL d2);
 void _subfromdl(int n,DL d1,DL d2);  void _subfromdl(int n,DL d1,DL d2);
 extern int (*cmpdl)(int n,DL d1,DL d2);  extern int (*cmpdl)(int n,DL d1,DL d2);
   int _dl_redble_ext(DL,DL,DL,int);
   
   int primitive_irred(ND p,SIG sig)
   {
     static int wpd=0,dlen=0;
     static DL dquo,squo;
     static UINT *quo;
     int i;
   
     if ( dlen < nd_nvar ) {
       NEWDL(dquo,nd_nvar);
       NEWDL(squo,nd_nvar);
       dlen = nd_nvar;
     }
     if ( wpd != nd_wpd ) {
       wpd = nd_wpd;
       quo = (UINT *)MALLOC(wpd*sizeof(UINT));
     }
     for ( i = 0; i < nd_psn; i++ ) {
       if ( sig->pos == nd_psh[i]->sig->pos &&
         _dl_redble_ext(DL(nd_psh[i]->sig),DL(sig),squo,nd_nvar) )
         if ( ndl_reducible(HDL(p),DL(nd_psh[i])) ) {
           if ( DP_Print ) fprintf(asir_out,"D");
           ndl_sub(HDL(p),DL(nd_psh[i]),quo);
           _ndltodl(quo,dquo);
           if ( _eqdl(nd_nvar,squo,dquo) )
             return 0;
         }
     }
     return 1;
   }
   
 NODE insert_sig(NODE l,SIG s)  NODE insert_sig(NODE l,SIG s)
 {  {
   int pos;    int pos;
Line 2655  ND_pairs remove_spair_s(ND_pairs d,SIG sig)
Line 2838  ND_pairs remove_spair_s(ND_pairs d,SIG sig)
   return (ND_pairs)root.next;    return (ND_pairs)root.next;
 }  }
   
 int _dl_redble_ext(DL,DL,DL,int);  
   
 int small_lcm(ND_pairs l)  int small_lcm(ND_pairs l)
 {  {
   SIG sig;    SIG sig;
Line 2853  NODE nd_sba_buch(int m,int ishomo,int **indp,NODE *syz
Line 3034  NODE nd_sba_buch(int m,int ishomo,int **indp,NODE *syz
   int ngen,ind;    int ngen,ind;
   int Nnominimal,Nredundant;    int Nnominimal,Nredundant;
   DL lcm,quo,mul;    DL lcm,quo,mul;
   struct oEGT eg1,eg2,eg_update,eg_remove,eg_large,eg_nf,eg_nfzero,eg_minsig,eg_smallest;    struct oHPDATA final_hpdata,current_hpdata;
     struct oEGT eg1,eg2,eg3,eg4,eg_update,eg_remove,eg_large,eg_nf,eg_nfzero;
     struct oEGT eg_minsig,eg_smallest,eg_removecont,eg_hpdata,eg_updatepairs,eg_sbabuch,eg_sp;
   int Nnfs=0,Nnfz=0,Nnfnz=0,dlen,nsyz;    int Nnfs=0,Nnfz=0,Nnfnz=0,dlen,nsyz;
   
 init_eg(&eg_remove);  init_eg(&eg_remove);
Line 2865  init_eg(&eg_remove);
Line 3048  init_eg(&eg_remove);
   Nnominimal = 0;    Nnominimal = 0;
   Nredundant = 0;    Nredundant = 0;
   ngen = nd_psn;    ngen = nd_psn;
   for ( i = 0; i < nd_psn; i++ )    if ( !do_weyl ) {
     for ( j = i+1; j < nd_psn; j++ ) {      for ( i = 0; i < nd_psn; i++ )
       sig = trivial_sig(i,j);        for ( j = i+1; j < nd_psn; j++ ) {
       syzlist[sig->pos] = insert_sig(syzlist[sig->pos],sig);          sig = trivial_sig(i,j);
           syzlist[sig->pos] = insert_sig(syzlist[sig->pos],sig);
         }
     }      }
   dlen = 0;    dlen = 0;
   for ( i = 0; i < nd_psn; i++ ) {    for ( i = 0; i < nd_psn; i++ ) {
Line 2876  init_eg(&eg_remove);
Line 3061  init_eg(&eg_remove);
   }    }
   sugar = 0;    sugar = 0;
   pos = 0;    pos = 0;
     if ( nd_hpdata ) {
       setup_hpdata(&final_hpdata,&current_hpdata);
     }
   NEWDL(lcm,nd_nvar); NEWDL(quo,nd_nvar); NEWDL(mul,nd_nvar);    NEWDL(lcm,nd_nvar); NEWDL(quo,nd_nvar); NEWDL(mul,nd_nvar);
   init_eg(&eg_sp);
 init_eg(&eg_create);  init_eg(&eg_create);
 init_eg(&eg_merge);  init_eg(&eg_merge);
 init_eg(&eg_minsig);  init_eg(&eg_minsig);
Line 2884  init_eg(&eg_smallest);
Line 3073  init_eg(&eg_smallest);
 init_eg(&eg_large);  init_eg(&eg_large);
 init_eg(&eg_nf);  init_eg(&eg_nf);
 init_eg(&eg_nfzero);  init_eg(&eg_nfzero);
   init_eg(&eg_removecont);
   init_eg(&eg_updatepairs);
   init_eg(&eg_hpdata);
   init_eg(&eg_sbabuch);
   get_eg(&eg3);
   while ( 1 ) {    while ( 1 ) {
     if ( DP_Print && dlen%100 == 0 ) fprintf(asir_out,"(%d)",dlen);      if ( DP_Print && !nd_hpdata && dlen%1000 == 0 ) fprintf(asir_out,"(%d)",dlen);
 again :  again :
 get_eg(&eg1);  get_eg(&eg1);
     ind = nd_minsig(d);      ind = nd_minsig(d);
Line 2898  get_eg(&eg1);
Line 3092  get_eg(&eg1);
 get_eg(&eg2); add_eg(&eg_smallest,&eg1,&eg2);  get_eg(&eg2); add_eg(&eg_smallest,&eg1,&eg2);
     if ( l1 == 0 ) {      if ( l1 == 0 ) {
       d[ind] = d[ind]->next; dlen--;        d[ind] = d[ind]->next; dlen--;
       if ( DP_Print ) fprintf(asir_out,"M");  //      if ( DP_Print && !nd_hpdata ) fprintf(asir_out,"M");
       Nnominimal++;        Nnominimal++;
       continue;        continue;
     }      }
Line 2913  get_eg(&eg2); add_eg(&eg_smallest,&eg1,&eg2);
Line 3107  get_eg(&eg2); add_eg(&eg_smallest,&eg1,&eg2);
         pos = sig->pos;          pos = sig->pos;
       }        }
     }      }
   get_eg(&eg1);
     stat = nd_sp(m,0,l1,&h);      stat = nd_sp(m,0,l1,&h);
   get_eg(&eg2); add_eg(&eg_sp,&eg1,&eg2);
     if ( !stat ) {      if ( !stat ) {
       nd_reconstruct_s(0,d);        nd_reconstruct_s(0,d);
       goto again;        goto again;
Line 2948  get_eg(&eg2); 
Line 3144  get_eg(&eg2); 
       }        }
       add_eg(&eg_nf,&eg1,&eg2);        add_eg(&eg_nf,&eg1,&eg2);
       hc = HCU(nf);        hc = HCU(nf);
         get_eg(&eg1);
       nd_removecont(m,nf);        nd_removecont(m,nf);
         get_eg(&eg2); add_eg(&eg_removecont,&eg1,&eg2);
       nfv = ndtondv(m,nf); nd_free(nf);        nfv = ndtondv(m,nf); nd_free(nf);
       nh = ndv_newps(m,nfv,0);        nh = ndv_newps(m,nfv,0);
   
         get_eg(&eg1);
       dlen += update_pairs_array_s(d,nh,syzlist);        dlen += update_pairs_array_s(d,nh,syzlist);
         get_eg(&eg2); add_eg(&eg_updatepairs,&eg1,&eg2);
       nd_sba_pos[sig->pos] = append_one(nd_sba_pos[sig->pos],nh);        nd_sba_pos[sig->pos] = append_one(nd_sba_pos[sig->pos],nh);
         if ( nd_hpdata ) {
           get_eg(&eg1);
           update_hpdata(&current_hpdata,nh,0);
           get_eg(&eg2); add_eg(&eg_hpdata,&eg1,&eg2);
           if ( !compp(CO,final_hpdata.hn,current_hpdata.hn) ) {
             if ( DP_Print ) { printf("\nWe found a gb.\n"); }
               break;
           }
         }
    } else {     } else {
       d[ind] = d[ind]->next; dlen--;        d[ind] = d[ind]->next; dlen--;
       Nnfz++;        Nnfz++;
Line 2968  get_eg(&eg2); add_eg(&eg_remove,&eg1,&eg2);
Line 3177  get_eg(&eg2); add_eg(&eg_remove,&eg1,&eg2);
      if ( DP_Print ) { printf("."); fflush(stdout); }       if ( DP_Print ) { printf("."); fflush(stdout); }
    }     }
  }   }
    get_eg(&eg4); add_eg(&eg_sbabuch,&eg3,&eg4);
  g = conv_ilist_s(nd_demand,0,indp);   g = conv_ilist_s(nd_demand,0,indp);
  if ( DP_Print ) {   if ( DP_Print ) {
    printf("\ndlen=%d,nd_sba done. nd_add=%d,Nsyz=%d,Nsamesig=%d,Nnominimal=%d\n",dlen,Nnd_add,Nsyz,Nsamesig,Nnominimal);     printf("\ndlen=%d,nd_sba done. nd_add=%d,Nsyz=%d,Nsamesig=%d,Nnominimal=%d\n",dlen,Nnd_add,Nsyz,Nsamesig,Nnominimal);
    printf("Nnfnz=%d,Nnfz=%d,Nnfsingular=%d\n",Nnfnz,Nnfz,Nnfs);     printf("Nnfnz=%d,Nnfz=%d,Nnfsingular=%d\n",Nnfnz,Nnfz,Nnfs);
    fflush(stdout);     fflush(stdout);
    if ( nd_sba_redundant_check )     if ( nd_sba_redundant_check )
    printf("Nredundant=%d\n",Nredundant);     printf("Nredundant=%d\n",Nredundant);
    fflush(stdout);     fflush(stdout);
      print_eg("sp",&eg_sp);
    print_eg("create",&eg_create);     print_eg("create",&eg_create);
    print_eg("merge",&eg_merge);     print_eg("merge",&eg_merge);
    print_eg("minsig",&eg_minsig);     print_eg("minsig",&eg_minsig);
    print_eg("smallest",&eg_smallest);     print_eg("smallest",&eg_smallest);
    print_eg("remove",&eg_remove);     print_eg("remove",&eg_remove);
      printf("\n");
    print_eg("nf",&eg_nf);     print_eg("nf",&eg_nf);
    print_eg("nfzero",&eg_nfzero);     print_eg("nfzero",&eg_nfzero);
      print_eg("removecont",&eg_removecont);
      print_eg("updatepairs",&eg_updatepairs);
      print_eg("hpdata",&eg_hpdata);
      print_eg("total",&eg_sbabuch);
    printf("\n");     printf("\n");
  }   }
  if ( nd_sba_syz ) {   if ( nd_sba_syz ) {
Line 3172  NODE nd_gb_trace(int m,int ishomo,int **indp)
Line 3388  NODE nd_gb_trace(int m,int ishomo,int **indp)
   int diag_count = 0;    int diag_count = 0;
   P cont;    P cont;
   LIST list;    LIST list;
     struct oHPDATA current_hpdata,final_hpdata;
     int final_hpvalue;
   
   init_eg(&eg_monic);    init_eg(&eg_monic);
   init_eg(&eg_invdalg);    init_eg(&eg_invdalg);
Line 3182  NODE nd_gb_trace(int m,int ishomo,int **indp)
Line 3400  NODE nd_gb_trace(int m,int ishomo,int **indp)
     g = update_base(g,i);      g = update_base(g,i);
   }    }
   sugar = 0;    sugar = 0;
     if ( nd_hpdata ) {
       if ( DP_Print ) fprintf(asir_out,"Hilbert driven algorithm.\n");
       setup_hpdata(&final_hpdata,&current_hpdata);
     }
   
   while ( d ) {    while ( d ) {
 again:  again:
     l = nd_minp(d,&d);      l = nd_minp(d,&d);
Line 3202  again:
Line 3425  again:
 #endif  #endif
       sugar = SG(l);        sugar = SG(l);
       if ( DP_Print ) fprintf(asir_out,"%d",sugar);        if ( DP_Print ) fprintf(asir_out,"%d",sugar);
         if ( nd_hpdata ) {
           if ( !compp(CO,final_hpdata.hn,current_hpdata.hn) )
             break;
           else {
             final_hpvalue = hpvalue(&final_hpdata,sugar);
             if ( final_hpvalue == hpvalue(&current_hpdata,sugar) ) {
   //            if ( DP_Print ) fprintf(asir_out,"sugar=%d done.\n",sugar);
               d = nd_remove_same_sugar(d,sugar);
               continue;
             }
           }
         }
     }      }
     stat = nd_sp(m,0,l,&h);      stat = nd_sp(m,0,l,&h);
     if ( !stat ) {      if ( !stat ) {
Line 3275  again:
Line 3510  again:
         }          }
         d = update_pairs(d,g,nh,0);          d = update_pairs(d,g,nh,0);
         g = update_base(g,nh);          g = update_base(g,nh);
           if ( nd_hpdata ) {
             update_hpdata(&current_hpdata,nh,1);
             if ( final_hpvalue == hpvalue(&current_hpdata,sugar) ) {
   //            if ( DP_Print ) fprintf(asir_out,"sugar=%d done.\n",sugar);
               d = nd_remove_same_sugar(d,sugar);
             }
           }
       } else {        } else {
         if ( DP_Print ) { printf("*"); fflush(stdout); }          if ( DP_Print ) { printf("*"); fflush(stdout); }
       }        }
Line 3737  int _create_spair_s(int i1,int i2,ND_pairs sp,SIG sig1
Line 3979  int _create_spair_s(int i1,int i2,ND_pairs sp,SIG sig1
   p1 = nd_psh[i1];    p1 = nd_psh[i1];
   p2 = nd_psh[i2];    p2 = nd_psh[i2];
   ndl_lcm(DL(p1),DL(p2),sp->lcm);    ndl_lcm(DL(p1),DL(p2),sp->lcm);
   #if 0
   s1 = SG(p1)-TD(DL(p1));    s1 = SG(p1)-TD(DL(p1));
   s2 = SG(p2)-TD(DL(p2));    s2 = SG(p2)-TD(DL(p2));
   SG(sp) = MAX(s1,s2) + TD(sp->lcm);    SG(sp) = MAX(s1,s2) + TD(sp->lcm);
   #endif
   
   if ( wpd != nd_wpd ) {    if ( wpd != nd_wpd ) {
     wpd = nd_wpd;      wpd = nd_wpd;
Line 3765  int _create_spair_s(int i1,int i2,ND_pairs sp,SIG sig1
Line 4009  int _create_spair_s(int i1,int i2,ND_pairs sp,SIG sig1
   if ( ret == 0 ) return 0;    if ( ret == 0 ) return 0;
   else if ( ret > 0 ) sp->sig = sig1;    else if ( ret > 0 ) sp->sig = sig1;
   else sp->sig = sig2;    else sp->sig = sig2;
   
     s1 = DL(sig1)->td+nd_sba_hm[p1->sig->pos]->td;
     s2 = DL(sig2)->td+nd_sba_hm[p2->sig->pos]->td;
     SG(sp) = MAX(s1,s2);
   
   return 1;    return 1;
 }  }
   
Line 4836  void nd_sba(LIST f,LIST v,int m,int homo,int retdp,int
Line 5085  void nd_sba(LIST f,LIST v,int m,int homo,int retdp,int
   int *perm;    int *perm;
   EPOS oepos;    EPOS oepos;
   int obpe,oadv,ompos,cbpe;    int obpe,oadv,ompos,cbpe;
   struct oEGT eg0,eg1,egconv;    struct oEGT eg0,eg1,egconv,egintred;
   
   nd_module = 0;    nd_module = 0;
   nd_demand = 0;    nd_demand = 0;
Line 4922  void nd_sba(LIST f,LIST v,int m,int homo,int retdp,int
Line 5171  void nd_sba(LIST f,LIST v,int m,int homo,int retdp,int
     nd_setup_parameters(nvar,0);      nd_setup_parameters(nvar,0);
   }    }
   nd_demand = 0;    nd_demand = 0;
     get_eg(&eg0);
   x = ndv_reducebase(x,perm);    x = ndv_reducebase(x,perm);
   x = ndv_reduceall(m,x);    x = ndv_reduceall(m,x);
     get_eg(&eg1); init_eg(&egintred); add_eg(&egintred,&eg0,&eg1);
   nd_setup_parameters(nd_nvar,0);    nd_setup_parameters(nd_nvar,0);
   get_eg(&eg0);    get_eg(&eg0);
   for ( r0 = 0, t = x; t; t = NEXT(t) ) {    for ( r0 = 0, t = x; t; t = NEXT(t) ) {
Line 4943  void nd_sba(LIST f,LIST v,int m,int homo,int retdp,int
Line 5194  void nd_sba(LIST f,LIST v,int m,int homo,int retdp,int
   } else    } else
     MKLIST(*rp,r0);      MKLIST(*rp,r0);
   get_eg(&eg1); init_eg(&egconv); add_eg(&egconv,&eg0,&eg1);    get_eg(&eg1); init_eg(&egconv); add_eg(&egconv,&eg0,&eg1);
     print_eg("intred",&egintred); fprintf(asir_out,"\n");
   print_eg("conv",&egconv); fprintf(asir_out,"\n");    print_eg("conv",&egconv); fprintf(asir_out,"\n");
 }  }
   
Line 6968  ND ptond(VL vl,VL dvl,P p)
Line 7220  ND ptond(VL vl,VL dvl,P p)
     else if ( NUM(p) ) {      else if ( NUM(p) ) {
         NEWNM(m);          NEWNM(m);
         ndl_zero(DL(m));          ndl_zero(DL(m));
         if ( !INT((Q)p) )          if ( RATN(p) && !INT((Q)p) )
           error("ptond : input must be integer-coefficient");            error("ptond : input must be integer-coefficient");
         CZ(m) = (Z)p;          CZ(m) = (Z)p;
         NEXT(m) = 0;          NEXT(m) = 0;
Line 10386  void parse_nd_option(VL vl,NODE opt)
Line 10638  void parse_nd_option(VL vl,NODE opt)
   nd_f4_td = 0; nd_sba_f4step = 2; nd_sba_pot = 0; nd_sba_largelcm = 0;    nd_f4_td = 0; nd_sba_f4step = 2; nd_sba_pot = 0; nd_sba_largelcm = 0;
   nd_sba_dontsort = 0; nd_top = 0; nd_sba_redundant_check = 0;    nd_sba_dontsort = 0; nd_top = 0; nd_sba_redundant_check = 0;
   nd_sba_syz = 0; nd_sba_modord = 0; nd_sba_inputisgb = 0;    nd_sba_syz = 0; nd_sba_modord = 0; nd_sba_inputisgb = 0;
     nd_hpdata = 0;
   
   for ( t = opt; t; t = NEXT(t) ) {    for ( t = opt; t; t = NEXT(t) ) {
     p = BDY((LIST)BDY(t));      p = BDY((LIST)BDY(t));
Line 10433  void parse_nd_option(VL vl,NODE opt)
Line 10686  void parse_nd_option(VL vl,NODE opt)
       nd_splist = value?1:0;        nd_splist = value?1:0;
     } else if ( !strcmp(key,"check_splist") ) {      } else if ( !strcmp(key,"check_splist") ) {
       nd_check_splist = BDY((LIST)value);        nd_check_splist = BDY((LIST)value);
       } else if ( !strcmp(key,"hpdata") ) {
         if ( value )
           nd_hpdata = BDY((LIST)value);
     } else if ( !strcmp(key,"sugarweight") ) {      } else if ( !strcmp(key,"sugarweight") ) {
       u = BDY((LIST)value);        u = BDY((LIST)value);
       n = length(u);        n = length(u);

Legend:
Removed from v.1.47  
changed lines
  Added in v.1.53

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