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

Diff for /OpenXM/src/kan96xx/Kan/option.c between version 1.10 and 1.11

version 1.10, 2003/07/30 09:00:52 version 1.11, 2003/08/19 08:02:10
Line 1 
Line 1 
 /* $OpenXM: OpenXM/src/kan96xx/Kan/option.c,v 1.9 2003/07/29 08:36:40 takayama Exp $ */  /* $OpenXM: OpenXM/src/kan96xx/Kan/option.c,v 1.10 2003/07/30 09:00:52 takayama Exp $ */
 #include <stdio.h>  #include <stdio.h>
 #include "datatype.h"  #include "datatype.h"
 #include "stackm.h"  #include "stackm.h"
Line 53  struct object KsystemVariable(ob)
Line 53  struct object KsystemVariable(ob)
   extern int SecureMode;    extern int SecureMode;
   extern int Ecart;    extern int Ecart;
   extern int EcartAutomaticHomogenization;    extern int EcartAutomaticHomogenization;
     extern int TraceLift;
   
   int n,i;    int n,i;
   struct object ob1,ob2,ob3,ob4;    struct object ob1,ob2,ob3,ob4;
Line 184  struct object KsystemVariable(ob)
Line 185  struct object KsystemVariable(ob)
         rob = KpoInteger(Ecart);          rob = KpoInteger(Ecart);
       }else if (strcmp(ob1.lc.str,"EcartAutomaticHomogenization")==0) {        }else if (strcmp(ob1.lc.str,"EcartAutomaticHomogenization")==0) {
         rob = KpoInteger(EcartAutomaticHomogenization);          rob = KpoInteger(EcartAutomaticHomogenization);
         }else if (strcmp(ob1.lc.str,"TraceLift")==0) {
           rob = KpoInteger(TraceLift);
       }else{        }else{
         warningKan("KsystemVariable():Unknown key word.\n");          warningKan("KsystemVariable():Unknown key word.\n");
       }        }
Line 308  struct object KsystemVariable(ob)
Line 311  struct object KsystemVariable(ob)
       }else if (strcmp(ob1.lc.str,"EcartAutomaticHomogenization") == 0) {        }else if (strcmp(ob1.lc.str,"EcartAutomaticHomogenization") == 0) {
         EcartAutomaticHomogenization = KopInteger(ob2);          EcartAutomaticHomogenization = KopInteger(ob2);
         rob = KpoInteger(EcartAutomaticHomogenization);          rob = KpoInteger(EcartAutomaticHomogenization);
         }else if (strcmp(ob1.lc.str,"TraceLift") == 0) {
           TraceLift = KopInteger(ob2);
           rob = KpoInteger(TraceLift);
       }else{        }else{
         warningKan("KsystemVariable():Unknown key word.\n");          warningKan("KsystemVariable():Unknown key word.\n");
       }        }

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.11

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