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

Diff for /OpenXM/src/kan96xx/Kan/extern.h between version 1.17 and 1.23

version 1.17, 2004/05/13 04:38:28 version 1.23, 2004/09/09 03:14:46
Line 1 
Line 1 
 /* $OpenXM: OpenXM/src/kan96xx/Kan/extern.h,v 1.16 2003/12/06 02:49:22 takayama Exp $ */  /* $OpenXM: OpenXM/src/kan96xx/Kan/extern.h,v 1.22 2004/09/04 11:25:58 takayama Exp $ */
 /*********** global variables for module stackmachine***************/  /*********** global variables for module stackmachine***************/
 extern int VerboseStack;  extern int VerboseStack;
 extern int DebugStack;  extern int DebugStack;
Line 90  void KsetContext(struct object contextobj);
Line 90  void KsetContext(struct object contextobj);
 void contextControl(actionOfContextControl ctl);  void contextControl(actionOfContextControl ctl);
 struct object getSuperContext(struct object contextObj) ;  struct object getSuperContext(struct object contextObj) ;
   
   /* stackmachine.c back-trace */
   void tracePushName(char *s);
   void traceClearStack(void);
   char *tracePopName(void);
   char *traceShowStack(void);
   
 /* kclass.c */  /* kclass.c */
 int initClassDataBase();  int initClassDataBase();
 void fprintClass(FILE *fp,struct object ob);  void fprintClass(FILE *fp,struct object ob);
Line 157  struct object KooLess(struct object o1,struct object o
Line 163  struct object KooLess(struct object o1,struct object o
   
 /** Conversion */  /** Conversion */
 struct object KdataConversion(struct object ob1, char *key);  struct object KdataConversion(struct object ob1, char *key);
   struct object Kto_int32(struct object ob);
 struct object KpoInteger(int i);  struct object KpoInteger(int i);
 struct object KpoString(char *s);  struct object KpoString(char *s);
 struct object KpoPOLY(POLY f);  struct object KpoPOLY(POLY f);
Line 165  struct object KpoMatrixOfPOLY(struct matrixOfPOLY *mp)
Line 172  struct object KpoMatrixOfPOLY(struct matrixOfPOLY *mp)
 struct object KpoRingp(struct ring *ringp);  struct object KpoRingp(struct ring *ringp);
 struct object KpoDouble(double a);  struct object KpoDouble(double a);
 struct object KpoUniversalNumber(struct coeff *u);  struct object KpoUniversalNumber(struct coeff *u);
   struct object KintToUniversalNumber(int n);
 #define KopInteger(o) ( (o).lc.ival )  #define KopInteger(o) ( (o).lc.ival )
 #define KopString(o)  ( (o).lc.str )  #define KopString(o)  ( (o).lc.str )
 #define KopPOLY(o)    ( (o).lc.poly )  #define KopPOLY(o)    ( (o).lc.poly )
Line 223  struct object test(struct object ob);
Line 231  struct object test(struct object ob);
 struct object Kextension(struct object ob);  struct object Kextension(struct object ob);
 struct object KgbExtension(struct object ob);  struct object KgbExtension(struct object ob);
 struct object KmpzExtension(struct object ob);  struct object KmpzExtension(struct object ob);
   struct object Krest(struct object ob);
   struct object Kjoin(struct object ob1, struct object ob2);
   
 /** Utilities */  /** Utilities */
 char *KremoveSpace(char *s);  char *KremoveSpace(char *s);
Line 259  struct object KisOrdered(struct object of);
Line 269  struct object KisOrdered(struct object of);
 struct object KvectorToSchreyer_es(struct object obarray);  struct object KvectorToSchreyer_es(struct object obarray);
 POLY objArrayToPOLY(struct object ob);  POLY objArrayToPOLY(struct object ob);
 struct object POLYtoObjArray(POLY f,int size);  struct object POLYtoObjArray(POLY f,int size);
   struct object KgetExponents(struct object obPoly,struct object type);
   
 /* hilbert.c */  /* hilbert.c */
 struct object hilberto(struct object obgb,struct object obvlist);  struct object hilberto(struct object obgb,struct object obvlist);

Legend:
Removed from v.1.17  
changed lines
  Added in v.1.23

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