=================================================================== RCS file: /home/cvs/OpenXM/src/kan96xx/Kan/option.c,v retrieving revision 1.11 retrieving revision 1.13 diff -u -p -r1.11 -r1.13 --- OpenXM/src/kan96xx/Kan/option.c 2003/08/19 08:02:10 1.11 +++ OpenXM/src/kan96xx/Kan/option.c 2003/08/21 02:30:23 1.13 @@ -1,4 +1,4 @@ -/* $OpenXM: OpenXM/src/kan96xx/Kan/option.c,v 1.10 2003/07/30 09:00:52 takayama Exp $ */ +/* $OpenXM: OpenXM/src/kan96xx/Kan/option.c,v 1.12 2003/08/20 01:39:17 takayama Exp $ */ #include #include "datatype.h" #include "stackm.h" @@ -54,6 +54,8 @@ struct object KsystemVariable(ob) extern int Ecart; extern int EcartAutomaticHomogenization; extern int TraceLift; + extern int DoCancel; + extern int DebugContentReduction; int n,i; struct object ob1,ob2,ob3,ob4; @@ -187,6 +189,10 @@ struct object KsystemVariable(ob) rob = KpoInteger(EcartAutomaticHomogenization); }else if (strcmp(ob1.lc.str,"TraceLift")==0) { rob = KpoInteger(TraceLift); + }else if (strcmp(ob1.lc.str,"DoCancel")==0) { + rob = KpoInteger(DoCancel); + }else if (strcmp(ob1.lc.str,"DebugContentReduction")==0) { + rob = KpoInteger(DebugContentReduction); }else{ warningKan("KsystemVariable():Unknown key word.\n"); } @@ -314,6 +320,12 @@ struct object KsystemVariable(ob) }else if (strcmp(ob1.lc.str,"TraceLift") == 0) { TraceLift = KopInteger(ob2); rob = KpoInteger(TraceLift); + }else if (strcmp(ob1.lc.str,"DoCancel") == 0) { + DoCancel = KopInteger(ob2); + rob = KpoInteger(DoCancel); + }else if (strcmp(ob1.lc.str,"DebugContentReduction") == 0) { + DebugContentReduction = KopInteger(ob2); + rob = KpoInteger(DebugContentReduction); }else{ warningKan("KsystemVariable():Unknown key word.\n"); }