[BACK]Return to datatype.h CVS log [TXT][DIR] Up to [local] / OpenXM / src / kan96xx / Kan

Diff for /OpenXM/src/kan96xx/Kan/datatype.h between version 1.10 and 1.13

version 1.10, 2004/09/13 11:24:11 version 1.13, 2010/01/27 15:10:08
Line 1 
Line 1 
 /* $OpenXM: OpenXM/src/kan96xx/Kan/datatype.h,v 1.9 2003/08/19 08:02:09 takayama Exp $ */  /* $OpenXM: OpenXM/src/kan96xx/Kan/datatype.h,v 1.12 2006/12/21 05:29:49 takayama Exp $ */
 #include "gmp.h"  #include "gmp.h"
   
 /* GC */  /* GC */
 void *GC_malloc(size_t size);  void *GC_malloc(size_t size);
 void *GC_realloc(void *p,size_t new);  void *GC_realloc(void *p,size_t new);
 void *sGC_malloc(size_t size);  void *sGC_malloc(size_t size);
   void *sGC_realloc(void *p,size_t new);
 void *sGC_realloc2(void *p,size_t old,size_t new);  void *sGC_realloc2(void *p,size_t old,size_t new);
 void sGC_free2(void *p,size_t size);  void sGC_free2(void *p,size_t size);
 void sGC_free(void *p);  void sGC_free(void *p);
Line 64  struct ring {
Line 65  struct ring {
   int cc;    int cc;
   char **x;    char **x;
   char **D;    char **D;
     char **Dsmall;
   int *order;   /* [i][j] ---> [i*2*N+j] */    int *order;   /* [i][j] ---> [i*2*N+j] */
   int orderMatrixSize;    int orderMatrixSize;
   int *from;    int *from;
Line 187  struct gradedPolySet {
Line 189  struct gradedPolySet {
   struct polySet **polys;  /* polys[0]: grade=0, polys[1]:grade=1, ... */    struct polySet **polys;  /* polys[0]: grade=0, polys[1]:grade=1, ... */
   int maxGrade;            /* maximal grade in this set */    int maxGrade;            /* maximal grade in this set */
   int lim;    int lim;
     int gb;  /* it is gb or not. */
     int reduced; /* it is reduced gb or not. */
 };  };
   
 struct gradedPairs {  struct gradedPairs {

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.13

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