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

Diff for /OpenXM_contrib2/asir2018/builtin/gr.c between version 1.7 and 1.8

version 1.7, 2021/01/11 08:37:43 version 1.8, 2021/02/17 22:18:39
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/asir2018/builtin/gr.c,v 1.6 2020/12/15 07:40:09 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2018/builtin/gr.c,v 1.7 2021/01/11 08:37:43 noro Exp $
 */  */
 #include "ca.h"  #include "ca.h"
 #include "parse.h"  #include "parse.h"
Line 321  void dp_gr_main(LIST f,LIST v,Num homo,int modular,int
Line 321  void dp_gr_main(LIST f,LIST v,Num homo,int modular,int
   if ( ord->id && NVars != ord->nv )    if ( ord->id && NVars != ord->nv )
     error("dp_gr_main : invalid order specification");      error("dp_gr_main : invalid order specification");
   initd(ord);    initd(ord);
   // clear denominators    // clear denominators if the ground field is Q
   for ( r0 = 0, t = BDY(f); t; t = NEXT(t) ) {    if ( field == 0 ) {
     ptozp((P)BDY(t),1,&cont,&pp);      for ( r0 = 0, t = BDY(f); t; t = NEXT(t) ) {
     NEXTNODE(r0,r); BDY(r) = (pointer)pp;        ptozp((P)BDY(t),1,&cont,&pp);
         NEXTNODE(r0,r); BDY(r) = (pointer)pp;
       }
       if ( r0 ) NEXT(r) = 0;
       MKLIST(f,r0);
   }    }
   if ( r0 ) NEXT(r) = 0;  
   MKLIST(f,r0);  
   if ( homo ) {    if ( homo ) {
     homogenize_order(ord,NVars,&ord1);      homogenize_order(ord,NVars,&ord1);
     for ( fd0 = fi0 = 0, t = BDY(f); t; t = NEXT(t) ) {      for ( fd0 = fi0 = 0, t = BDY(f); t; t = NEXT(t) ) {

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.8

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