version 1.6, 2003/07/10 05:01:41 |
version 1.10, 2003/07/30 09:00:52 |
|
|
/* $OpenXM: OpenXM/src/kan96xx/Kan/option.c,v 1.5 2001/05/04 01:06:24 takayama Exp $ */ |
/* $OpenXM: OpenXM/src/kan96xx/Kan/option.c,v 1.9 2003/07/29 08:36:40 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; |
extern char *RightBracket; |
extern char *RightBracket; |
extern int SecureMode; |
extern int SecureMode; |
extern int TangentCone; |
extern int Ecart; |
|
extern int EcartAutomaticHomogenization; |
|
|
int n,i; |
int n,i; |
struct object ob1,ob2,ob3,ob4; |
struct object ob1,ob2,ob3,ob4; |
Line 178 struct object KsystemVariable(ob) |
|
Line 180 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,"TangentCone")==0) { |
}else if (strcmp(ob1.lc.str,"Ecart")==0) { |
rob = KpoInteger(TangentCone); |
rob = KpoInteger(Ecart); |
|
}else if (strcmp(ob1.lc.str,"EcartAutomaticHomogenization")==0) { |
|
rob = KpoInteger(EcartAutomaticHomogenization); |
}else{ |
}else{ |
warningKan("KsystemVariable():Unknown key word.\n"); |
warningKan("KsystemVariable():Unknown key word.\n"); |
} |
} |
Line 285 struct object KsystemVariable(ob) |
|
Line 289 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 295 struct object KsystemVariable(ob) |
|
Line 302 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,"TangentCone") == 0) { |
}else if (strcmp(ob1.lc.str,"Ecart") == 0) { |
TangentCone = KopInteger(ob2); |
Ecart = KopInteger(ob2); |
rob = KpoInteger(TangentCone); |
rob = KpoInteger(Ecart); |
|
}else if (strcmp(ob1.lc.str,"EcartAutomaticHomogenization") == 0) { |
|
EcartAutomaticHomogenization = KopInteger(ob2); |
|
rob = KpoInteger(EcartAutomaticHomogenization); |
}else{ |
}else{ |
warningKan("KsystemVariable():Unknown key word.\n"); |
warningKan("KsystemVariable():Unknown key word.\n"); |
} |
} |