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

Diff for /OpenXM/src/ox_gsl/call_gsl.c between version 1.3 and 1.4

version 1.3, 2018/04/17 00:56:38 version 1.4, 2018/04/18 02:20:51
Line 1 
Line 1 
 /* $OpenXM: OpenXM/src/ox_gsl/call_gsl.c,v 1.2 2018/03/30 04:43:16 takayama Exp $  /* $OpenXM: OpenXM/src/ox_gsl/call_gsl.c,v 1.3 2018/04/17 00:56:38 takayama Exp $
 */  */
 //#include <gsl/gsl_types.h>  //#include <gsl/gsl_types.h>
 //#include <gsl/gsl_sys.h>  //#include <gsl/gsl_sys.h>
Line 42  void  call_gsl_sf_lngamma_complex_e() {
Line 42  void  call_gsl_sf_lngamma_complex_e() {
 cmo *Func_x=NULL;  cmo *Func_x=NULL;
 double f_x(double x,void *params) {  double f_x(double x,void *params) {
   double d;    double d;
     if (Debug) ox_printf("f_x\n");
   replace(1,"x",x);    replace(1,"x",x);
     if (Debug) ox_printf("f_x after replace x=%lg\n",x);
   if (eval_cmo(Func_x,&d)==0) GSL_ERROR("eval_cmo fails in f_x",GSL_ETOL);    if (eval_cmo(Func_x,&d)==0) GSL_ERROR("eval_cmo fails in f_x",GSL_ETOL);
     if (Debug) ox_printf("f_x(%lg) -> d=%lg\n",x,d);
   return(d);    return(d);
 }  }
 void  call_gsl_integration_qags() {  void  call_gsl_integration_qags() {
Line 74  void  call_gsl_integration_qags() {
Line 77  void  call_gsl_integration_qags() {
   b = get_double();    b = get_double();
   
   F.function = &f_x;    F.function = &f_x;
     F.params=NULL;
   
   status=gsl_integration_qags (&F, a, b, epsabs, epsrel, limit,    status=gsl_integration_qags (&F, a, b, epsabs, epsrel, limit,
                                w, &result, &error);                                 w, &result, &error);
   
 //  printf ("result          = % .18f\n", result);    if (Debug) ox_printf ("result          = % .18f\n", result);
 //  printf ("estimated error = % .18f\n", error);  //  printf ("estimated error = % .18f\n", error);
 //  printf ("intervals       = %zu\n", w->size);  //  printf ("intervals       = %zu\n", w->size);
   

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

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