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

Diff for /OpenXM/src/kan96xx/Kan/extern2.h between version 1.5 and 1.12

version 1.5, 2003/07/17 07:33:03 version 1.12, 2020/10/06 11:33:46
Line 1 
Line 1 
 /* $OpenXM: OpenXM/src/kan96xx/Kan/extern2.h,v 1.4 2003/07/10 08:20:04 takayama Exp $ */  /* $OpenXM: OpenXM/src/kan96xx/Kan/extern2.h,v 1.11 2006/12/21 05:29:49 takayama Exp $ */
 /* poly.c */  /* poly.c */
 void KinitKan(void);  void KinitKan(void);
 MONOMIAL newMonomial(struct ring *ringp);  MONOMIAL newMonomial(struct ring *ringp);
Line 44  POLY modulo0(POLY f,struct ring *ringp);
Line 44  POLY modulo0(POLY f,struct ring *ringp);
 POLY modulopZ(POLY f,struct coeff *pcoeff);  POLY modulopZ(POLY f,struct coeff *pcoeff);
 struct pairOfPOLY quotientByNumber(POLY f,struct coeff *pcoeff);  struct pairOfPOLY quotientByNumber(POLY f,struct coeff *pcoeff);
 int pLength(POLY f);  int pLength(POLY f);
   struct coeff *gcdOfCoeff(POLY f);
   int coeffSizeMin(POLY f);
   POLY reduceContentOfPoly(POLY f,struct coeff **contp);
   int shouldReduceContent(POLY f,int ss);
   
   
 /* poly3.c */  /* poly3.c */
 void initT(void);  void initT(void);
 void makeTable(struct coeff *c,struct exps e[],struct ring *ringp);  void makeTable(struct coeff *c,struct exps e[],struct ring *ringp);
Line 67  int isHomogenized_vec(POLY f);
Line 72  int isHomogenized_vec(POLY f);
 int containVectorVariable(POLY f);  int containVectorVariable(POLY f);
 POLY POLYToPrincipalPart(POLY f);  POLY POLYToPrincipalPart(POLY f);
 POLY POLYToInitW(POLY f,int w[]);  POLY POLYToInitW(POLY f,int w[]);
   POLY POLYToInitWS(POLY f,int w[],int s[]);
   int ordWsAll(POLY f,int w[],int s[]);
   
 POLY polyGCD(POLY f,POLY g);  POLY polyGCD(POLY f,POLY g);
 int isTheSameRing(struct ring *rstack[], int rp, struct ring *newRingp);  int isTheSameRing(struct ring *rstack[], int rp, struct ring *newRingp);
Line 75  POLY goHomogenize(POLY f,int u[],int v[],int ds[],int 
Line 82  POLY goHomogenize(POLY f,int u[],int v[],int ds[],int 
 POLY goHomogenize11(POLY f,int ds[],int dssize,int ei,int onlyS);  POLY goHomogenize11(POLY f,int ds[],int dssize,int ei,int onlyS);
 POLY goHomogenize_dsIdx(POLY f,int u[],int v[],int dsIdx,int ei,int onlyS);  POLY goHomogenize_dsIdx(POLY f,int u[],int v[],int dsIdx,int ei,int onlyS);
 POLY goHomogenize11_dsIdx(POLY f,int ds[],int dsIdx,int ei,int onlyS);  POLY goHomogenize11_dsIdx(POLY f,int ds[],int dsIdx,int ei,int onlyS);
   struct ring *newRingOverFp(struct ring *rp, int p);
   int getPrime(int p);
   
 /* coeff.c */  /* coeff.c */
 char *intToString(int i);  char *intToString(int i);
Line 117  struct coeff *universalNumberGCD(struct coeff *a,struc
Line 126  struct coeff *universalNumberGCD(struct coeff *a,struc
 char *POLYToString(POLY f,int multSym,int brace);  char *POLYToString(POLY f,int multSym,int brace);
 int isOne(struct coeff *cp);  int isOne(struct coeff *cp);
 int isMinusOne(struct coeff *cp);  int isMinusOne(struct coeff *cp);
 int isMinusOne(struct coeff *cp);  
 int isNegative(struct coeff *cp);  int isNegative(struct coeff *cp);
 int isConstant(POLY f);  int isConstant(POLY f);
   int isConstantAll(POLY f);
 void errorOutput(char *s);  void errorOutput(char *s);
 int validOutputOrder(int w[],int n);  int validOutputOrder(int w[],int n);
   char **makeDsmall(char **dvars,int n);
   
   
 /* order.c */  /* order.c */
 void setOrderByMatrix(int order[],int n,int c, int l,int omsize);  void setOrderByMatrix(int order[],int n,int c, int l,int omsize);

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

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