=================================================================== RCS file: /home/cvs/OpenXM_contrib2/asir2000/builtin/ctrl.c,v retrieving revision 1.17 retrieving revision 1.40 diff -u -p -r1.17 -r1.40 --- OpenXM_contrib2/asir2000/builtin/ctrl.c 2003/02/14 22:29:07 1.17 +++ OpenXM_contrib2/asir2000/builtin/ctrl.c 2013/01/30 08:03:18 1.40 @@ -45,7 +45,7 @@ * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE, * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE. * - * $OpenXM: OpenXM_contrib2/asir2000/builtin/ctrl.c,v 1.16 2002/01/04 17:08:22 saito Exp $ + * $OpenXM: OpenXM_contrib2/asir2000/builtin/ctrl.c,v 1.39 2009/02/05 08:37:02 ohara Exp $ */ #include "ca.h" #include "parse.h" @@ -54,54 +54,80 @@ void Pctrl(); struct ftab ctrl_tab[] = { {"ctrl",Pctrl,-2}, + {"asir_env",Pctrl,-2}, {0,0,0}, }; +extern int error_in_timer; extern int prtime,nez,echoback,bigfloat; -extern int GC_free_space_numerator,GC_free_space_divisor,debug_up,no_prompt; +extern int debug_up; extern int GC_max_heap_size,Verbose,hideargs,hex_output,do_server_in_X11; -extern int do_message; +extern int do_message,do_terse; extern int ox_batch,ox_check,ox_exchange_mathcap; extern int f4_nocheck; extern int StrassenSize; +extern int outputstyle; extern int fortran_output; extern int real_digit; +extern int real_binary; +extern int allow_laurent; #if defined(INTERVAL) extern int zerorewrite; +extern int Itvplot; #endif extern int double_output; extern int use_new_hensel; extern int print_quote; +extern int show_crossref; +extern Obj user_defined_prompt; +extern int asir_setenv; +extern int show_orderspec; +extern int no_debug_on_error; +extern int diag_period; +extern int weight_check; static struct { char *key; int *val; } ctrls[] = { + {"error_in_timer",&error_in_timer}, {"cputime",&prtime}, {"nez",&nez}, {"echo",&echoback}, -#if defined(DO_PLOT) +#if defined(PARI) {"bigfloat",&bigfloat}, #endif {"verbose",&Verbose}, + {"quiet_mode",&do_quiet}, {"hideargs",&hideargs}, {"hex",&hex_output}, {"debug_window",&do_server_in_X11}, {"message",&do_message}, + {"terse",&do_terse}, {"debug_up",&debug_up}, - {"no_prompt",&no_prompt}, + {"no_prompt",&do_quiet}, + {"asir_setenv",&asir_setenv}, {"ox_batch",&ox_batch}, {"ox_check",&ox_check}, {"ox_exchange_mathcap",&ox_exchange_mathcap}, {"f4_nocheck",&f4_nocheck}, {"StrassenSize",&StrassenSize}, + {"outputstyle",&outputstyle}, {"double_output",&double_output}, {"real_digit",&real_digit}, + {"real_binary",&real_binary}, {"fortran_output",&fortran_output}, {"new_hensel",&use_new_hensel}, {"print_quote",&print_quote}, + {"show_crossref",&show_crossref}, + {"allow_laurent",&allow_laurent}, + {"show_orderspec",&show_orderspec}, + {"no_debug_on_error",&no_debug_on_error}, + {"diag_period",&diag_period}, + {"weight_check",&weight_check}, #if defined(INTERVAL) {"zerorewrite",&zerorewrite}, + {"itvplotsize",&Itvplot}, #endif {0,0}, }; @@ -110,11 +136,13 @@ void Pctrl(arg,rp) NODE arg; Q *rp; { - int t,i; + int t,i,n; + int nm,dv; N num,den; Q c; char *key; char buf[BUFSIZ]; + char *str; if ( !arg ) { *rp = 0; @@ -124,18 +152,49 @@ Q *rp; if ( !strcmp(key,"adj") ) { /* special treatment is necessary for "adj" */ if ( argc(arg) == 1 ) { - UTON(GC_free_space_divisor,num); - UTON(GC_free_space_numerator,den); + Risa_GC_get_adj(&nm,&dv); + UTON(dv,num); + UTON(nm,den); } else { c = (Q)ARG1(arg); if ( !c ) error("ctrl : adj : invalid argument"); num = NM(c); den = !DN(c)?ONEN:DN(c); - GC_free_space_divisor = BD(num)[0]; - GC_free_space_numerator = BD(den)[0]; + dv = BD(num)[0]; + nm = BD(den)[0]; + Risa_GC_set_adj(nm,dv); } NDTOQ(num,den,1,*rp); + return; + } else if ( !strcmp(key,"prompt") ) { + /* special treatment is necessary for "prompt" */ + if ( argc(arg) == 1 ) { + if ((!do_quiet) && (user_defined_prompt == (Obj)0)) *rp=ONE; + else *rp = (Q)user_defined_prompt; + } else { + c = (Q)ARG1(arg); + if ( !c ) { + do_quiet = 1; + user_defined_prompt = 0; + *rp = 0; + } else if ( OID(c) == O_STR ) { + str = BDY((STRING)c); + for ( i = 0, n = 0; str[i]; i++ ) + if ( str[i] == '%' ) + n++; + if ( n >= 2 ) + error("ctrl : prompt : invalid prompt specification"); + do_quiet = 1; + user_defined_prompt = (Obj)c; + *rp = c; + } else if ( NUM(c) && RATN(c) && UNIQ(c) ) { + user_defined_prompt = 0; + do_quiet = 0; + } else { + error("ctrl : prompt : invalid argument"); + } + } return; } for ( i = 0; ctrls[i].key; i++ )