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