BLAS fixes for 64bit and retabification
[Math-GSL.git] / Changes
blobf8a8d790de9905eba6abccb88b4a363f75473a28
1 =head1 Math::GSL Changes
3 =head1 v0.14 - October ?? 2008
5     - Chebyshev Series Approximation, with tests and docs
6     - Improved Deriv, Integration, Chebyshev, Combination and Roots docs
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
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     - Fix location of shared objects (Sisyphus)
27     - Added raw() method to RNG objects
29 =head1 v0.12 - September 14 2008
31     - Darwin support! 
32     - Minimum Perl version changed to 5.8.0
33     - Make platform check compile time constants for performance
34         aka The Wilhelm Speedup (thanks to Eric Wilhelm <scratchcomputing@gmail.com>)
35     - FFT for real data
36     - Numerical derivatives fully implemented
37     - Integration subsystem, gsl_integrate_qags() and gsl_integrate_qagi(), etc..
38         - QNG    : Non-adaptive Gaussian (uses fixed number of sample points in interval)
39         - QAG(S) : Adaptive Gaussian (Singluar) (slices interval up based on properties of the function)
40         - QAGI   : Adaptive Gaussian with infinite integration range
41         - other are supported but not tested
42     - Initial Monte tests
43     - Initial Multiroots tests
44     - More nan/inf fixes on MSWin32 from <sisyphus@cpan.org>
45     - Stripping of binaries on Windows, which significantly reduces size
46         from <sisyphus@cpan.org>
47     - Full support and tests for all functions in the Sort subsystem
48     - Added 'examples/benchmark/sort' to show performance of gsl_sort()
49     - Added 'examples/clicker/chart' to show graphing of functions
50     - Added 'examples/gsl_repl' which is a rapid protyping tool/interactive interpreter
51     - Compile support for GSL's as old as 1.8 (test suite still needs to be properly guarded)
53 =head1 v0.10 
55     - Continued porting to MSWin32, fixing many NaN and Inf handling issues
57 =head1 v0.08
59     - Large documentation improvements
60     - MSWin32 support thanks to testing and feedback from <sisyphus@cpan.org>
62 =head1 v0.07 
64     - Initial CPAN release
65     
66 =head1 v0.042 
68     - Started change to Test::Class
70 =head1 v0.01 
72     - Added swig interface files and swig-ified build script
73     - initial tests for special function library gsl_sf <--> Math::GSL::Sf
74     - Proof Of Concept: makegsl and testgsl