[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.4 and 1.7

version 1.4, 2003/06/26 08:14:46 version 1.7, 2003/07/17 07:33:03
Line 1 
Line 1 
 /* $OpenXM: OpenXM/src/kan96xx/Kan/datatype.h,v 1.3 2002/09/08 10:49:49 takayama Exp $ */  /* $OpenXM: OpenXM/src/kan96xx/Kan/datatype.h,v 1.6 2003/07/10 08:20:04 takayama Exp $ */
 #include "gmp.h"  #include "gmp.h"
   
 /* GC */  /* GC */
Line 29  void KSstop();
Line 29  void KSstop();
                         must be larger than AGLIMIT. They are automatically                          must be larger than AGLIMIT. They are automatically
                         determined by the value of AGLIMIT. */                          determined by the value of AGLIMIT. */
   
   #define LARGE_NEGATIVE_NUMBER (-0x7fffffff)  /* for 32 bit */
   
 typedef struct listPoly *   POLY;  typedef struct listPoly *   POLY;
 typedef struct monomial *   MONOMIAL;  typedef struct monomial *   MONOMIAL;
Line 75  struct ring {
Line 76  struct ring {
   char *name;    char *name;
   int weightedHomogenization;    int weightedHomogenization;
   int degreeShiftSize;    int degreeShiftSize;
     int degreeShiftN;
   int *degreeShift;    int *degreeShift;
 };  };
   
Line 159  struct polySet {
Line 161  struct polySet {
   int *mark;          /* if (mark[i]), then syz[i] is simplified. */    int *mark;          /* if (mark[i]), then syz[i] is simplified. */
   int *serial;        /* serial[i]=k ===> g[i] is input[k] */    int *serial;        /* serial[i]=k ===> g[i] is input[k] */
   int size;           /* size of this set. i.e., g[0], g[1], ..., g[size-1] */    int size;           /* size of this set. i.e., g[0], g[1], ..., g[size-1] */
   int lim;    int lim;
     POLY *gh;           /* gh[i] = homogenize(g[i]) for ecart division */
 };  };
   
 struct pair {  struct pair {

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

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