First working typemaps are in Poly subsystem. Still fighting with Randist...
[Math-GSL.git] / ODEIV.i
blobe41445e00241ac6c33b56963f4cd5ae7b0d45dd0
1 %module ODEIV
2 %{
3 #include "/usr/local/include/gsl/gsl_odeiv.h"
4 %}
6 %import "/usr/local/include/gsl/gsl_types.h"
7 %include "/usr/local/include/gsl/gsl_odeiv.h"
9 %perlcode %{
11 @EXPORT_OK = qw/
12 gsl_odeiv_step_alloc gsl_odeiv_step_reset gsl_odeiv_step_free
13 gsl_odeiv_step_name gsl_odeiv_step_order gsl_odeiv_step_apply
14 gsl_odeiv_control_alloc gsl_odeiv_control_init gsl_odeiv_control_free
15 gsl_odeiv_control_hadjust gsl_odeiv_control_name gsl_odeiv_control_standard_new
16 gsl_odeiv_control_y_new gsl_odeiv_control_yp_new gsl_odeiv_control_scaled_new
17 gsl_odeiv_evolve_alloc gsl_odeiv_evolve_apply gsl_odeiv_evolve_reset
18 gsl_odeiv_evolve_free
21 %EXPORT_TAGS = ( all => [ @EXPORT_OK ] );