1 =head1 Math::GSL Changes
3 =head1 v0.19_03 - May 2009
4 - Improvements to callbacks, thanks to patches from piotrj
5 - Fixed + added test for RT#45044 math-gsl eigenpair bug, reported with patch by Ian Malone
6 - The following improvements were merged from Vincent Danjean's git repo
7 - New callback implementation, still in testing
8 - Correct handling of double, float and size_t on x64
9 - Removed duplicate definition of fopen/fclose in VectorComplex
10 - Fix bug where proper flags to SWIG were not passed
12 =head1 v0.18 - March 23 2009
14 - Make Math::GSL play nice with GSL 1.12
15 - Added swap() to Vector objects with tests and docs
16 - Added p-norms to Vector objects via norm() and normalize()
17 - Added operator overloading so that
18 abs $vector == $vector->norm
19 - Added as_vector() to Matrix and MatrixComplex objects
20 - Added inverse(), is_square(), det(), lndet(), zero() and identity()
22 - Added inverse(), is_square(), det(), lndet(), zero(), identity()
23 and hermitian() to MatrixComplex objects
24 - Added dot product to Matrix objects
25 - Fixed various typos in documentation
26 - Fixed warnings about overloaded operators in Matrix and BLAS
27 - Overloaded '==' and '!=' for MatrixComplex and Matrix objects
28 - Fixed amd64 -fPIC compile failure
29 - Added tests to Monte and refactor Sort tests
30 - Refactored and improve error checking in callback interface
31 - Fixed 'NaN' test failures (thanks CPANtesters!)
33 =head1 v0.16 - December 14 2008 (Happy Snowpocalypse PDX!)
35 - Fixed RT#40947: configure_requires ExtUtils::PkgConfig bug
36 - Added reverse() and swap() methods to VectorComplex objects with tests and docs
37 - as_list() and get() now work on VectorComplex objects
38 as_list() returns a list of Math::Complex objects
39 get() returns a list of Math::GSL::Complex objects
40 - Math::GSL::Test::ok_status() now takes an optional message argument
42 - Added Math::GSL::Test::is_status_ok()
43 - New subsytems: VectorComplex and MatrixComplex
44 - Operator overloading for addition and subtraction with vectors
45 - Added example: examples/matrix/nonsymmetric_eigen
46 Shows how to find the eigenvalues of a nonsymmetric matrix
47 - Added copy() method to vectors
48 - Improved Vector docs
49 - Sped up vector dot products by 15x using BLAS function gsl_blas_ddot
50 NOTE: using gsl_blas_ddot($x->raw,$y->raw) directly is still about 10 times faster
51 than $x * $y due to error checking and function call overhead
52 - Separated POD and Perl code out of SWIG interface files, yay for proper syntax
54 - Added stub test files for Heapsort, IEEEUtils, Multimin, Siman, Wavelet2D
55 - All test files now keep track of how many tests should run
56 - Fix an include bug in Histogram2D which caused the build to fail (Thierry)
57 - Operator overloading for addition, multiplication and subtraction on Matrix objects (Thierry)
60 =head1 v0.14 - October 21 2008
62 - Chebyshev Series Approximation, with tests and docs
63 - Examples and new documentation in Statistics, as well as tests (Thierry)
64 - Bugfixes relating to compiling on 64bit Red Hat Linux, reported by Michael Roberge
65 - Improved FFT, Deriv, Integration, Chebyshev, Combination and Roots docs
66 - Documentation for Math::GSL::Test
67 - Improved introduction examples in Math::GSL
68 - Improved Minimization subsystem tests, but it is not functional
69 - Added examples/fft/forward_real
70 - Added example/deriv/basic
72 This shows the simple fact that d/dx(sin(x)) = cos(x)
74 - Added example/sf/erfc_check (thanks to Keith Lofstrom)
76 Script which tests the erfc() special function against computing
77 the integral definition with gsl_integration_qagiu()
79 - Added example/vector/speed
81 This shows a considerable performance boost using Math::GSL::Vectors
82 instead of List::Util when searching for the min and max elements of
83 large sets of random numbers.
85 - Fixed return signature of gsl_deriv_* functions to return a flat list
86 - Fixed some failing tests relating to -Duselongdouble (Sisyphus)
87 - Fix location of shared objects (Sisyphus)
88 - Added raw() method to RNG objects
90 =head1 v0.12 - September 14 2008
93 - Minimum Perl version changed to 5.8.0
94 - Make platform check compile time constants for performance
95 aka The Wilhelm Speedup (thanks to Eric Wilhelm <scratchcomputing@gmail.com>)
97 - Numerical derivatives fully implemented
98 - Integration subsystem, gsl_integrate_qags() and gsl_integrate_qagi(), etc..
99 - QNG : Non-adaptive Gaussian (uses fixed number of sample points in interval)
100 - QAG(S) : Adaptive Gaussian (Singluar) (slices interval up based on properties of the function)
101 - QAGI : Adaptive Gaussian with infinite integration range
102 - other are supported but not tested
103 - Initial Monte tests
104 - Initial Multiroots tests
105 - More nan/inf fixes on MSWin32 from <sisyphus@cpan.org>
106 - Stripping of binaries on Windows, which significantly reduces size
107 from <sisyphus@cpan.org>
108 - Full support and tests for all functions in the Sort subsystem
109 - Added 'examples/benchmark/sort' to show performance of gsl_sort()
110 - Added 'examples/clicker/chart' to show graphing of functions
111 - Added 'examples/gsl_repl' which is a rapid protyping tool/interactive interpreter
112 - Compile support for GSL's as old as 1.8 (test suite still needs to be properly guarded)
116 - Continued porting to MSWin32, fixing many NaN and Inf handling issues
120 - Large documentation improvements
121 - MSWin32 support thanks to testing and feedback from <sisyphus@cpan.org>
125 - Initial CPAN release
129 - Started change to Test::Class
133 - Added swig interface files and swig-ified build script
134 - initial tests for special function library gsl_sf <--> Math::GSL::Sf
135 - Proof Of Concept: makegsl and testgsl