1%perlcode %{
2@EXPORT_OK = qw/
3               gsl_monte_miser_integrate
4               gsl_monte_miser_alloc
5               gsl_monte_miser_init
6               gsl_monte_miser_free
7               gsl_monte_plain_integrate
8               gsl_monte_plain_alloc
9               gsl_monte_plain_init
10               gsl_monte_plain_free
11               gsl_monte_vegas_integrate
12               gsl_monte_vegas_alloc
13               gsl_monte_vegas_init
14               gsl_monte_vegas_free
15               $GSL_VEGAS_MODE_IMPORTANCE
16               $GSL_VEGAS_MODE_IMPORTANCE_ONLY
17               $GSL_VEGAS_MODE_STRATIFIED
18             /;
19%EXPORT_TAGS = ( all => [ @EXPORT_OK ] );
20
21__END__
22
23=encoding utf8
24
25=head1 NAME
26
27Math::GSL::Monte - Multidimensional Monte Carlo integration
28
29=head1 SYNOPSIS
30
31This module is not yet implemented. Patches Welcome!
32
33    use Math::GSL::Monte qw/:all/;
34
35=head1 DESCRIPTION
36
37Here is a list of all the functions in this module :
38
39=over
40
41=item * C<gsl_monte_miser_integrate >
42
43=item * C<gsl_monte_miser_alloc >
44
45=item * C<gsl_monte_miser_init >
46
47=item * C<gsl_monte_miser_free >
48
49=item * C<gsl_monte_plain_integrate >
50
51=item * C<gsl_monte_plain_alloc >
52
53=item * C<gsl_monte_plain_init >
54
55=item * C<gsl_monte_plain_free >
56
57=item * C<gsl_monte_vegas_integrate >
58
59=item * C<gsl_monte_vegas_alloc >
60
61=item * C<gsl_monte_vegas_init >
62
63=item * C<gsl_monte_vegas_free >
64
65=back
66
67This module also includes the following constants :
68
69=over
70
71=item * $GSL_VEGAS_MODE_IMPORTANCE
72
73=item * $GSL_VEGAS_MODE_IMPORTANCE_ONLY
74
75=item * $GSL_VEGAS_MODE_STRATIFIED
76
77=back
78
79For more informations on the functions, we refer you to the GSL official
80documentation: L<http://www.gnu.org/software/gsl/manual/html_node/>
81
82=head1 AUTHORS
83
84Jonathan "Duke" Leto <jonathan@leto.net> and Thierry Moisan <thierry.moisan@gmail.com>
85
86=head1 COPYRIGHT AND LICENSE
87
88Copyright (C) 2008-2021 Jonathan "Duke" Leto and Thierry Moisan
89
90This program is free software; you can redistribute it and/or modify it
91under the same terms as Perl itself.
92
93=cut
94
95
96%}
97
98