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

Diff for /OpenXM_contrib2/asir2000/builtin/dp.c between version 1.52 and 1.63

version 1.52, 2004/05/14 06:02:54 version 1.63, 2006/06/09 09:59:12
Line 45 
Line 45 
  * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,   * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,
  * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.   * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.
  *   *
  * $OpenXM: OpenXM_contrib2/asir2000/builtin/dp.c,v 1.51 2004/04/30 08:25:38 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2000/builtin/dp.c,v 1.62 2006/06/05 08:11:10 noro Exp $
 */  */
 #include "ca.h"  #include "ca.h"
 #include "base.h"  #include "base.h"
 #include "parse.h"  #include "parse.h"
   
   extern int dp_fcoeffs;
 extern int dp_nelim;  extern int dp_nelim;
 extern int dp_order_pair_length;  extern int dp_order_pair_length;
 extern struct order_pair *dp_order_pair;  extern struct order_pair *dp_order_pair;
Line 74  void Pdp_minp(),Pdp_sp_mod();
Line 75  void Pdp_minp(),Pdp_sp_mod();
 void Pdp_homo(),Pdp_dehomo();  void Pdp_homo(),Pdp_dehomo();
 void Pdp_gr_mod_main(),Pdp_gr_f_main();  void Pdp_gr_mod_main(),Pdp_gr_f_main();
 void Pdp_gr_main(),Pdp_gr_hm_main(),Pdp_gr_d_main(),Pdp_gr_flags();  void Pdp_gr_main(),Pdp_gr_hm_main(),Pdp_gr_d_main(),Pdp_gr_flags();
   void Pdp_interreduce();
 void Pdp_f4_main(),Pdp_f4_mod_main(),Pdp_f4_f_main();  void Pdp_f4_main(),Pdp_f4_mod_main(),Pdp_f4_f_main();
 void Pdp_gr_print();  void Pdp_gr_print();
 void Pdp_mbase(),Pdp_lnf_mod(),Pdp_nf_tab_mod(),Pdp_mdtod(), Pdp_nf_tab_f();  void Pdp_mbase(),Pdp_lnf_mod(),Pdp_nf_tab_mod(),Pdp_mdtod(), Pdp_nf_tab_f();
Line 92  void Pdp_weyl_set_weight();
Line 94  void Pdp_weyl_set_weight();
 void Pdp_set_weight();  void Pdp_set_weight();
 void Pdp_nf_f(),Pdp_weyl_nf_f();  void Pdp_nf_f(),Pdp_weyl_nf_f();
 void Pdp_lnf_f();  void Pdp_lnf_f();
 void Pnd_gr(),Pnd_gr_trace(),Pnd_f4();  void Pnd_gr(),Pnd_gr_trace(),Pnd_f4(),Pnd_f4_trace();
   void Pnd_gr_postproc();
 void Pnd_weyl_gr(),Pnd_weyl_gr_trace();  void Pnd_weyl_gr(),Pnd_weyl_gr_trace();
 void Pnd_nf();  void Pnd_nf();
 void Pdp_initial_term();  void Pdp_initial_term();
