[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.5 and 1.8

version 1.5, 2003/06/26 13:00:10 version 1.8, 2003/07/30 09:00:52
Line 1 
Line 1 
 /* $OpenXM: OpenXM/src/kan96xx/Kan/datatype.h,v 1.4 2003/06/26 08:14:46 takayama Exp $ */  /* $OpenXM: OpenXM/src/kan96xx/Kan/datatype.h,v 1.7 2003/07/17 07:33:03 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 160  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 */
     int *gen;           /* gen[i] == 1 --> given generators */
 };  };
   
 struct pair {  struct pair {

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

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