File: Integration.i

package info (click to toggle)
libmath-gsl-perl 0.45-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 192,156 kB
  • sloc: ansic: 895,524; perl: 24,682; makefile: 12
file content (23 lines) | stat: -rw-r--r-- 478 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
%module "Math::GSL::Integration"
%include "typemaps.i"
%include "gsl_typemaps.i"
%include "renames.i"

%{
    #ifndef GSL_VAR
    #include "gsl/gsl_types.h"
    #endif

    #include "gsl/gsl_integration.h"
    #include "gsl/gsl_math.h"
%}
#ifndef GSL_VAR
%include "gsl/gsl_types.h"
#endif
#if MG_GSL_NUM_VERSION >= 2008
    %include "gsl/gsl_integration.h"
#else
    %include "legacy/gsl-2.7/gsl_integration.h"
#endif
%include "gsl/gsl_math.h"
%include "../pod/Integration.pod"