File: Multiroots.i

package info (click to toggle)
libmath-gsl-perl 0.49-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 192,040 kB
  • sloc: ansic: 895,452; perl: 24,787; makefile: 12
file content (19 lines) | stat: -rw-r--r-- 375 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
%module "Math::GSL::Multiroots"
%include "gsl_typemaps.i"
%include "renames.i"

%typemap(in) gsl_multiroot_function * {
    gsl_multiroot_function *f;
    /* stub */
    $1 = (gsl_multiroot_function *)&f;
}

%{
    #include "gsl/gsl_types.h"
    #include "gsl/gsl_multiroots.h"
%}

%include "gsl/gsl_types.h"
%include "gsl/gsl_multiroots.h"

%include "../pod/Multiroots.pod"