=================================================================== RCS file: /home/cvs/OpenXM_contrib2/asir2018/engine/nd.c,v retrieving revision 1.48 retrieving revision 1.53 diff -u -p -r1.48 -r1.53 --- OpenXM_contrib2/asir2018/engine/nd.c 2021/02/18 05:35:01 1.48 +++ OpenXM_contrib2/asir2018/engine/nd.c 2021/03/12 01:18:33 1.53 @@ -1,9 +1,10 @@ -/* $OpenXM: OpenXM_contrib2/asir2018/engine/nd.c,v 1.47 2021/02/01 08:06:33 noro Exp $ */ +/* $OpenXM: OpenXM_contrib2/asir2018/engine/nd.c,v 1.52 2021/03/09 08:48:50 noro Exp $ */ #include "nd.h" void print_siglist(NODE l); +NODE nd_hpdata; int Nnd_add,Nf4_red,NcriB,NcriMF,Ncri2,Npairs,Nnewpair; struct oEGT eg_search,f4_symb,f4_conv,f4_elim1,f4_elim2; @@ -92,6 +93,7 @@ struct comp_sig_spec { struct comp_sig_spec *nd_sba_modord; +DL ndltodl(int n,UINT *ndl); NumberField get_numberfield(); UINT *nd_det_compute_bound(NDV **dm,int n,int j); void nd_det_reconstruct(NDV **dm,int n,int j,NDV d); @@ -2467,6 +2469,130 @@ LIST compute_splist() 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,¤t->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+) = 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 */ NODE nd_gb(int m,int ishomo,int checkonly,int gensyz,int **indp) @@ -2483,6 +2609,9 @@ NODE nd_gb(int m,int ishomo,int checkonly,int gensyz,i int Nnfnz = 0,Nnfz = 0; P cont; LIST list; + struct oHPDATA current_hpdata,final_hpdata; + int final_hpvalue; + struct oEGT eg1,eg2,eg_update; init_eg(&eg_update); @@ -2493,6 +2622,10 @@ init_eg(&eg_update); g = update_base(g,i); } sugar = 0; + if ( nd_hpdata ) { + if ( DP_Print ) fprintf(asir_out,"Hilbert driven algorithm.\n"); + setup_hpdata(&final_hpdata,¤t_hpdata); + } while ( d ) { again: l = nd_minp(d,&d); @@ -2509,6 +2642,18 @@ again: } sugar = SG(l); 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(¤t_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); if ( !stat ) { @@ -2566,6 +2711,13 @@ get_eg(&eg1); get_eg(&eg2); add_eg(&eg_update,&eg1,&eg2); g = update_base(g,nh); FREENDP(l); + if ( nd_hpdata ) { + update_hpdata(¤t_hpdata,nh,1); + if ( final_hpvalue == hpvalue(¤t_hpdata,sugar) ) { +// if ( DP_Print ) fprintf(asir_out,"sugar=%d done.\n",sugar); + d = nd_remove_same_sugar(d,sugar); + } + } } else { Nnfz++; if ( nd_gentrace && gensyz ) { @@ -2602,7 +2754,38 @@ 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 _subfromdl(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) { int pos; @@ -2655,8 +2838,6 @@ ND_pairs remove_spair_s(ND_pairs d,SIG sig) return (ND_pairs)root.next; } -int _dl_redble_ext(DL,DL,DL,int); - int small_lcm(ND_pairs l) { SIG sig; @@ -2853,7 +3034,9 @@ NODE nd_sba_buch(int m,int ishomo,int **indp,NODE *syz int ngen,ind; int Nnominimal,Nredundant; 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; init_eg(&eg_remove); @@ -2878,7 +3061,11 @@ init_eg(&eg_remove); } sugar = 0; pos = 0; + if ( nd_hpdata ) { + setup_hpdata(&final_hpdata,¤t_hpdata); + } NEWDL(lcm,nd_nvar); NEWDL(quo,nd_nvar); NEWDL(mul,nd_nvar); +init_eg(&eg_sp); init_eg(&eg_create); init_eg(&eg_merge); init_eg(&eg_minsig); @@ -2886,8 +3073,13 @@ init_eg(&eg_smallest); init_eg(&eg_large); init_eg(&eg_nf); 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 ) { - 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 : get_eg(&eg1); ind = nd_minsig(d); @@ -2900,7 +3092,7 @@ get_eg(&eg1); get_eg(&eg2); add_eg(&eg_smallest,&eg1,&eg2); if ( l1 == 0 ) { d[ind] = d[ind]->next; dlen--; - if ( DP_Print ) fprintf(asir_out,"M"); +// if ( DP_Print && !nd_hpdata ) fprintf(asir_out,"M"); Nnominimal++; continue; } @@ -2915,7 +3107,9 @@ get_eg(&eg2); add_eg(&eg_smallest,&eg1,&eg2); pos = sig->pos; } } +get_eg(&eg1); stat = nd_sp(m,0,l1,&h); +get_eg(&eg2); add_eg(&eg_sp,&eg1,&eg2); if ( !stat ) { nd_reconstruct_s(0,d); goto again; @@ -2950,12 +3144,25 @@ get_eg(&eg2); } add_eg(&eg_nf,&eg1,&eg2); hc = HCU(nf); + get_eg(&eg1); nd_removecont(m,nf); + get_eg(&eg2); add_eg(&eg_removecont,&eg1,&eg2); nfv = ndtondv(m,nf); nd_free(nf); nh = ndv_newps(m,nfv,0); - + + get_eg(&eg1); 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); + if ( nd_hpdata ) { + get_eg(&eg1); + update_hpdata(¤t_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 { d[ind] = d[ind]->next; dlen--; Nnfz++; @@ -2970,21 +3177,28 @@ get_eg(&eg2); add_eg(&eg_remove,&eg1,&eg2); if ( DP_Print ) { printf("."); fflush(stdout); } } } + get_eg(&eg4); add_eg(&eg_sbabuch,&eg3,&eg4); g = conv_ilist_s(nd_demand,0,indp); 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("Nnfnz=%d,Nnfz=%d,Nnfsingular=%d\n",Nnfnz,Nnfz,Nnfs); - fflush(stdout); + fflush(stdout); if ( nd_sba_redundant_check ) printf("Nredundant=%d\n",Nredundant); - fflush(stdout); + fflush(stdout); + print_eg("sp",&eg_sp); print_eg("create",&eg_create); print_eg("merge",&eg_merge); print_eg("minsig",&eg_minsig); print_eg("smallest",&eg_smallest); print_eg("remove",&eg_remove); + printf("\n"); print_eg("nf",&eg_nf); 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"); } if ( nd_sba_syz ) { @@ -3174,6 +3388,8 @@ NODE nd_gb_trace(int m,int ishomo,int **indp) int diag_count = 0; P cont; LIST list; + struct oHPDATA current_hpdata,final_hpdata; + int final_hpvalue; init_eg(&eg_monic); init_eg(&eg_invdalg); @@ -3184,6 +3400,11 @@ NODE nd_gb_trace(int m,int ishomo,int **indp) g = update_base(g,i); } sugar = 0; + if ( nd_hpdata ) { + if ( DP_Print ) fprintf(asir_out,"Hilbert driven algorithm.\n"); + setup_hpdata(&final_hpdata,¤t_hpdata); + } + while ( d ) { again: l = nd_minp(d,&d); @@ -3204,6 +3425,18 @@ again: #endif sugar = SG(l); 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(¤t_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); if ( !stat ) { @@ -3277,6 +3510,13 @@ again: } d = update_pairs(d,g,nh,0); g = update_base(g,nh); + if ( nd_hpdata ) { + update_hpdata(¤t_hpdata,nh,1); + if ( final_hpvalue == hpvalue(¤t_hpdata,sugar) ) { +// if ( DP_Print ) fprintf(asir_out,"sugar=%d done.\n",sugar); + d = nd_remove_same_sugar(d,sugar); + } + } } else { if ( DP_Print ) { printf("*"); fflush(stdout); } } @@ -3739,9 +3979,11 @@ int _create_spair_s(int i1,int i2,ND_pairs sp,SIG sig1 p1 = nd_psh[i1]; p2 = nd_psh[i2]; ndl_lcm(DL(p1),DL(p2),sp->lcm); +#if 0 s1 = SG(p1)-TD(DL(p1)); s2 = SG(p2)-TD(DL(p2)); SG(sp) = MAX(s1,s2) + TD(sp->lcm); +#endif if ( wpd != nd_wpd ) { wpd = nd_wpd; @@ -3767,6 +4009,11 @@ int _create_spair_s(int i1,int i2,ND_pairs sp,SIG sig1 if ( ret == 0 ) return 0; else if ( ret > 0 ) sp->sig = sig1; 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; } @@ -4838,7 +5085,7 @@ void nd_sba(LIST f,LIST v,int m,int homo,int retdp,int int *perm; EPOS oepos; int obpe,oadv,ompos,cbpe; - struct oEGT eg0,eg1,egconv; + struct oEGT eg0,eg1,egconv,egintred; nd_module = 0; nd_demand = 0; @@ -4924,8 +5171,10 @@ void nd_sba(LIST f,LIST v,int m,int homo,int retdp,int nd_setup_parameters(nvar,0); } nd_demand = 0; + get_eg(&eg0); x = ndv_reducebase(x,perm); x = ndv_reduceall(m,x); + get_eg(&eg1); init_eg(&egintred); add_eg(&egintred,&eg0,&eg1); nd_setup_parameters(nd_nvar,0); get_eg(&eg0); for ( r0 = 0, t = x; t; t = NEXT(t) ) { @@ -4945,6 +5194,7 @@ void nd_sba(LIST f,LIST v,int m,int homo,int retdp,int } else MKLIST(*rp,r0); 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"); } @@ -10388,6 +10638,7 @@ 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_sba_dontsort = 0; nd_top = 0; nd_sba_redundant_check = 0; nd_sba_syz = 0; nd_sba_modord = 0; nd_sba_inputisgb = 0; + nd_hpdata = 0; for ( t = opt; t; t = NEXT(t) ) { p = BDY((LIST)BDY(t)); @@ -10435,6 +10686,9 @@ void parse_nd_option(VL vl,NODE opt) nd_splist = value?1:0; } else if ( !strcmp(key,"check_splist") ) { nd_check_splist = BDY((LIST)value); + } else if ( !strcmp(key,"hpdata") ) { + if ( value ) + nd_hpdata = BDY((LIST)value); } else if ( !strcmp(key,"sugarweight") ) { u = BDY((LIST)value); n = length(u);