Cleaned up Build.PL to get rid of settings particular to my machine.
[Math-GSL.git] / TODO
blobd8bfe749d83d40ad685889f245215eccf3026af3
1 =head1 TODO
3 =head2  Stuff to figure out
5 * how should we interface to gsl_sf_result ?
7 http://www.gnu.org/software/gsl/manual/html_node/The-gsl_005fsf_005fresult-struct.html
9      use Math::GSL::Result;
10      use Math::GSL::Sf qw/gsl_sf_bessel/;
11      
12      my $x = 5.0;
13      my $result = Math::GSL::Result->new;
14      
15      my $expected = -0.17759677131433830434739701;
16        
17      my $status = gsl_sf_bessel_J0_e ($x, $result);
18      
19      print "status  = $status\n";
20      printf "J0($x) = %.18f\n\t= +/- % .18f\n", $result->val, $result->err;
21      printf "exact   = $expected\n;
23 =head2  Notes
25 * $status should get stringified to an actual message (via gsl_strerror)
27 =head2 Stuff to fix
29 * make the interface not be hardcoded to /usr/local/include/gsl