| version 1.8, 2003/07/17 23:37:02 |
version 1.17, 2006/12/21 05:29:49 |
|
|
| /* $OpenXM: OpenXM/src/kan96xx/Kan/option.c,v 1.7 2003/07/17 07:33:03 takayama Exp $ */ |
/* $OpenXM: OpenXM/src/kan96xx/Kan/option.c,v 1.16 2005/06/16 05:07:23 takayama Exp $ */ |
| #include <stdio.h> |
#include <stdio.h> |
| #include "datatype.h" |
#include "datatype.h" |
| #include "stackm.h" |
#include "stackm.h" |
| Line 45 struct object KsystemVariable(ob) |
|
| Line 45 struct object KsystemVariable(ob) |
|
| extern int Homogenize_vec; |
extern int Homogenize_vec; |
| extern int CmoDMSOutputOption; |
extern int CmoDMSOutputOption; |
| extern int DebugReductionRed; /* hidden option */ |
extern int DebugReductionRed; /* hidden option */ |
| |
extern int DebugReductionEcart; |
| extern char *VersionString; |
extern char *VersionString; |
| extern int AvoidTheSameRing; |
extern int AvoidTheSameRing; |
| extern char *LeftBracket; |
extern char *LeftBracket; |
| Line 52 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; |
| |
extern int DoCancel; |
| |
extern int DebugContentReduction; |
| |
extern int QuoteMode; |
| |
extern int RestrictedMode, RestrictedMode_saved; |
| |
extern int UseDsmall; |
| |
|
| int n,i; |
int n,i; |
| struct object ob1,ob2,ob3,ob4; |
struct object ob1 = OINIT; |
| |
struct object ob2 = OINIT; |
| |
struct object ob3 = OINIT; |
| |
struct object ob4 = OINIT; |
| struct object rob = NullObject; |
struct object rob = NullObject; |
| switch (getoaSize(ob)) { |
switch (getoaSize(ob)) { |
| case 1: /* get the value */ |
case 1: /* get the value */ |
| Line 179 struct object KsystemVariable(ob) |
|
| Line 189 struct object KsystemVariable(ob) |
|
| rob = KpoString(RightBracket); |
rob = KpoString(RightBracket); |
| }else if (strcmp(ob1.lc.str,"SecureMode")==0) { |
}else if (strcmp(ob1.lc.str,"SecureMode")==0) { |
| rob = KpoInteger(SecureMode); |
rob = KpoInteger(SecureMode); |
| |
}else if (strcmp(ob1.lc.str,"RestrictedMode")==0) { |
| |
rob = KpoInteger(RestrictedMode); |
| }else if (strcmp(ob1.lc.str,"Ecart")==0) { |
}else if (strcmp(ob1.lc.str,"Ecart")==0) { |
| 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 if (strcmp(ob1.lc.str,"DoCancel")==0) { |
| |
rob = KpoInteger(DoCancel); |
| |
}else if (strcmp(ob1.lc.str,"DebugContentReduction")==0) { |
| |
rob = KpoInteger(DebugContentReduction); |
| |
}else if (strcmp(ob1.lc.str,"QuoteMode")==0) { |
| |
rob = KpoInteger(QuoteMode); |
| |
}else if (strcmp(ob1.lc.str,"UseDsmall")==0) { |
| |
rob = KpoInteger(UseDsmall); |
| }else{ |
}else{ |
| warningKan("KsystemVariable():Unknown key word.\n"); |
warningKan("KsystemVariable():Unknown key word.\n"); |
| } |
} |
| Line 288 struct object KsystemVariable(ob) |
|
| Line 310 struct object KsystemVariable(ob) |
|
| }else if (strcmp(ob1.lc.str,"DebugReductionRed") == 0) { |
}else if (strcmp(ob1.lc.str,"DebugReductionRed") == 0) { |
| DebugReductionRed = KopInteger(ob2); |
DebugReductionRed = KopInteger(ob2); |
| rob = KpoInteger(DebugReductionRed); |
rob = KpoInteger(DebugReductionRed); |
| |
}else if (strcmp(ob1.lc.str,"DebugReductionEcart") == 0) { |
| |
DebugReductionEcart = KopInteger(ob2); |
| |
rob = KpoInteger(DebugReductionEcart); |
| }else if (strcmp(ob1.lc.str,"AvoidTheSameRing") == 0) { |
}else if (strcmp(ob1.lc.str,"AvoidTheSameRing") == 0) { |
| AvoidTheSameRing = KopInteger(ob2); |
AvoidTheSameRing = KopInteger(ob2); |
| rob = KpoInteger(AvoidTheSameRing); |
rob = KpoInteger(AvoidTheSameRing); |
| Line 298 struct object KsystemVariable(ob) |
|
| Line 323 struct object KsystemVariable(ob) |
|
| errorKan1("%s\n","You cannot weaken the security level."); |
errorKan1("%s\n","You cannot weaken the security level."); |
| } |
} |
| rob = KpoInteger(SecureMode); |
rob = KpoInteger(SecureMode); |
| |
}else if (strcmp(ob1.lc.str,"RestrictedMode") == 0) { |
| |
if (KopInteger(ob2) >= RestrictedMode) { |
| |
RestrictedMode = KopInteger(ob2); |
| |
RestrictedMode_saved = RestrictedMode; |
| |
}else{ |
| |
errorKan1("%s\n","You cannot weaken the RestrictedMode level."); |
| |
} |
| |
rob = KpoInteger(RestrictedMode); |
| }else if (strcmp(ob1.lc.str,"Ecart") == 0) { |
}else if (strcmp(ob1.lc.str,"Ecart") == 0) { |
| Ecart = KopInteger(ob2); |
Ecart = KopInteger(ob2); |
| rob = KpoInteger(Ecart); |
rob = KpoInteger(Ecart); |
| }else if (strcmp(ob1.lc.str,"EcartAutomaticHomogenization") == 0) { |
}else if (strcmp(ob1.lc.str,"EcartAutomaticHomogenization") == 0) { |
| Ecart = 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 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 if (strcmp(ob1.lc.str,"QuoteMode") == 0) { |
| |
QuoteMode = KopInteger(ob2); |
| |
rob = KpoInteger(QuoteMode); |
| |
}else if (strcmp(ob1.lc.str,"UseDsmall") == 0) { |
| |
UseDsmall = KopInteger(ob2); |
| |
rob = KpoInteger(UseDsmall); |
| }else{ |
}else{ |
| warningKan("KsystemVariable():Unknown key word.\n"); |
warningKan("KsystemVariable():Unknown key word.\n"); |
| } |
} |