[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.4 and 1.5

version 1.4, 2018/03/30 08:48:23 version 1.5, 2018/04/04 01:03:59
Line 1 
Line 1 
 /* $OpenXM: OpenXM/src/ox_gsl/ox_gsl.c,v 1.3 2018/03/30 04:43:16 takayama Exp $  /* $OpenXM: OpenXM/src/ox_gsl/ox_gsl.c,v 1.4 2018/03/30 08:48:23 takayama Exp $
 */  */
   
 #include <stdio.h>  #include <stdio.h>
Line 40  void gc_free(void *p,size_t size)
Line 40  void gc_free(void *p,size_t size)
 void init_gc()  void init_gc()
 { GC_INIT();  { GC_INIT();
   mp_set_memory_functions(GC_malloc,gc_realloc,gc_free);    mp_set_memory_functions(GC_malloc,gc_realloc,gc_free);
     init_dic();  // initialize ox_eval.c
 }  }
   
 void initialize_stack()  void initialize_stack()
Line 110  int sm_mathcap()
Line 111  int sm_mathcap()
 //    CMO_DISTRIBUTED_POLYNOMIAL,  //    CMO_DISTRIBUTED_POLYNOMIAL,
 //    CMO_RECURSIVE_POLYNOMIAL,  //    CMO_RECURSIVE_POLYNOMIAL,
 //    CMO_POLYNOMIAL_IN_ONE_VARIABLE,  //    CMO_POLYNOMIAL_IN_ONE_VARIABLE,
       CMO_TREE,
     CMO_ERROR2,      CMO_ERROR2,
     0};      0};
   int available_sm_command[]={    int available_sm_command[]={
Line 291  char *get_string() {
Line 293  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() {
     cmo_tree *c;
     double d=0;
     pop();
     c = get_tree();
     if (Debug) {
       ox_printf("cmo_tree *c="); print_tree(c); ox_printf("\n");
     }
     register_entry("x",1.25);
     if (eval_cmo(c,&d) == 0) make_error2("eval_cmo failed",NULL,0,-1);
     push((cmo *)new_cmo_double(d));
   }
   
 int sm_executeFunction()  int sm_executeFunction()
 {  {
     cmo_string *func = (cmo_string *)pop();      cmo_string *func = (cmo_string *)pop();
Line 307  int sm_executeFunction()
Line 339  int sm_executeFunction()
         show_double_list();          show_double_list();
     }else if (strcmp(func->s,"restart")==0) {      }else if (strcmp(func->s,"restart")==0) {
         pop(); restart();          pop(); restart();
       }else if (strcmp(func->s,"test_ox_eval")==0) {
           test_ox_eval();
     // 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();

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

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