Line 139  struct ftab dp_tab[] = {
Line 142  struct ftab dp_tab[] = {
   
         /* Buchberger algorithm */          /* Buchberger algorithm */
         {"dp_gr_main",Pdp_gr_main,-5},          {"dp_gr_main",Pdp_gr_main,-5},
           {"dp_interreduce",Pdp_interreduce,3},
         {"dp_gr_mod_main",Pdp_gr_mod_main,5},          {"dp_gr_mod_main",Pdp_gr_mod_main,5},
         {"dp_gr_f_main",Pdp_gr_f_main,4},          {"dp_gr_f_main",Pdp_gr_f_main,4},
         {"dp_gr_checklist",Pdp_gr_checklist,2},          {"dp_gr_checklist",Pdp_gr_checklist,2},
         {"nd_f4",Pnd_f4,4},          {"nd_f4",Pnd_f4,4},
         {"nd_gr",Pnd_gr,4},          {"nd_gr",Pnd_gr,4},
         {"nd_gr_trace",Pnd_gr_trace,5},          {"nd_gr_trace",Pnd_gr_trace,5},
           {"nd_f4_trace",Pnd_f4_trace,5},
           {"nd_gr_postproc",Pnd_gr_postproc,5},
         {"nd_weyl_gr",Pnd_weyl_gr,4},          {"nd_weyl_gr",Pnd_weyl_gr,4},
         {"nd_weyl_gr_trace",Pnd_weyl_gr_trace,5},          {"nd_weyl_gr_trace",Pnd_weyl_gr_trace,5},
         {"nd_nf",Pnd_nf,5},          {"nd_nf",Pnd_nf,5},
Line 195  struct ftab dp_supp_tab[] = {
Line 201  struct ftab dp_supp_tab[] = {
         {"dp_gr_print",Pdp_gr_print,-1},          {"dp_gr_print",Pdp_gr_print,-1},
   
         /* converters */          /* converters */
         {"dp_ptod",Pdp_ptod,2},          {"dp_ptod",Pdp_ptod,-2},
         {"dp_dtop",Pdp_dtop,2},          {"dp_dtop",Pdp_dtop,2},
         {"dp_homo",Pdp_homo,1},          {"dp_homo",Pdp_homo,1},
         {"dp_dehomo",Pdp_dehomo,1},          {"dp_dehomo",Pdp_dehomo,1},
Line 205  struct ftab dp_supp_tab[] = {
Line 211  struct ftab dp_supp_tab[] = {
         {"dp_mdtod",Pdp_mdtod,1},          {"dp_mdtod",Pdp_mdtod,1},
         {"dp_mod",Pdp_mod,3},          {"dp_mod",Pdp_mod,3},
         {"dp_rat",Pdp_rat,1},          {"dp_rat",Pdp_rat,1},
         {"dp_ltod",Pdp_ltod,2},          {"dp_ltod",Pdp_ltod,-2},
   
         /* criteria */          /* criteria */
         {"dp_cri1",Pdp_cri1,2},          {"dp_cri1",Pdp_cri1,2},
Line 439  Obj *rp;
Line 445  Obj *rp;
         int modular;          int modular;
   
         f.id = O_LIST; f.body = 0;          f.id = O_LIST; f.body = 0;
         if ( !arg )          if ( !arg && !current_option )
                 *rp = dp_current_spec->obj;                  *rp = dp_current_spec->obj;
         else {          else {
                 if ( ARG0(arg) && OID(ARG0(arg)) == O_OPTLIST )                  if ( current_option )
                         parse_gr_option(&f,BDY((OPTLIST)ARG0(arg)),&v,&homo,&modular,&spec);                          parse_gr_option(&f,current_option,&v,&homo,&modular,&spec);
                 else if ( !create_order_spec(0,(Obj)ARG0(arg),&spec) )                  else if ( !create_order_spec(0,(Obj)ARG0(arg),&spec) )
                         error("dp_ord : invalid order specification");                          error("dp_ord : invalid order specification");
                 initd(spec); *rp = spec->obj;                  initd(spec); *rp = spec->obj;
Line 454  void Pdp_ptod(arg,rp)
Line 460  void Pdp_ptod(arg,rp)
 NODE arg;  NODE arg;
 DP *rp;  DP *rp;
 {  {
           P p;
         NODE n;          NODE n;
         VL vl,tvl;          VL vl,tvl;
           struct oLIST f;
           int ac;
           LIST v;
           Num homo;
           int modular;
           struct order_spec *ord;
   
         asir_assert(ARG0(arg),O_P,"dp_ptod");          asir_assert(ARG0(arg),O_P,"dp_ptod");
         asir_assert(ARG1(arg),O_LIST,"dp_ptod");          p = (P)ARG0(arg);
         for ( vl = 0, n = BDY((LIST)ARG1(arg)); n; n = NEXT(n) ) {          ac = argc(arg);
           if ( ac == 1 ) {
                   if ( current_option ) {
                           f.id = O_LIST; f.body = mknode(1,p);
                           parse_gr_option(&f,current_option,&v,&homo,&modular,&ord);
                           initd(ord);
                   } else
                           error("dp_ptod : invalid argument");
           } else {
                   asir_assert(ARG1(arg),O_LIST,"dp_ptod");
                   v = (LIST)ARG1(arg);
           }
           for ( vl = 0, n = BDY(v); n; n = NEXT(n) ) {
                 if ( !vl ) {                  if ( !vl ) {
                         NEWVL(vl); tvl = vl;                          NEWVL(vl); tvl = vl;
                 } else {                  } else {
Line 469  DP *rp;
Line 494  DP *rp;
         }          }
         if ( vl )          if ( vl )
                 NEXT(tvl) = 0;                  NEXT(tvl) = 0;
         ptod(CO,vl,(P)ARG0(arg),rp);          ptod(CO,vl,p,rp);
 }  }
   
 void Pdp_ltod(arg,rp)  void Pdp_ltod(arg,rp)
Line 478  DPV *rp;
Line 503  DPV *rp;
 {  {
         NODE n;          NODE n;
         VL vl,tvl;          VL vl,tvl;
         int sugar,i,len;          LIST f,v;
           int sugar,i,len,ac,modular;
           Num homo;
           struct order_spec *ord;
         DP *e;          DP *e;
         NODE nd,t;          NODE nd,t;
   
           ac = argc(arg);
         asir_assert(ARG0(arg),O_LIST,"dp_ptod");          asir_assert(ARG0(arg),O_LIST,"dp_ptod");
         nd = BDY((LIST)ARG0(arg));          f = (LIST)ARG0(arg);
         asir_assert(ARG1(arg),O_LIST,"dp_ptod");          if ( ac == 1 ) {
         for ( vl = 0, n = BDY((LIST)ARG1(arg)); n; n = NEXT(n) ) {                  if ( current_option ) {
                           parse_gr_option(f,current_option,&v,&homo,&modular,&ord);
                           initd(ord);
                   } else
                           error("dp_ltod : invalid argument");
           } else {
                   asir_assert(ARG1(arg),O_LIST,"dp_ptod");
                   v = (LIST)ARG1(arg);
           }
           for ( vl = 0, n = BDY(v); n; n = NEXT(n) ) {
                 if ( !vl ) {                  if ( !vl ) {
                         NEWVL(vl); tvl = vl;                          NEWVL(vl); tvl = vl;
                 } else {                  } else {
Line 495  DPV *rp;
Line 533  DPV *rp;
         }          }
         if ( vl )          if ( vl )
                 NEXT(tvl) = 0;                  NEXT(tvl) = 0;
   
           nd = BDY(f);
         len = length(nd);          len = length(nd);
         e = (DP *)MALLOC(len*sizeof(DP));          e = (DP *)MALLOC(len*sizeof(DP));
         sugar = 0;          sugar = 0;
Line 532  extern LIST Dist;
Line 572  extern LIST Dist;
   
 void Pdp_ptozp(arg,rp)  void Pdp_ptozp(arg,rp)
 NODE arg;  NODE arg;
 DP *rp;  Obj *rp;
 {  {
           Q t;
       NODE tt,p;
       NODE n,n0;
       char *key;
           DP pp;
           LIST list;
       int get_factor=0;
   
         asir_assert(ARG0(arg),O_DP,"dp_ptozp");          asir_assert(ARG0(arg),O_DP,"dp_ptozp");
         dp_ptozp((DP)ARG0(arg),rp);  
       /* analyze the option */
       if ( current_option ) {
         for ( tt = current_option; tt; tt = NEXT(tt) ) {
           p = BDY((LIST)BDY(tt));
           key = BDY((STRING)BDY(p));
           /*  value = (Obj)BDY(NEXT(p)); */
           if ( !strcmp(key,"factor") )  get_factor=1;
           else {
             error("ptozp: unknown option.");
           }
         }
       }
   
           dp_ptozp3((DP)ARG0(arg),&t,&pp);
   
       /* printexpr(NULL,t); */
           /* if the option factor is given, then it returns the answer
          in the format [zpoly, num] where num*zpoly is equal to the argument.*/
       if (get_factor) {
             n0 = mknode(2,pp,t);
         MKLIST(list,n0);
             *rp = (Obj)list;
       } else
         *rp = (Obj)pp;
 }  }
   
 void Pdp_ptozp2(arg,rp)  void Pdp_ptozp2(arg,rp)
Line 600  DP *rp;
Line 672  DP *rp;
         DP g;          DP g;
         int full;          int full;
   
         do_weyl = 0;          do_weyl = 0; dp_fcoeffs = 0;
         asir_assert(ARG0(arg),O_LIST,"dp_nf");          asir_assert(ARG0(arg),O_LIST,"dp_nf");
         asir_assert(ARG1(arg),O_DP,"dp_nf");          asir_assert(ARG1(arg),O_DP,"dp_nf");
         asir_assert(ARG2(arg),O_VECT,"dp_nf");          asir_assert(ARG2(arg),O_VECT,"dp_nf");
Line 725  LIST *rp;
Line 797  LIST *rp;
         P dn;          P dn;
         int full;          int full;
   
         do_weyl = 0;          do_weyl = 0; dp_fcoeffs = 0;
         asir_assert(ARG0(arg),O_LIST,"dp_true_nf");          asir_assert(ARG0(arg),O_LIST,"dp_true_nf");
         asir_assert(ARG1(arg),O_DP,"dp_true_nf");          asir_assert(ARG1(arg),O_DP,"dp_true_nf");
         asir_assert(ARG2(arg),O_VECT,"dp_true_nf");          asir_assert(ARG2(arg),O_VECT,"dp_true_nf");
Line 1142  Obj *rp;
Line 1214  Obj *rp;
                 n = mknode(1,f); MKLIST(l,n); f = l;                  n = mknode(1,f); MKLIST(l,n); f = l;
                 is_list = 0;                  is_list = 0;
         }          }
         if ( argc(arg) == 2 && OID(ARG1(arg)) == O_OPTLIST )          if ( current_option ) {
                 parse_gr_option(f,BDY((OPTLIST)ARG1(arg)),&v,&homo,&modular,&ord);                  parse_gr_option(f,current_option,&v,&homo,&modular,&ord);
         else                  initd(ord);
           } else
                 ord = dp_current_spec;                  ord = dp_current_spec;
         initiallist = dp_initial_term(f,ord);          initiallist = dp_initial_term(f,ord);
         if ( !is_list )          if ( !is_list )
Line 1170  Obj *rp;
Line 1243  Obj *rp;
                 n = mknode(1,f); MKLIST(l,n); f = l;                  n = mknode(1,f); MKLIST(l,n); f = l;
                 is_list = 0;                  is_list = 0;
         }          }
         if ( argc(arg) == 2 && OID(ARG1(arg)) == O_OPTLIST )          if ( current_option ) {
                 parse_gr_option(f,BDY((OPTLIST)ARG1(arg)),&v,&homo,&modular,&ord);                  parse_gr_option(f,current_option,&v,&homo,&modular,&ord);
         else                  initd(ord);
           } else
                 ord = dp_current_spec;                  ord = dp_current_spec;
         ordlist = dp_order(f,ord);          ordlist = dp_order(f,ord);
         if ( !is_list )          if ( !is_list )
Line 1562  LIST *rp;
Line 1636  LIST *rp;
         if ( !BDY(f) ) {          if ( !BDY(f) ) {
                 *rp = f; return;                  *rp = f; return;
         }          }
         if ( argc(arg) == 5 ) {          if ( (ac = argc(arg)) == 5 ) {
                 asir_assert(ARG1(arg),O_LIST,"dp_gr_main");                  asir_assert(ARG1(arg),O_LIST,"dp_gr_main");
                 asir_assert(ARG2(arg),O_N,"dp_gr_main");                  asir_assert(ARG2(arg),O_N,"dp_gr_main");
                 asir_assert(ARG3(arg),O_N,"dp_gr_main");                  asir_assert(ARG3(arg),O_N,"dp_gr_main");
Line 1576  LIST *rp;
Line 1650  LIST *rp;
                 else                  else
                         modular = QTOS(m);                          modular = QTOS(m);
                 create_order_spec(0,ARG4(arg),&ord);                  create_order_spec(0,ARG4(arg),&ord);
         } else if ( (ac=argc(arg)) == 2 && OID(ARG1(arg)) == O_OPTLIST )          } else if ( current_option )
                 parse_gr_option(f,BDY((OPTLIST)ARG1(arg)),&v,&homo,&modular,&ord);                  parse_gr_option(f,current_option,&v,&homo,&modular,&ord);
         else if ( ac == 1 )          else if ( ac == 1 )
                 parse_gr_option(f,0,&v,&homo,&modular,&ord);                  parse_gr_option(f,0,&v,&homo,&modular,&ord);
         else          else
Line 1585  LIST *rp;
Line 1659  LIST *rp;
         dp_gr_main(f,v,homo,modular,0,ord,rp);          dp_gr_main(f,v,homo,modular,0,ord,rp);
 }  }
   
   void Pdp_interreduce(arg,rp)
   NODE arg;
   LIST *rp;
   {
           LIST f,v;
           VL vl;
           int ac;
           struct order_spec *ord;
   
           do_weyl = 0;
           asir_assert(ARG0(arg),O_LIST,"dp_interreduce");
           f = (LIST)ARG0(arg);
           f = remove_zero_from_list(f);
           if ( !BDY(f) ) {
                   *rp = f; return;
           }
           if ( (ac = argc(arg)) == 3 ) {
                   asir_assert(ARG1(arg),O_LIST,"dp_interreduce");
                   v = (LIST)ARG1(arg);
                   create_order_spec(0,ARG2(arg),&ord);
           }
           dp_interreduce(f,v,0,ord,rp);
   }
   
 void Pdp_gr_f_main(arg,rp)  void Pdp_gr_f_main(arg,rp)
 NODE arg;  NODE arg;
 LIST *rp;  LIST *rp;
Line 1762  LIST *rp;
Line 1860  LIST *rp;
         nd_gr(f,v,m,0,ord,rp);          nd_gr(f,v,m,0,ord,rp);
 }  }
   
   void Pnd_gr_postproc(arg,rp)
   NODE arg;
   LIST *rp;
   {
           LIST f,v;
           int m,do_check;
           struct order_spec *ord;
   
           do_weyl = 0;
           asir_assert(ARG0(arg),O_LIST,"nd_gr");
           asir_assert(ARG1(arg),O_LIST,"nd_gr");
           asir_assert(ARG2(arg),O_N,"nd_gr");
           f = (LIST)ARG0(arg); v = (LIST)ARG1(arg);
           f = remove_zero_from_list(f);
           if ( !BDY(f) ) {
                   *rp = f; return;
           }
           m = QTOS((Q)ARG2(arg));
           create_order_spec(0,ARG3(arg),&ord);
           do_check = ARG4(arg) ? 1 : 0;
           nd_gr_postproc(f,v,m,ord,do_check,rp);
   }
   
 void Pnd_gr_trace(arg,rp)  void Pnd_gr_trace(arg,rp)
 NODE arg;  NODE arg;
 LIST *rp;  LIST *rp;
Line 1783  LIST *rp;
Line 1904  LIST *rp;
         homo = QTOS((Q)ARG2(arg));          homo = QTOS((Q)ARG2(arg));
         m = QTOS((Q)ARG3(arg));          m = QTOS((Q)ARG3(arg));
         create_order_spec(0,ARG4(arg),&ord);          create_order_spec(0,ARG4(arg),&ord);
         nd_gr_trace(f,v,m,homo,ord,rp);          nd_gr_trace(f,v,m,homo,0,ord,rp);
 }  }
   
   void Pnd_f4_trace(arg,rp)
   NODE arg;
   LIST *rp;
   {
           LIST f,v;
           int m,homo;
           struct order_spec *ord;
   
           do_weyl = 0;
           asir_assert(ARG0(arg),O_LIST,"nd_gr_trace");
           asir_assert(ARG1(arg),O_LIST,"nd_gr_trace");
           asir_assert(ARG2(arg),O_N,"nd_gr_trace");
           asir_assert(ARG3(arg),O_N,"nd_gr_trace");
           f = (LIST)ARG0(arg); v = (LIST)ARG1(arg);
           f = remove_zero_from_list(f);
           if ( !BDY(f) ) {
                   *rp = f; return;
           }
           homo = QTOS((Q)ARG2(arg));
           m = QTOS((Q)ARG3(arg));
           create_order_spec(0,ARG4(arg),&ord);
           nd_gr_trace(f,v,m,homo,1,ord,rp);
   }
   
 void Pnd_weyl_gr(arg,rp)  void Pnd_weyl_gr(arg,rp)
 NODE arg;  NODE arg;
 LIST *rp;  LIST *rp;
Line 1874  LIST *rp;
Line 2019  LIST *rp;
         if ( !BDY(f) ) {          if ( !BDY(f) ) {
                 *rp = f; return;                  *rp = f; return;
         }          }
         if ( argc(arg) == 5 ) {          if ( (ac = argc(arg)) == 5 ) {
                 asir_assert(ARG1(arg),O_LIST,"dp_weyl_gr_main");                  asir_assert(ARG1(arg),O_LIST,"dp_weyl_gr_main");
                 asir_assert(ARG2(arg),O_N,"dp_weyl_gr_main");                  asir_assert(ARG2(arg),O_N,"dp_weyl_gr_main");
                 asir_assert(ARG3(arg),O_N,"dp_weyl_gr_main");                  asir_assert(ARG3(arg),O_N,"dp_weyl_gr_main");
Line 1888  LIST *rp;
Line 2033  LIST *rp;
                 else                  else
                         modular = QTOS(m);                          modular = QTOS(m);
                 create_order_spec(0,ARG4(arg),&ord);                  create_order_spec(0,ARG4(arg),&ord);
         } else if (  (ac=argc(arg)) == 2 && OID(ARG1(arg)) == O_OPTLIST )          } else if ( current_option )
                 parse_gr_option(f,BDY((OPTLIST)ARG1(arg)),&v,&homo,&modular,&ord);                  parse_gr_option(f,current_option,&v,&homo,&modular,&ord);
         else if ( ac == 1 )          else if ( ac == 1 )
                 parse_gr_option(f,0,&v,&homo,&modular,&ord);                  parse_gr_option(f,0,&v,&homo,&modular,&ord);
         else          else
Line 1994  LIST *rp;
Line 2139  LIST *rp;
         do_weyl = 0;          do_weyl = 0;
 }  }
   
 static VECT current_dl_weight_vector_obj;  VECT current_dl_weight_vector_obj;
 int *current_dl_weight_vector;  int *current_dl_weight_vector;
   
 void Pdp_set_weight(arg,rp)  void Pdp_set_weight(arg,rp)

Legend:
Removed from v.1.52  
changed lines
  Added in v.1.63

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