[BACK]Return to ox_gsl.c CVS log [TXT][DIR] Up to [local] / OpenXM / src / ox_gsl

Diff for /OpenXM/src/ox_gsl/ox_gsl.c between version 1.5 and 1.11

version 1.5, 2018/04/04 01:03:59 version 1.11, 2018/06/06 07:40:32
Line 1 
Line 1 
 /* $OpenXM: OpenXM/src/ox_gsl/ox_gsl.c,v 1.4 2018/03/30 08:48:23 takayama Exp $  /* $OpenXM: OpenXM/src/ox_gsl/ox_gsl.c,v 1.10 2018/06/04 06:39:26 ohara Exp $
 */  */
   
 #include <stdio.h>  #include <stdio.h>
Line 6 
Line 6 
 #include <setjmp.h>  #include <setjmp.h>
 #include <string.h>  #include <string.h>
 #include <unistd.h>  #include <unistd.h>
   #include <signal.h>
 #include <math.h>  #include <math.h>
 #include "ox_gsl.h"  #include "ox_gsl.h"
 #include "call_gsl.h" // need only when you bind call_gsl functions.  #include "call_gsl.h" // need only when you bind call_gsl functions.
Line 293  char *get_string() {
Line 294  char *get_string() {
   return(NULL);    return(NULL);
 }  }
   
 cmo_tree *get_tree() {  
   cmo *c;  
   c = pop();  
   if (c->tag == CMO_TREE) {  
     return ((cmo_tree *)c);  
   }  
   make_error2("cmo_tree is expected",NULL,0,-1);  
   return(NULL);  
 }  
 void print_tree(cmo_tree *c) {  
   if (c->tag != CMO_TREE) {  
     printf("Error: argument is not CMO_TREE\n");  
     return;  
   }  
   ox_printf("(name="); print_cmo((cmo *)(c->name)); ox_printf(",");  
   ox_printf("leaves="); print_cmo((cmo *)(c->leaves)); ox_printf(")");  
 }  
 void test_ox_eval() {  void test_ox_eval() {
   cmo_tree *c;    cmo *c;
   double d=0;    double d=0;
   pop();    pop();
   c = get_tree();    c=pop();
   if (Debug) {    if (Debug) {
     ox_printf("cmo_tree *c="); print_tree(c); ox_printf("\n");      ox_printf("cmo *c="); print_cmo(c); ox_printf("\n");
   }    }
     init_dic();
   register_entry("x",1.25);    register_entry("x",1.25);
   if (eval_cmo(c,&d) == 0) make_error2("eval_cmo failed",NULL,0,-1);    if (eval_cmo(c,&d) == 0) myhandler("eval_cmo failed",NULL,0,-1);
   push((cmo *)new_cmo_double(d));    push((cmo *)new_cmo_double(d));
 }  }
   
Line 330  int sm_executeFunction()
Line 315  int sm_executeFunction()
         push(make_error2("sm_executeFunction, not CMO_STRING",NULL,0,-1));          push(make_error2("sm_executeFunction, not CMO_STRING",NULL,0,-1));
         return -1;          return -1;
     }      }
       init_dic();
     // Test functions      // Test functions
     if (strcmp(func->s, "add_int32") == 0) {      if (strcmp(func->s, "add_int32") == 0) {
         my_add_int32();          my_add_int32();
Line 344  int sm_executeFunction()
Line 330  int sm_executeFunction()
     // The following functions are defined in call_gsl.c      // The following functions are defined in call_gsl.c
     }else if (strcmp(func->s,"gsl_sf_lngamma_complex_e")==0) {      }else if (strcmp(func->s,"gsl_sf_lngamma_complex_e")==0) {
         call_gsl_sf_lngamma_complex_e();          call_gsl_sf_lngamma_complex_e();
       }else if (strcmp(func->s,"gsl_integration_qags")==0) {
           call_gsl_integration_qags();
       }else if (strcmp(func->s,"gsl_monte_plain_integrate")==0) {
           call_gsl_monte_plain_integrate();
     }else {      }else {
         push(make_error2("sm_executeFunction, unknown function",NULL,0,-1));          push(make_error2("sm_executeFunction, unknown function",NULL,0,-1));
         return -1;          return -1;
Line 467  int main()
Line 457  int main()
     fd_rw = oxf_open(3);      fd_rw = oxf_open(3);
     oxf_determine_byteorder_server(fd_rw);      oxf_determine_byteorder_server(fd_rw);
   }    }
   #if defined(__CYGWIN__)
     void *mysignal(int sig,void (*handler)(int m));
     mysignal(SIGUSR1,usr1_handler);
   #else
   signal(SIGUSR1,usr1_handler);    signal(SIGUSR1,usr1_handler);
   #endif
   
   while(1) {    while(1) {
     receive();      receive();

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.11

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