It works better when you plug it in
[Math-GSL.git] / Changes
blob182392018636323a50312f4f1cc203161c976b77
1 =head1 Math::GSL Changes
3 =head1 v0.14 - October ?? 2008
4     - Chebyshev Series Approximation, with tests and docs
5     - Improved Deriv, Integration, Chebyshev, Combination and Roots docs
6     - Beginning of documentation for Math::GSL::Test 
7     - Improved introduction examples in Math::GSL
8     - Improved Minimization subsystem tests, but it is not functional
9     - Added examples/fft/forward_real
10     - Added example/deriv/basic
12         This shows the simple fact that d/dx(sin(x)) = cos(x)
14     - Added example/sf/erfc_check (thanks to Keith Lofstrom)
16         Script which tests the erfc() special function against computing
17         the integral definition with gsl_integration_qagiu()
19     - Added example/vector/speed 
20     
21         This shows a considerable performance boost using Math::GSL::Vectors
22         instead of List::Util when searching for the min and max elements of
23         large sets of random numbers.
25     - Fixed return signature of gsl_deriv_* functions to return a flat list
26     - Fixed some failing tests relating to  -Duselongdouble (Sisyphus)
27     - Fix location of shared objects (Sisyphus)
28     - Added raw() method to RNG objects
30 =head1 v0.12 - September 14 2008
32     - Darwin support! 
33     - Minimum Perl version changed to 5.8.0
34     - Make platform check compile time constants for performance
35         aka The Wilhelm Speedup (thanks to Eric Wilhelm <scratchcomputing@gmail.com>)
36     - FFT for real data
37     - Numerical derivatives fully implemented
38     - Integration subsystem, gsl_integrate_qags() and gsl_integrate_qagi(), etc..
39         - QNG    : Non-adaptive Gaussian (uses fixed number of sample points in interval)
40         - QAG(S) : Adaptive Gaussian (Singluar) (slices interval up based on properties of the function)
41         - QAGI   : Adaptive Gaussian with infinite integration range
42         - other are supported but not tested
43     - Initial Monte tests
44     - Initial Multiroots tests
45     - More nan/inf fixes on MSWin32 from <sisyphus@cpan.org>
46     - Stripping of binaries on Windows, which significantly reduces size
47         from <sisyphus@cpan.org>
48     - Full support and tests for all functions in the Sort subsystem
49     - Added 'examples/benchmark/sort' to show performance of gsl_sort()
50     - Added 'examples/clicker/chart' to show graphing of functions
51     - Added 'examples/gsl_repl' which is a rapid protyping tool/interactive interpreter
52     - Compile support for GSL's as old as 1.8 (test suite still needs to be properly guarded)
54 =head1 v0.10 
56     - Continued porting to MSWin32, fixing many NaN and Inf handling issues
58 =head1 v0.08
60     - Large documentation improvements
61     - MSWin32 support thanks to testing and feedback from <sisyphus@cpan.org>
63 =head1 v0.07 
65     - Initial CPAN release
66     
67 =head1 v0.042 
69     - Started change to Test::Class
71 =head1 v0.01 
73     - Added swig interface files and swig-ified build script
74     - initial tests for special function library gsl_sf <--> Math::GSL::Sf
75     - Proof Of Concept: makegsl and testgsl