[BACK]Return to parif.c CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2000 / builtin

Diff for /OpenXM_contrib2/asir2000/builtin/parif.c between version 1.32 and 1.37

version 1.32, 2015/08/21 06:00:29 version 1.37, 2017/08/30 09:40:30
Line 1 
Line 1 
 /* $OpenXM: OpenXM_contrib2/asir2000/builtin/parif.c,v 1.31 2015/08/20 08:42:07 noro Exp $ */  /* $OpenXM: OpenXM_contrib2/asir2000/builtin/parif.c,v 1.36 2017/03/31 06:10:13 ohara Exp $ */
 #include "ca.h"  #include "ca.h"
 #include "parse.h"  #include "parse.h"
 #include "ox.h"  #include "ox.h"
Line 6 
Line 6 
 Q ox_pari_stream;  Q ox_pari_stream;
 int ox_pari_stream_initialized = 0;  int ox_pari_stream_initialized = 0;
 int ox_get_pari_result = 0;  int ox_get_pari_result = 0;
   P ox_pari_starting_function = 0;
   
 typedef void (*mpfr_func)(NODE,Obj *);  typedef void (*mpfr_func)(NODE,Obj *);
   
Line 103  void reset_ox_pari()
Line 104  void reset_ox_pari()
 pointer evalparif(FUNC f,NODE arg)  pointer evalparif(FUNC f,NODE arg)
 {  {
   int ac,intarg,opt,prec;    int ac,intarg,opt,prec;
   Q q,r,narg;    Q q,r,narg,cmd;
     Real sec;
   NODE nd,oxarg,t,t1,n;    NODE nd,oxarg,t,t1,n;
   STRING name;    STRING name;
   USINT ui;    USINT ui;
     LIST list;
   Obj ret,dmy;    Obj ret,dmy;
   mpfr_func mpfr_function;    mpfr_func mpfr_function;
     V v;
   
   if ( arg && ARG0(arg) && NID((Num)ARG0(arg)) != N_C    if ( arg && ARG0(arg) && NID((Num)ARG0(arg)) != N_C
     && (mpfr_function = mpfr_search(f->name)) ) {      && (mpfr_function = mpfr_search(f->name)) ) {
Line 117  pointer evalparif(FUNC f,NODE arg)
Line 121  pointer evalparif(FUNC f,NODE arg)
   }    }
   
   if ( !ox_pari_stream_initialized ) {    if ( !ox_pari_stream_initialized ) {
           if ( ox_pari_starting_function && OID(ox_pari_starting_function) == O_P ) {
                   v = VR(ox_pari_starting_function);
                   if ( (int)v->attr != V_SR ) {
                           error("pari : no handler.");
                   }
                   MKNODE(nd,0,0);
                   r = (Q)bevalf((FUNC)v->priv,0);
           }else {
   #if !defined(VISUAL)
         MKSTR(name,"ox_pari");          MKSTR(name,"ox_pari");
         nd = mknode(2,NULL,name);          nd = mknode(2,NULL,name);
         Pox_launch_nox(nd,&r);          Pox_launch_nox(nd,&r);
   #else
           error("Please load names.rr from latest asir-contrib library before using pari functions.");
   #endif
           }
         ox_pari_stream = r;          ox_pari_stream = r;
     ox_pari_stream_initialized = 1;      ox_pari_stream_initialized = 1;
   }    }
Line 138  pointer evalparif(FUNC f,NODE arg)
Line 155  pointer evalparif(FUNC f,NODE arg)
   STOQ(ac,narg);    STOQ(ac,narg);
   oxarg = mknode(3,ox_pari_stream,name,narg);    oxarg = mknode(3,ox_pari_stream,name,narg);
   Pox_execute_function(oxarg,&dmy);    Pox_execute_function(oxarg,&dmy);
   oxarg = mknode(1,ox_pari_stream);  
   ox_get_pari_result = 1;    ox_get_pari_result = 1;
   #if defined(VISUAL) || defined(__MINGW32__)
   #define SM_popCMO 262
     STOQ(SM_popCMO,cmd);
     oxarg = mknode(2,ox_pari_stream,cmd);
     Pox_push_cmd(oxarg,&dmy);
     nd = mknode(1,ox_pari_stream);
     MKLIST(list,nd);
     MKReal(1.0/8,sec);
     oxarg = mknode(2,list,sec);
     ret=0;
     do {
             check_intr();
             Pox_select(oxarg,&list);
             oxarg = mknode(1,list);
             Plength(oxarg,&ret);
     }while (!ret);
     oxarg = mknode(1,ox_pari_stream);
     Pox_get(oxarg,&ret);
   #else
     oxarg = mknode(1,ox_pari_stream);
   Pox_pop_cmo(oxarg,&ret);    Pox_pop_cmo(oxarg,&ret);
   #endif
   ox_get_pari_result = 0;    ox_get_pari_result = 0;
   if ( ret && OID(ret) == O_ERR ) {    if ( ret && OID(ret) == O_ERR ) {
     char buf[BUFSIZ];      char buf[BUFSIZ];
Line 163  struct pariftab {
Line 200  struct pariftab {
   
 /*  /*
  * type = 1 => argc = 1, second arg = precision   * type = 1 => argc = 1, second arg = precision
  * type = 2 => argc = 1, second arg = optional (long int)   * type = 2 => argc = 1, second arg = (long int)0
  *   *
  */   */
 /*  /*

Legend:
Removed from v.1.32  
changed lines
  Added in v.1.37

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