Apply nan/inf handling patch from Sisyphus
[Math-GSL.git] / Siman.i
blobf2978efe492b95c6f6c2997eff1b714751ffda91
1 %module "Math::GSL::Siman"
2 %{
3 #include "gsl/gsl_siman.h"
4 %}
6 %include "gsl/gsl_siman.h"
9 %perlcode %{
10 @EXPORT_OK = qw/
11 gsl_siman_solve
12 gsl_siman_solve_many
14 %EXPORT_TAGS = ( all => [ @EXPORT_OK ] );
16 __END__
18 =head1 NAME
20 Math::GSL::Siman - Simulated Annealing
22 =head1 SYNOPSIS
24 This module is not yet implemented. Patches Welcome!
26 use Math::GSL::Siman qw /:all/;
28 =head1 DESCRIPTION
30 Here is a list of all the functions in this module :
32 =over
34 =item * C<gsl_siman_solve >
36 =item * C<gsl_siman_solve_many >
38 =back
41 For more informations on the functions, we refer you to the GSL offcial
42 documentation: L<http://www.gnu.org/software/gsl/manual/html_node/>
44 Tip : search on google: site:http://www.gnu.org/software/gsl/manual/html_node/ name_of_the_function_you_want
47 =head1 AUTHORS
49 Jonathan Leto <jonathan@leto.net> and Thierry Moisan <thierry.moisan@gmail.com>
51 =head1 COPYRIGHT AND LICENSE
53 Copyright (C) 2008 Jonathan Leto and Thierry Moisan
55 This program is free software; you can redistribute it and/or modify it
56 under the same terms as Perl itself.
58 =cut