| version 1.24, 2003/10/20 09:17:52 |
version 1.35, 2005/02/17 03:12:19 |
|
|
| * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE, |
* DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE, |
| * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE. |
* PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE. |
| * |
* |
| * $OpenXM: OpenXM_contrib2/asir2000/builtin/ctrl.c,v 1.23 2003/10/19 02:54:41 ohara Exp $ |
* $OpenXM: OpenXM_contrib2/asir2000/builtin/ctrl.c,v 1.34 2004/12/15 22:51:40 noro Exp $ |
| */ |
*/ |
| #include "ca.h" |
#include "ca.h" |
| #include "parse.h" |
#include "parse.h" |
|
|
| |
|
| struct ftab ctrl_tab[] = { |
struct ftab ctrl_tab[] = { |
| {"ctrl",Pctrl,-2}, |
{"ctrl",Pctrl,-2}, |
| |
{"asir_env",Pctrl,-2}, |
| {0,0,0}, |
{0,0,0}, |
| }; |
}; |
| |
|
| |
extern int error_in_timer; |
| extern int prtime,nez,echoback,bigfloat; |
extern int prtime,nez,echoback,bigfloat; |
| extern int GC_free_space_numerator,GC_free_space_divisor,debug_up; |
extern int GC_free_space_numerator,GC_free_space_divisor,debug_up; |
| extern int GC_max_heap_size,Verbose,hideargs,hex_output,do_server_in_X11; |
extern int GC_max_heap_size,Verbose,hideargs,hex_output,do_server_in_X11; |
| Line 67 extern int StrassenSize; |
|
| Line 69 extern int StrassenSize; |
|
| extern int outputstyle; |
extern int outputstyle; |
| extern int fortran_output; |
extern int fortran_output; |
| extern int real_digit; |
extern int real_digit; |
| |
extern int real_binary; |
| |
extern int allow_laurent; |
| #if defined(INTERVAL) |
#if defined(INTERVAL) |
| extern int zerorewrite; |
extern int zerorewrite; |
| #endif |
#endif |
| Line 75 extern int use_new_hensel; |
|
| Line 79 extern int use_new_hensel; |
|
| extern int print_quote; |
extern int print_quote; |
| extern int show_crossref; |
extern int show_crossref; |
| extern Obj user_defined_prompt; |
extern Obj user_defined_prompt; |
| |
extern int asir_setenv; |
| |
extern int show_orderspec; |
| |
extern int no_debug_on_error; |
| |
|
| static struct { |
static struct { |
| char *key; |
char *key; |
| int *val; |
int *val; |
| } ctrls[] = { |
} ctrls[] = { |
| |
{"error_in_timer",&error_in_timer}, |
| {"cputime",&prtime}, |
{"cputime",&prtime}, |
| {"nez",&nez}, |
{"nez",&nez}, |
| {"echo",&echoback}, |
{"echo",&echoback}, |
| #if defined(DO_PLOT) |
#if defined(PARI) |
| {"bigfloat",&bigfloat}, |
{"bigfloat",&bigfloat}, |
| #endif |
#endif |
| {"verbose",&Verbose}, |
{"verbose",&Verbose}, |
|
|
| {"message",&do_message}, |
{"message",&do_message}, |
| {"debug_up",&debug_up}, |
{"debug_up",&debug_up}, |
| {"no_prompt",&do_quiet}, |
{"no_prompt",&do_quiet}, |
| |
{"asir_setenv",&asir_setenv}, |
| {"ox_batch",&ox_batch}, |
{"ox_batch",&ox_batch}, |
| {"ox_check",&ox_check}, |
{"ox_check",&ox_check}, |
| {"ox_exchange_mathcap",&ox_exchange_mathcap}, |
{"ox_exchange_mathcap",&ox_exchange_mathcap}, |
|
|
| {"outputstyle",&outputstyle}, |
{"outputstyle",&outputstyle}, |
| {"double_output",&double_output}, |
{"double_output",&double_output}, |
| {"real_digit",&real_digit}, |
{"real_digit",&real_digit}, |
| |
{"real_binary",&real_binary}, |
| {"fortran_output",&fortran_output}, |
{"fortran_output",&fortran_output}, |
| {"new_hensel",&use_new_hensel}, |
{"new_hensel",&use_new_hensel}, |
| {"print_quote",&print_quote}, |
{"print_quote",&print_quote}, |
| {"show_crossref",&show_crossref}, |
{"show_crossref",&show_crossref}, |
| |
{"allow_laurent",&allow_laurent}, |
| |
{"show_orderspec",&show_orderspec}, |
| |
{"no_debug_on_error",&no_debug_on_error}, |
| #if defined(INTERVAL) |
#if defined(INTERVAL) |
| {"zerorewrite",&zerorewrite}, |
{"zerorewrite",&zerorewrite}, |
| #endif |
#endif |
|
|
| } else if ( !strcmp(key,"prompt") ) { |
} else if ( !strcmp(key,"prompt") ) { |
| /* special treatment is necessary for "prompt" */ |
/* special treatment is necessary for "prompt" */ |
| if ( argc(arg) == 1 ) { |
if ( argc(arg) == 1 ) { |
| *rp = (Q)user_defined_prompt; |
if ((!do_quiet) && (user_defined_prompt == (Obj)0)) *rp=ONE; |
| |
else *rp = (Q)user_defined_prompt; |
| } else { |
} else { |
| c = (Q)ARG1(arg); |
c = (Q)ARG1(arg); |
| if ( !c || OID(c) == O_STR ) { |
if ( !c ) { |
| if ( OID(c) == O_STR ) { |
do_quiet = 1; |
| str = BDY((STRING)c); |
user_defined_prompt = 0; |
| for ( i = 0, n = 0; str[i]; i++ ) |
*rp = 0; |
| if ( str[i] == '%' ) |
} else if ( OID(c) == O_STR ) { |
| n++; |
str = BDY((STRING)c); |
| if ( n >= 2 ) |
for ( i = 0, n = 0; str[i]; i++ ) |
| error("ctrl : prompt : invalid prompt specification"); |
if ( str[i] == '%' ) |
| } |
n++; |
| |
if ( n >= 2 ) |
| |
error("ctrl : prompt : invalid prompt specification"); |
| do_quiet = 1; |
do_quiet = 1; |
| user_defined_prompt = (Obj)c; |
user_defined_prompt = (Obj)c; |
| *rp = c; |
*rp = c; |