• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[template history[]
2
3Currently open bug reports can be viewed
4[@https://github.com/boostorg/math/issues here] on GitHub.
5
6All old bug reports including closed ones can be viewed on Trac
7[@https://svn.boost.org/trac/boost/query?status=assigned&status=closed&status=new&status=reopened&component=math&col=id&col=summary&col=status&col=type&col=milestone&col=component&order=priority here].
8
9Recent issues on GitHub [@https://github.com/boostorg/math/issues?utf8=%E2%9C%93&q=is%3Aissue here].
10
11[h4 Math-2.12.0 (Boost-1.73)]
12
13* IMPORTANT: C++03 support is now deprecated and will be removed from March 2021.
14* Added [link math_toolkit.cubic_hermite Cubic Hermite Interpolation.]
15* Added [link math_toolkit.makima Modified Akima Interpolation.]
16* Added [link math_toolkit.pchip PCHIP Interpolation.]
17* Added [link math_toolkit.quintic_hermite Quintic Hermite Interpolation.]
18* Added entropy to numerous distributions.
19* Allow trivial quadrature case where the two end points are equal, and in addition allow bounds to be interchanged.
20* Fix exp_sinh quadrature to work with complex types over a non-native range.
21* Fix miscellaneous compiler warnings in factorial.hpp.
22* Use std::chrono rather than boost::chrono in timed pFq calculations.
23* Remove much of the old boost::mpl dependencies to improve constexpr support.
24
25[h4 Math-2.11.0 (Boost-1.72)]
26
27* Added Hypergeometric functions [link math_toolkit.hypergeometric.hypergeometric_1f0 1F0], [link math_toolkit.hypergeometric.hypergeometric_0f1 0F1],
28[link math_toolkit.hypergeometric.hypergeometric_2f0 2F0], [link math_toolkit.hypergeometric.hypergeometric_1f1 1F1] and [link math_toolkit.hypergeometric.hypergeometric_pfq pFq].
29* Added [link math_toolkit.sf_poly.jacobi Jacobi polynomial] (and derivatives) evaluation.
30* Added [link math_toolkit.sf_poly.gegenbauer Gegenbauer polynomial] (and derivatives) evaluation.
31* Added [link math_toolkit.sf_poly.cardinal_b_splines Cardinal B-Splines] (and derivatives) as polynomial functions in their own right.
32* Added [link math_toolkit.cardinal_trigonometric Cardinal Trigonometric Interpolation].
33* Added new statistics sub-section.
34* Added [link math_toolkit.t_test One Sample Student's T Test].
35* Added [link math_toolkit.anderson_darling Anderson Darling test for normality].
36* Added [link math_toolkit.ljung_box Ljung Box test for  auto-correlation].
37* Added [link math_toolkit.runs_test Runs test for random sequences].
38* The headers `boost/math/tools/univariate_statistics.hpp` and `boost/math/tools/bivariate_statistics.hpp`,
39have been deprecated in favor of `boost/math/statistics/univariate_statistics.hpp` and `boost/math/statistics/bivariate_statistics.hpp`.
40* Added [link math_toolkit.dist_ref.dists.empirical_cdf The Empirical CDF distribution].
41* Reworked the Sterling approximation used by multiprecision gamma functions to be applicable
42to all the function that use the Lanczos approximation at regular precision.  Also extended
43Lanczos approximations up to 100 decimal digit precision.
44
45[h4 Math-2.10.0 (Boost-1.71)]
46
47* Catmull-Rom interpolator now works in C++11.
48* Cardinal quadratic B-spline interpolation.
49* Domain of elliptic integrals extended.
50* sin_pi and cos_pi performance improvements.
51* Forward-mode automatic differentiation.
52* Vector valued barycentric rational interpolation.
53* Ooura's method for evaluation of Fourier integrals.
54* Multiple compatibility issues with Multiprecision fixed.
55* Lambert-W fixed on a rare architecture.
56
57[h4 Math-2.9.0 (Boost-1.70)]
58
59* Add Lanczos smoothing derivatives
60* Move `numerical_differentiation.hpp` from `boost/math/tools/` to `boost/math/differentiation/finite_difference.hpp`.
61* Add mean, variance, skewness, kurtosis, median, Gini coefficient, and median absolute deviation to `tools/univariate_statistics.hpp`.
62* Add correlation coefficients and covariance to `tools/bivariate_statistics.hpp`
63* Add absolute Gini coefficient, Hoyer sparsity, oracle SNR, and the /M/[sub 2]/M/[sub 4] SNR estimator to `tools/signal_statistics.hpp`.
64* Add total variation, l0, l1, l2, and sup norms, as well as corresponding distance functions to `tools/norms.hpp`.
65* Add move constructors for polynomials, support complex coefficients, add `.prime()` and `.integrate()` methods.
66* Add `quadratic_roots` to `tools/roots.hpp`.
67* Add support for complex-valued functions to Newton's method in `roots.hpp`.
68* Add Catmull-Rom interpolator.
69* Fix bug in `newton_raphson_iterate` where we could terminate incorrectly under certain exceptional cases.
70* Suppressed warnings from use of `Q` suffix on constants when compiling with `g++ -Wall -pedantic`.
71
72[h4 Math-2.8.0 (Boost-1.69)]
73
74* Add LambertW functions.
75* Update integration routines to support complex valued integrands and contour integrals.
76* Added the derivative of the Barycentric rational approximation.
77* Updated continued fraction and series evaluation code to support complex types.
78* Minor fixes to better support variable precision floating point types.
79* Removed use of deprecated Boost.Endian in favour of Predef.
80* Prevent logic error leading to infinite loop in toms748_solve.  See [@https://github.com/boostorg/math/issues/138 #138].
81* Fix mean and standard_deviation for extreme_value_distribution.  See [@https://github.com/boostorg/math/issues/139 #139].
82* Improve heuristics used in newton_raphson_iterate.  See [@https://github.com/boostorg/math/issues/145 #145].
83* Fix result of `erf(NaN)`.  See [@https://github.com/boostorg/math/issues/141 #141].
84* Big push to reduce GCC warnings.  See [@https://github.com/boostorg/math/issues/136 #136].
85* Refactor polynomial addition.  See [@https://github.com/boostorg/math/pull/132 PR132].
86* Fix for vxWorks having a `real` function in the global namespace. See [@https://github.com/boostorg/math/pull/131 PR131].
87* Improve `sinc` approximations and add better tests.
88* Fix typo in Student's T hypothesis testing documentation, see [@https://github.com/boostorg/math/issues/143 #143].
89
90[h4 Math-2.7.1 (Boost-1.68)]
91
92* Continue to improve numerical integration routines, and in particular add support for contour integrals.
93* Improve accuracy of erfc function's rational approximations.
94
95[h4 Math-2.7.0 (Boost-1.66)]
96
97* Add Gauss and Gauss-Kronrod quadrature routines.
98* Add double-exponential (tanh-sinh, exp-sinh and sinh-sinh) quadrature routines.
99* Add Chebyshev polynomial evaluation, roots, integration, differentiation, and interpolation routines.
100
101[h4 Math-2.6.0 (Boost-1.65)]
102
103New Features:
104
105* Add [link math_toolkit.cardinal_cubic_b Cardinal cubic B-Spline interpolation functions], with thanks to Nick Thompson.
106* Add [link math_toolkit.barycentric barycentric rational interpolation functions], with thanks to Nick Thompson.
107* Add [link math_toolkit.trapezoidal adaptive trapezoidal quadrature], with thanks to Nick Thompson.
108* Add [link math_toolkit.sf_poly.legendre support for the zeros and derivatives of Legendre polynomials], with thanks to Nick Thompson.
109
110Patches:
111
112* Improve polynomial GCD algorithms, with thanks to Jeremy Murphy.
113* Removed gcd/lcm routines from Boost.Math - these are now in Boost.Integer.
114
115[h4 Math-2.5.2 (Boost-1.64)]
116
117Patches:
118
119* Big push to ensure all functions in also in C99 are compatible with Annex F.
120* Improved accuracy of the Bessel functions I0, I1, K0 and K1, see [@https://svn.boost.org/trac/boost/ticket/12066 12066].
121
122[h4 Math-2.5.1 (Boost-1.63)]
123
124Patches:
125
126* Fixed evaluation of zero polynomial in polynomial.hpp, see [@https://svn.boost.org/trac/boost/ticket/12532 12532].
127* Fixed missing header include in boost/math/tools/tuple.hpp, see [@https://svn.boost.org/trac/boost/ticket/12537 12537].
128
129[h4 Math-2.5.0 (Boost-1.62)]
130
131New Features:
132
133* Enabled all the special function code to work correctly with types whose precision can change at runtime: for example type `mpfr_float` from Boost.Multiprecision.
134
135Patches:
136
137* Fix tgamma_delta_ratio for cases where the delta is small compared to the base.
138* Fix misc GCC-4.4 test failures.
139
140[h4 Math-2.4.0 (Boost-1.61)]
141
142New Features:
143
144* Polynomial arithmetic added to tools.
145
146
147[h4 Math-2.3.0 (Boost-1.60)]
148
149New Features:
150
151* Promote the root finding and function minimization code to first class citizens - these are now officially supported as part of the library.
152* Allow the library to be used and tested with compiler exception handling support turned off.  To better facilitate this
153the default error handling policies have been changed to ['errno_on_error] but only when the compiler has no exception handling support.
154
155Patches:
156
157* Fix behaviour of the non-central chi-squared distribution when the non-centrality parameter is zero to match the chi-squared,
158see [@https://svn.boost.org/trac/boost/ticket/11557 11557].
159* Fix comments in code for the hypergeometric to match what it actually does, also fixes the parameter access functions to return
160the correct values.  See [@https://svn.boost.org/trac/boost/ticket/11556 11556].
161* Stopped using hidden visibility library build with the Oracle compiler as it leads to unresolved externals from the C++ standard library.
162See [@https://svn.boost.org/trac/boost/ticket/11547 11547].
163* Fix unintended use of __declspec when building with Oracle C++.  See [@https://svn.boost.org/trac/boost/ticket/11546 11546].
164* Fix corner case bug in root bracketing code, see [@https://svn.boost.org/trac/boost/ticket/11532 11532].
165* Add some missing typecasts in arguments to std::max in Bernoulli code.  See [@https://svn.boost.org/trac/boost/ticket/11453 11453].
166* Fix mistaken assumptions about the possible values for FLT_EVAL_METHOD.  See [@https://svn.boost.org/trac/boost/ticket/11429 11429].
167* Completely revamped performance testing and error-rate measuring code so we can more easily document how well (or not!) we're doing.
168This information will hopefully get more frequently updated in future as it's more or less automatically generated - see the /reporting/
169sub-directory for more information.
170* Fix some corner cases in the beta, incomplete beta, and incomplete beta derivative.  With thanks to Rocco Romeo.
171* Reorganized the Bessel functions internally to improve the performance of Jn and Yn.
172* Fixed skewness formula for triangular distribution, see [@https://svn.boost.org/trac/boost/ticket/11768 #11768].
173* Fixed some examples so they compile on Unix platforms which have an ::exception struct declared, see [@https://svn.boost.org/trac/boost/ticket/11827 #11827].
174* Correct mistake in triangular distribution skewness formula [@https://svn.boost.org/trac/boost/ticket/11768 11768],
175reported by Juan Leni.
176
177[h4 Math-2.2.1]
178
179Patch release for Boost-1.58:
180
181* Minor [@https://github.com/boostorg/math/pull/13#issuecomment-98905579 patch for Haiku support.]
182* Fix the decimal digit count for 128-bit floating point types.
183* Fix a few documentation typos.
184
185[h4 Math-2.2.0 (boost-1.58.0)]
186
187* Added two new special functions - __trigamma and __polygamma.
188* Fixed namespace scope constants so they are constexpr on conforming compilers, see https://svn.boost.org/trac/boost/ticket/10901.
189* Fixed various cases of spurious under/overflow in the incomplete beta and gamma functions, plus the elliptic integrals,
190with thanks to Rocco Romeo.
191* Fix 3-arg __legendre_p and __legendre_q functions to not call the policy based overload if the final argument
192is not actually a policy.
193* Cleaned up some dead code in the incomplete beta function, see [@https://svn.boost.org/trac/boost/ticket/10985 #10985].
194* Fixed extreme-value pdf for large valued inputs, see [@https://svn.boost.org/trac/boost/ticket/10938 #10938].
195* Large update to the Elliptic integral code to use Carlson's latest algorithms - these should be more stable, more accurate
196and slightly faster than before.  Also added support for Carlson's RG integral.
197* Added __ellint_d, __jacobi_zeta and __heuman_lambda elliptic integrals.
198* Switched documentation to use SVG rather than PNG graphs and equations - browsers seem to have finally caught up!
199
200[h4 Math-2.1.0 (boost-1.57.0)]
201
202* Added __hyperexponential_distrib.
203* Fix some spurious overflows in the incomplete gamma functions (with thanks to Rocco Romeo).
204* Fix bug in derivative of incomplete beta when a = b = 0.5 - this also effects several non-central distributions,
205see [@https://svn.boost.org/trac/boost/ticket/10480 10480].
206* Fixed some corner cases in __round.
207* Don't support 80-bit floats in cstdfloat.hpp if standard library support is broken.
208
209[h4 Math-2.0.0 (Boost-1.56.0)]
210
211* [*Breaking change]: moved a number of non-core headers that are predominantly used for internal
212maintenance into `libs/math/include_private`.  The headers effected are `boost/math/tools/test_data.hpp`,
213`boost/math/tools/remez.hpp`, `boost/math/constants/generate.hpp`, `boost/math/tools/solve.hpp`,
214`boost/math/tools/test.hpp`.
215You can continue to use these headers by adding `libs/math/include_private` to your compiler's include path.
216* [*Breaking change]: A number of distributions and special functions were returning the maximum finite value
217rather than raising an __overflow_error, this has now been fixed, which means these functions now behave as
218documented.  However, since the default behavior on raising an __overflow_error is to throw a `std::overflow_error`
219exception, applications which have come to reply rely on these functions not throwing may experience exceptions
220where they did not before.  The special functions involved are __gamma_p_inva, __gamma_q_inva,
221__ibeta_inva, __ibetac_inva, __ibeta_invb, __ibetac_invb, __gamma_p_inv, __gamma_q_inv.  The distributions
222involved are __pareto_distrib, __beta_distrib, __geometric_distrib, __negative_binomial_distrib,
223__binomial_distrib, __chi_squared_distrib, __gamma_distrib, __inverse_chi_squared_distrib,
224__inverse_gamma_distrib.  See [@https://svn.boost.org/trac/boost/ticket/10111 #10111].
225* Fix __round and __trunc functions so they can be used with integer arguments, see [@https://svn.boost.org/trac/boost/ticket/10066 #10066].
226* Fix Halley iteration to handle zero derivative (with non-zero second derivative), see [@https://svn.boost.org/trac/boost/ticket/10046 #10046].
227
228[h4 Math-1.9.1]
229
230* Fix Geometric distribution use of Policies, see [@https://svn.boost.org/trac/boost/ticket/9833 #9833].
231* Fix corner cases in the negative binomial distribution, see [@https://svn.boost.org/trac/boost/ticket/9834 #9834].
232* Fix compilation failures on Mac OS.
233
234[h4 Math-1.9.0]
235
236* Changed version number to new Boost.Math specific version now that we're in the modular Boost world.
237* Added __bernoulli_numbers, changed arbitrary precision __tgamma/__lgamma to use Sterling's approximation (from Nikhar Agrawal).
238* Added first derivatives of the Bessel functions: __cyl_bessel_j_prime, __cyl_neumann_prime, __cyl_bessel_i_prime, __cyl_bessel_k_prime, __sph_bessel_prime and __sph_neumann_prime (from Anton Bikineev).
239* Fixed buggy Student's t example code, along with docs for testing sample means for equivalence.
240* Documented `max_iter` parameter in root finding code better, see [@https://svn.boost.org/trac/boost/ticket/9225 #9225].
241* Add option to explicitly enable/disable use of __float128 in constants code, see [@https://svn.boost.org/trac/boost/ticket/9240 #9240].
242* Cleaned up handling of negative values in Bessel I0 and I1 code (removed dead code), see [@https://svn.boost.org/trac/boost/ticket/9512 #9512].
243* Fixed handling of very small values passed to __tgamma and __lgamma so they don't generate spurious overflows (thanks to Rocco Romeo).
244* [@https://svn.boost.org/trac/boost/ticket/9672 #9672 PDF and CDF of a Laplace distribution throwing domain_error]
245Random variate can now be infinite.
246* Fixed several corner cases in __rising_factorial, __falling_factorial and __tgamma_delta_ratio with thanks to Rocco Romeo.
247* Fixed several corner cases in __rising_factorial, __falling_factorial and __tgamma_delta_ratio (thanks to Rocco Romeo).
248* Removed constant `pow23_four_minus_pi ` whose value did not match the name (and was unused by Boost.Math), see
249[@https://svn.boost.org/trac/boost/ticket/9712 #9712].
250
251[h4 Boost-1.55]
252
253* Suppress numerous warnings (mostly from GCC-4.8 and MSVC) [@https://svn.boost.org/trac/boost/ticket/8384 #8384], [@https://svn.boost.org/trac/boost/ticket/8855 #8855],
254[@https://svn.boost.org/trac/boost/ticket/9107 #9107], [@https://svn.boost.org/trac/boost/ticket/9109 #9109]..
255* Fixed PGI compilation issue [@https://svn.boost.org/trac/boost/ticket/8333 #8333].
256* Fixed PGI constant value initialization issue that caused erf to generate incorrect results [@https://svn.boost.org/trac/boost/ticket/8621 #8621].
257* Prevent macro expansion of some C99 macros that are also C++ functions [@https://svn.boost.org/trac/boost/ticket/8732 #8732] and [@https://svn.boost.org/trac/boost/ticket/8733 #8733]..
258* Fixed Student's T distribution to behave correctly with huge degrees of freedom (larger than the largest representable integer) [@https://svn.boost.org/trac/boost/ticket/8837 #8837].
259* Make some core functions usable with `long double` even when the platform has no standard library `long double` support [@https://svn.boost.org/trac/boost/ticket/8940 #8940].
260* Fix error handling of distributions to catch invalid scale and location parameters when the random variable is infinite [@https://svn.boost.org/trac/boost/ticket/9042 #9042] and [@https://svn.boost.org/trac/boost/ticket/9126 #9126].
261* Add workaround for broken <tuple> in Intel C++ 14 [@https://svn.boost.org/trac/boost/ticket/9087 #9087].
262* Improve consistency of argument reduction in the elliptic integrals [@https://svn.boost.org/trac/boost/ticket/9104 #9104].
263* Fix bug in inverse incomplete beta that results in cancellation errors when the beta function is really an arcsine or Student's T distribution.
264* Fix issue in Bessel I and K function continued fractions that causes spurious over/underflow.
265* Add improvement to non-central chi squared distribution quantile due to Thomas Luu,
266[@http://discovery.ucl.ac.uk/1482128/ Fast and accurate parallel computation of quantile functions for random number generation, Doctoral Thesis 2016].
267[@http://discovery.ucl.ac.uk/1463470/ Efficient and Accurate Parallel Inversion of the Gamma Distribution, Thomas Luu]
268[h4 Boost-1.54]
269
270* Major reorganization to incorporate other Boost.Math like Integer Utilities Integer Utilities (Greatest Common Divisor and Least Common Multiple), quaternions and octonions.
271Making new chapter headings.
272* Added many references to Boost.Multiprecision and `cpp_dec_float_50` as an example of a User-defined Type (UDT).
273* Added Clang to list of supported compilers.
274* Fixed constants to use a thread-safe cache of computed values when used at arbitrary precision.
275* Added finding zeros of Bessel functions `cyl_bessel_j_zero`, `cyl_neumann_zero`, `airy_ai_zero` and `airy_bi_zero`(by Christopher Kormanyos).
276* More accuracy improvements to the Bessel J and Y functions from Rocco Romeo.
277* Fixed nasty cyclic dependency bug that caused some headers to not compile [@https://svn.boost.org/trac/boost/ticket/7999 #7999].
278* Fixed bug in __tgamma that caused spurious overflow for arguments between 142.5 and 143.
279* Fixed bug in raise_rounding_error that caused it to return an incorrect result when throwing an exception is turned off [@https://svn.boost.org/trac/boost/ticket/7905 #7905].
280* Added minimal __float128 support.
281* Fixed bug in edge-cases of poisson quantile [@https://svn.boost.org/trac/boost/ticket/8308 #8308].
282* Adjusted heuristics used in Halley iteration to cope with inverting the incomplete beta in tricky regions
283where the derivative is flatlining.  Example is computing the quantile of the Fisher F distribution for probabilities
284smaller than machine epsilon.  See ticket [@https://svn.boost.org/trac/boost/ticket/8314 #8314].
285
286[h4 Boost-1.53]
287
288* Fixed issues [@https://svn.boost.org/trac/boost/ticket/7325 #7325], [@https://svn.boost.org/trac/boost/ticket/7415 #7415]
289and [@https://svn.boost.org/trac/boost/ticket/7416 #7416], [@https://svn.boost.org/trac/boost/ticket/7183 #7183],
290[@https://svn.boost.org/trac/boost/ticket/7649 #7649], [@https://svn.boost.org/trac/boost/ticket/7694 #7694],
291[@https://svn.boost.org/trac/boost/ticket/4445 #4445], [@https://svn.boost.org/trac/boost/ticket/7492 #7492],
292[@https://svn.boost.org/trac/boost/ticket/7891 #7891], [@https://svn.boost.org/trac/boost/ticket/7429 #7429].
293* Fixed mistake in calculating pooled standard deviation in two-sample students t example
294[@https://svn.boost.org/trac/boost/ticket/7402 #7402].
295* Improve complex acos/asin/atan, see [@https://svn.boost.org/trac/boost/ticket/7290 #7290],
296[@https://svn.boost.org/trac/boost/ticket/7291 #7291].
297* Improve accuracy in some corner cases of __cyl_bessel_j and __gamma_p/__gamma_q thanks to suggestions from Rocco Romeo.
298* Improve accuracy of Bessel J and Y for integer orders thanks to suggestions from Rocco Romeo.
299
300[h4 Boost-1.52]
301
302* Corrected moments for small degrees of freedom [@https://svn.boost.org/trac/boost/ticket/7177 #7177] (reported by Thomas Mang).
303* Added [link math_toolkit.airy Airy functions] and [link math_toolkit.jacobi Jacobi Elliptic functions].
304* Corrected failure to detect bad parameters in many distributions
305[@https://svn.boost.org/trac/boost/ticket/6934 #6934] (reported by Florian Schoppmann)
306by adding a function check_out_of_range to test many possible bad parameters.
307This test revealed several distributions where the checks for bad parameters were ineffective,
308and these have been rectified.
309* Fixed issue in Hankel functions that causes incorrect values to be returned for ['x < 0] and [nu] odd, see [@https://svn.boost.org/trac/boost/ticket/7135 #7135].
310* Fixed issues [@https://svn.boost.org/trac/boost/ticket/6517 #6517], [@https://svn.boost.org/trac/boost/ticket/6362 #6362],
311[@https://svn.boost.org/trac/boost/ticket/7053 #7053], [@https://svn.boost.org/trac/boost/ticket/2693 #2693],
312[@https://svn.boost.org/trac/boost/ticket/6937 #6937], [@https://svn.boost.org/trac/boost/ticket/7099 #7099].
313
314
315* Permitted infinite degrees of freedom [@https://svn.boost.org/trac/boost/ticket/7259 #7259]
316implemented using the normal distribution (requested by Thomas Mang).
317* Much enhanced accuracy for large degrees of freedom [nu] and/or large non-centrality [delta]
318by switching to use the Students t distribution
319(or Normal distribution for infinite degrees of freedom)
320 centered at delta,
321when [delta] / (4 * [nu])  < epsilon for the floating-point type in use.
322[@https://svn.boost.org/trac/boost/ticket/7259 #7259].
323It was found that the incomplete beta was suffering from serious cancellation errors
324when degrees of freedom was very large. (That has now been fixed in our code,
325but any code based on Didonato and Morris's original papers
326(probably every implementation out there actually) will have the same issue).
327
328[h4 Boost-1.51]
329See Boost-1.52 - some items were added but not listed in time for the release.
330
331[h4 Boost-1.50]
332
333* Promoted math constants to be 1st class citizens,
334including convenient access to the most widely used
335built-in float, double, long double via three namespaces.
336* Added the Owen's T function and Skew Normal distribution written by Benjamin Sobotta: see __owens_t and skew_normal_distrib.
337* Added Hankel functions __cyl_hankel_1, __cyl_hankel_2, __sph_hankel_1 and __sph_hankel_2.
338* Corrected issue [@https://svn.boost.org/trac/boost/ticket/6627 #6627 nonfinite_num_put formatting of 0.0 is incorrect]
339based on a patch submitted by K R Walker.
340* Changed constant initialization mechanism so that it is thread safe even for user-defined types, also
341so that user defined types get the full precision of the constant, even when `long double` does not.
342So for example 128-bit rational approximations will work with UDT's and do the right thing, even though
343`long double` may be only 64 or 80 bits.
344* Fixed issue in `bessel_jy` which causes Y[sub 8.5](4[pi]) to yield a NaN.
345
346[h4 Boost-1.49]
347
348* Deprecated wrongly named `twothirds` math constant in favour of `two_thirds` (with underscore separator).
349(issue [@https://svn.boost.org/trac/boost/ticket/6199 #6199]).
350* Refactored test data and some special function code to improve support for arbitrary precision and/or expression-template-enabled types.
351* Added new faster zeta function evaluation method.
352
353Fixed issues:
354
355* Corrected CDF complement for Laplace distribution (issue [@https://svn.boost.org/trac/boost/ticket/6151 #6151]).
356* Corrected branch cuts on the complex inverse trig functions, to handle signed zeros (issue [@https://svn.boost.org/trac/boost/ticket/6171 #6171]).
357* Fixed bug in `bessel_yn` which caused incorrect overflow errors to be raised for negative ['n] (issue [@https://svn.boost.org/trac/boost/ticket/6367 #6367]).
358* Also fixed minor/cosmetic/configuration issues [@https://svn.boost.org/trac/boost/ticket/6120 #6120], [@https://svn.boost.org/trac/boost/ticket/6191 #6191],
359  [@https://svn.boost.org/trac/boost/ticket/5982 #5982], [@https://svn.boost.org/trac/boost/ticket/6130 #6130],
360  [@https://svn.boost.org/trac/boost/ticket/6234 #6234], [@https://svn.boost.org/trac/boost/ticket/6307 #6307],
361  [@https://svn.boost.org/trac/boost/ticket/6192 #6192].
362
363[h4 Boost-1.48]
364
365* Added new series evaluation methods to the cyclic Bessel I, J, K and Y functions.
366Also taken great care to avoid spurious over and underflow of these functions.
367Fixes issue [@https://svn.boost.org/trac/boost/ticket/5560 #5560]
368
369* Added an example of using Inverse Chi-Squared distribution for Bayesian statistics,
370provided by Thomas Mang.
371
372* Added tests to use improved version of lexical_cast which handles C99 nonfinites without using globale facets.
373
374* Corrected wrong out-of-bound uniform distribution CDF complement values [@https://svn.boost.org/trac/boost/ticket/5733 #5733].
375
376* Enabled long double support on OpenBSD (issue [@https://svn.boost.org/trac/boost/ticket/6014 #6014]).
377
378* Changed nextafter and related functions to behave in the same way as other implementations - so that nextafter(+INF, 0)
379is a finite value (issue [@https://svn.boost.org/trac/boost/ticket/5823 #5832]).
380
381* Changed tuple include configuration to fix issue when using in conjunction with Boost.Tr1 (issue [@https://svn.boost.org/trac/boost/ticket/5934 #5934]).
382
383* Changed class eps_tolerance to behave correctly when both ends of the range are zero (issue [@https://svn.boost.org/trac/boost/ticket/6001 #6001]).
384
385* Fixed missing include guards on prime.hpp (issue [@https://svn.boost.org/trac/boost/ticket/5927 #5927]).
386
387* Removed unused/undocumented constants from constants.hpp (issue [@https://svn.boost.org/trac/boost/ticket/5982 #5982]).
388
389* Fixed missing std:: prefix in nonfinite_num_facets.hpp (issue [@https://svn.boost.org/trac/boost/ticket/5914 #5914]).
390
391* Minor patches for Cray compiler compatibility.
392
393[h4 Boost-1.47]
394
395* Added changesign function to sign.hpp to facilitate addition of nonfinite facets.
396* Addition of nonfinite facets from Johan Rade, with tests,
397examples of use for C99 format infinity and NaN, and documentation.
398* Added tests and documentation of changesign from Johan Rade.
399
400[h4 Boost-1.46.1]
401
402* Fixed issues [@https://svn.boost.org/trac/boost/ticket/5095 #5095], [@https://svn.boost.org/trac/boost/ticket/5095 #5113].
403
404[h4 Boost-1.46.0]
405
406* Added Wald, Inverse Gaussian and geometric distributions.
407* Added information about configuration macros.
408* Added support for mpreal as a real-numbered type.
409
410[h4 Boost-1.45.0]
411
412* Added warnings about potential ambiguity with std random library in distribution and function names.
413* Added inverse gamma distribution and inverse chi_square and scaled inverse chi_square.
414* Editorial revision of documentation, and added FAQ.
415
416[h4 Boost-1.44.0]
417
418* Fixed incorrect range and support for Rayleigh distribution.
419* Fixed numerical error in the quantile of the Student's T distribution: the function was
420returning garbage values for non-integer degrees of freedom between 2 and 3.
421
422[h4 Boost-1.41.0]
423
424* Significantly improved performance for the incomplete gamma function and its inverse.
425
426[h4 Boost-1.40.0]
427
428* Added support for MPFR as a bignum type.
429* Added some full specializations of the policy classes to reduce compile times.
430* Added logistic and hypergeometric distributions, from Gautam Sewani's Google Summer of Code project.
431* Added Laplace distribution submitted by Thijs van den Berg.
432* Updated performance test code to include new distributions, and improved the performance of the non-central distributions.
433* Added SSE2 optimised __lanczos code, from Gautam Sewani's Google Summer of Code project.
434* Fixed bug in cyl_bessel_i that used an incorrect approximation for [nu] = 0.5, also effects the non-central
435   Chi Square Distribution when [nu] = 3, see bug report [@https://svn.boost.org/trac/boost/ticket/2877 #2877].
436* Fixed minor bugs [@https://svn.boost.org/trac/boost/ticket/2873 #2873].
437
438[h4 Boost-1.38.0]
439
440* Added Johan R'''&#xE5;'''de's optimised floating point classification routines.
441* Fixed code so that it compiles in GCC's -pedantic mode (bug report
442[@https://svn.boost.org/trac/boost/ticket/1451 #1451]).
443
444[h4 Boost-1.37.0]
445
446* Improved accuracy and testing of the inverse hypergeometric functions.
447
448[h4 Boost-1.36.0]
449
450* Added Noncentral Chi Squared Distribution.
451* Added Noncentral Beta Distribution.
452* Added Noncentral F Distribution.
453* Added Noncentral T Distribution.
454* Added Exponential Integral Functions.
455* Added Zeta Function.
456* Added Rounding and Truncation functions.
457* Added Compile time powers of runtime bases.
458* Added SSE2 optimizations for Lanczos evaluation.
459
460[h4 Boost-1.35.0: Post Review First Official Release]
461
462* Added Policy based framework that allows fine grained control
463over function behaviour.
464* [*Breaking change:] Changed default behaviour for domain, pole and overflow errors
465to throw an exception (based on review feedback), this
466behaviour can be customised using __Policy's.
467* [*Breaking change:] Changed exception thrown when an internal evaluation error
468occurs to boost::math::evaluation_error.
469* [*Breaking change:] Changed discrete quantiles to return an integer result:
470this is anything up to 20 times faster than finding the true root, this
471behaviour can be customised using __Policy's.
472* Polynomial/rational function evaluation is now customisable and hopefully
473faster than before.
474* Added performance test program.
475
476[h4 Milestone 4: Second Review Candidate (1st March 2007)]
477
478* Moved Xiaogang Zhang's Bessel Functions code into the library,
479and brought them into line with the rest of the code.
480* Added C# "Distribution Explorer" demo application.
481
482[h4 Milestone 3: First Review Candidate (31st Dec 2006)]
483
484* Implemented the main probability distribution and density functions.
485* Implemented digamma.
486* Added more factorial functions.
487* Implemented the Hermite, Legendre and Laguerre polynomials plus the
488spherical harmonic functions from TR1.
489* Moved Xiaogang Zhang's elliptic integral code into the library,
490and brought them into line with the rest of the code.
491* Moved Hubert Holin's existing Boost.Math special functions
492into this library and brought them into line with the rest of the code.
493
494[h4 Milestone 2: Released September 10th 2006]
495
496* Implement preview release of the statistical distributions.
497* Added statistical distributions tutorial.
498* Implemented root finding algorithms.
499* Implemented the inverses of the incomplete gamma and beta functions.
500* Rewrite erf/erfc as rational approximations (valid to 128-bit precision).
501* Integrated the statistical results generated from
502the test data with Boost.Test: uses a database of expected
503results, indexed by test, floating point type, platform, and compiler.
504* Improved lgamma near 1 and 2 (rational approximations).
505* Improved erf/erfc inverses (rational approximations).
506* Implemented Rational function generation (the Remez method).
507
508[h4 Milestone 1: Released March 31st 2006]
509
510* Implement gamma/beta/erf functions along with their incomplete counterparts.
511* Generate high quality test data, against which future improvements can be judged.
512* Provide tools for the evaluation of infinite series, continued fractions, and
513rational functions.
514* Provide tools for testing against tabulated test data, and collecting statistics
515on error rates.
516* Provide sufficient docs for people to be able to find their way around the library.
517
518SVN Revisions:
519
520Sandbox and trunk last synchonised at revision: .
521
522]
523[/
524  Copyright 2006 - 2013 John Maddock and Paul A. Bristow.
525  Distributed under the Boost Software License, Version 1.0.
526  (See accompanying file LICENSE_1_0.txt or copy at
527  http://www.boost.org/LICENSE_1_0.txt).
528]
529
530
531
532