2
0
mirror of https://github.com/boostorg/math.git synced 2026-02-22 15:32:28 +00:00
Commit Graph

4523 Commits

Author SHA1 Message Date
jzmaddock
2bdb511b5b Merge pull request #198 from boostorg/autodiff
Autodiff integration test
2019-04-25 20:07:55 +01:00
John Maddock
067e778d75 Merge branch 'autodiff' of https://github.com/pulver/math into autodiff 2019-04-23 18:04:27 +01:00
Nick
5e219748bc Merge pull request #195 from boostorg/performance_improvements
Vectorize mean calculation.
2019-04-14 10:32:11 -04:00
Nick
165cf9e480 Vectorize mean calculation. 2019-04-13 17:22:24 -04:00
Nick Thompson
748172f279 Merge branch 'develop' of https://github.com/boostorg/math into develop [CI SKIP] 2019-04-03 19:40:02 -04:00
Nick Thompson
166e5fb513 Remove control character(?) from comment. [CI SKIP] 2019-04-03 19:39:49 -04:00
jzmaddock
475179d3bb Set path for admonishment graphics in PDF builds. 2019-04-02 18:44:57 +01:00
jzmaddock
5a2cc1c56b Explicit examples in Jamfile weren't actually explicit, fix that. 2019-03-25 19:04:02 +00:00
jzmaddock
e34c2eca9c Merge pull request #190 from boostorg/float128_patches
Apply numeric_limits patches for __float128 from Gero Peterhoff.
2019-03-23 08:53:07 +00:00
jzmaddock
072ebaac25 Apply numeric_limits patches for __float128 from Gero Peterhoff. 2019-03-22 19:45:35 +00:00
jzmaddock
08b7a6145f Correct lgamma multiprecision case to correctly return sign of tgamma when requested.
Found while testing 1F1.
2019-03-21 20:14:48 +00:00
jzmaddock
004c0b0595 Docs: Update history and version number, regen docs.
[CI SKIP]
boost-1.70.0.beta1
2019-03-04 19:17:21 +00:00
John Maddock
6112e12e8f Merge branch 'master' into develop 2019-03-03 08:57:54 +00:00
jzmaddock
ecd07eac85 Merge branch 'develop' of https://github.com/boostorg/math into develop 2019-03-02 19:56:26 +00:00
jzmaddock
390fc04bf0 Add libfftw3 support to the tests and fix up one failure that results. 2019-03-02 19:55:44 +00:00
jzmaddock
8d0a794b38 Suppress gcc warning from the use of Q constants when -pedantic is in effect 2019-03-02 19:43:41 +00:00
Nick Thompson
673d7a876d Remove unused variable. [CI SKIP] 2019-03-02 11:35:04 -07:00
pulver
2ffd44200a Merge branch 'develop' into autodiff 2019-02-28 08:45:53 -05:00
jzmaddock
2ae29b5134 Manually check out libs/timer. 2019-02-28 09:30:27 +00:00
John Maddock
5b180e2370 Merge branch 'develop' 2019-02-27 18:37:09 +00:00
jzmaddock
3fcc5fa245 Regenerate docs.
[CI SKIP]
2019-02-27 18:36:34 +00:00
jzmaddock
7b8e74b938 Merge branch 'develop' 2019-02-27 18:30:17 +00:00
jzmaddock
510ef0d054 Correct expected iterations in test_root_iterations.cpp 2019-02-26 09:18:45 +00:00
jzmaddock
24b1fe51e5 CI: split quadrature tests into a separate group to try to avoid timeouts. 2019-02-24 13:13:57 +00:00
jzmaddock
640f6cc510 test_root_iterations.cpp: adjust expected result for vc10. 2019-02-24 13:06:21 +00:00
Matt Pulver
b7ea8cef5c Revert test_autodiff_4 - these two tests break test_autodiff_3. Attempt to fix asinh() test that fails on gcc-mingw for unknown reason. 2019-02-23 11:56:16 -05:00
Matt Pulver
fd1262bdcf Move 2 test_autodiff_4 tests back into test_autodiff_3. 2019-02-22 18:05:43 -05:00
Nick Thompson
aff668f28c Remove long double and multiprecision tests so build unbreaks. 2019-02-21 10:16:35 -07:00
Matt Pulver
418887e137 Move round_and_trunc and iround_and_itrunc tests from _4 to _3. Drop lambert_w0 test. 2019-02-21 08:51:13 -05:00
jzmaddock
a3bb22494a Root finding: correct bug where we could incorrectly terminate when the last iteration was pathological and we had to bisect. Fixes: https://github.com/boostorg/math/issues/184. 2019-02-20 20:53:00 +00:00
Matt Pulver
f03c562721 Remove mixed_partials_test and black_scholes_test. These are in the examples folder. 2019-02-19 18:25:04 -05:00
Matt Pulver
7fb4062e97 Split autodiff tests into 4 files due to mingw 'too many sections'. Comment out unused #include <boost/multiprecision/cpp_bin_float.hpp> (tested in examples). 2019-02-18 18:40:26 -05:00
Matt Pulver
992b6aae15 Split autodiff tests into 3 files due to mingw 'too many sections'. Doc: improve General Functions subsection. 2019-02-17 11:14:08 -05:00
pulver
4d8622d9bd Merge branch 'develop' into autodiff 2019-02-16 15:06:12 -05:00
Matt Pulver
bd14611c59 Split autodiff tests into 2 files due to mingw 'too many sections'. 2019-02-16 15:04:21 -05:00
Nick
94034080e7 Merge pull request #179 from boostorg/barycentric_move_constructor [CI SKIP]
Add move constructor for barycentric rational interpolation. [CI SKIP]
2019-02-14 22:43:13 -07:00
Matt Pulver
1bf3ba6bd2 Fix example compiler requirements. Add <toolset>gcc-mingw:<cxxflags>-Wa,-mbig-obj to test/Jamefile.v2. Minor doc/code updates. 2019-02-14 10:54:42 -05:00
Nick Thompson
b44f37845a Use m_x(std::move(x)) rather than m_x{std::move(x)}. 2019-02-12 11:50:21 -07:00
Matt Pulver
9418a4e2d4 Doc: Add sections Migrating Code, and Function Writing Guidelines. Additional math function overloads: acosh, asinh, atanh, cosh, erf, lambert_w0, sinc, sinh, tanh. Attempt to fix appveyor errors. 2019-02-12 07:43:04 -05:00
Nick Thompson
8e78096977 Add more C++11 feature requirements to barycentric_rational. 2019-02-11 21:42:12 -07:00
Nick Thompson
c60af18460 Merge branch 'develop' into barycentric_move_constructor 2019-02-11 09:46:28 -07:00
Nick Thompson
6c1af3a3aa Add extra C++11 features to requirements for barycentric_rational example. [CI SKIP] 2019-02-11 09:46:25 -07:00
Nick Thompson
210c53151c Increase Lanczos smoothing error rate for Windows (again). 2019-02-10 10:45:33 -07:00
Nick Thompson
cac1059c78 Barycentric rational test still generates object too big. 2019-02-09 18:20:03 -07:00
Nick Thompson
5212ce1276 Merge branch 'develop' into barycentric_move_constructor [CI SKIP] 2019-02-09 18:10:11 -07:00
Nick Thompson
8c762558e3 Increase error rates for Lanczos smoothing. 2019-02-09 16:44:57 -07:00
Nick Thompson
8024c4eae0 Remove instantiation of std::complex on multiprecision types. 2019-02-09 09:46:45 -07:00
Nick
3153cd9390 Merge pull request #182 from katrinleinweber/resolve-DOIs-securely [CI SKIP]
Hyperlink DOIs to preferred resolver [CI SKIP]
2019-02-07 20:30:30 -05:00
Nick Thompson
4a6d80e059 Fix object size too big in MSVC 14 in Catmull-Rom tests. 2019-02-07 18:28:49 -07:00
Nick Thompson
0d27687236 MSVC 14 does not like uint8_t. 2019-02-06 15:04:15 -05:00