Apply nan/inf handling patch from Sisyphus
[Math-GSL.git] / Heapsort.i
blob183d95ca12cc160876e5f46232a2807b474f9b87
1 %module "Math::GSL::Heapsort"
2 %{
3 #include "gsl/gsl_heapsort.h"
4 %}
6 %include "gsl/gsl_heapsort.h"
9 %perlcode %{
10 @EXPORT_OK = qw/
11 gsl_heapsort
12 gsl_heapsort_index
14 %EXPORT_TAGS = ( all => [ @EXPORT_OK ] );
16 __END__
18 =head1 NAME
20 Math::GSL::Heapsort - Functions for sorting data, both directly and indirectly (using an index)
22 =head1 SYNOPSIS
24 This module is not yet implemented. Patches Welcome!
26 use Math::GSL::Heapsort qw /:all/;
28 =head1 DESCRIPTION
30 Here is a list of all the functions in this module :
32 =over
34 =item * gsl_heapsort
36 =item * gsl_heapsort_index
38 =back
40 For more informations on the functions, we refer you to the GSL offcial
41 documentation: L<http://www.gnu.org/software/gsl/manual/html_node/>
43 Tip : search on google: site:http://www.gnu.org/software/gsl/manual/html_node/ name_of_the_function_you_want
46 =head1 AUTHORS
48 Jonathan Leto <jonathan@leto.net> and Thierry Moisan <thierry.moisan@gmail.com>
50 =head1 COPYRIGHT AND LICENSE
52 Copyright (C) 2008 Jonathan Leto and Thierry Moisan
54 This program is free software; you can redistribute it and/or modify it
55 under the same terms as Perl itself.
57 =cut