Nick Thompson
9b14fff12e
Remove header deprecation warnings.
2019-08-10 08:50:12 -04:00
jzmaddock
ba365b5aaa
Enable running of tests with exception handling off.
...
And fix a few bugs that showed up in the process.
Currently msvc-only (not GCC as Boost.Test doesn't build).
2015-09-05 19:08:28 +01:00
jzmaddock
ee2d3a68af
Oh my, fix lots of typos (search and replace).
2015-06-18 18:47:50 +01:00
jzmaddock
728ec23c21
Add lots of missing #includes.
2014-03-21 17:36:18 +00:00
jzmaddock
4c81a35178
Reinstate needed #include.
2014-02-28 13:31:09 +00:00
PABristow
da499e8cc1
Adjusted tests and comments for random variate infinite.
2014-02-18 17:18:00 +00:00
Gennadiy Rozental
3bc111cdb7
Eliminated test_exec_monitor
...
[SVN r82782]
2013-02-08 05:09:47 +00:00
Paul A. Bristow
70868fb2a2
Added out of range checks (and normal.hpp now range infinity if supported.
...
[SVN r78769]
2012-05-30 16:39:12 +00:00
John Maddock
3e9242ade2
Improve testing of error conditions and fix any errors detected.
...
Takes care of distributions normal-weibull.
Refs #6937 .
[SVN r78726]
2012-05-28 17:42:50 +00:00
Steven Watanabe
3524499fc0
Revert [67111] (addition of boost/detail/iomanip.hpp) and all the commits that depend on it. ([68137], [68140], [68141], [68154], and [68165]).
...
[SVN r68168]
2011-01-15 08:11:51 +00:00
Bryce Adelstein-Lelbach
f11d1c3c2b
Replacing the use of <iomanip> with <boost/detail/iomanip.hpp> across Boost.
...
On Linux, GNU's libstdc++, which is the default stdlib for icc and clang,
cannot parse the <iomanip> header in version 4.5+ (which thankfully neither
compiler advises the use of yet), as it's original C++98-friendly
implementation has been replaced with a gnu++0x implementation.
<boost/detail/iomanip.hpp> is a portable implementation of <iomanip>, providing
boost::detail::setfill, boost::detail::setbase, boost::detail::setw,
boost::detail::setprecision, boost::detail::setiosflags and
boost::detail::resetiosflags.
[SVN r68140]
2011-01-14 02:35:58 +00:00
Paul A. Bristow
4b785900bc
Added comment on pch include needed.
...
[SVN r66717]
2010-11-24 16:27:33 +00:00
John Maddock
35627d741f
Fix tests that fail with gcc in C++0x mode.
...
Add some stricter tests for fp-classification routines.
[SVN r66451]
2010-11-08 12:55:06 +00:00
Paul A. Bristow
d8161bad51
Added comment on pch.hpp include needed.
...
[SVN r64965]
2010-08-23 11:46:47 +00:00
John Maddock
2246b77395
Change tests to link to external Boost.Test library as this speeds build times by several factors when building with Intel C++.
...
Change fpclassify to use our code rather than std::fpclassify with Intel C++ as it doesn't always compile the latter.
[SVN r51576]
2009-03-03 17:16:56 +00:00
John Maddock
eb9b7a8839
Improve pch support.
...
Move configuration tests to their own directory so they're only run when required.
[SVN r49442]
2008-10-23 12:24:45 +00:00
John Maddock
e7db05cc1a
Merged changes from Trunk.
...
[SVN r41085]
2007-11-14 12:11:23 +00:00
John Maddock
722a2d848d
Merged changes in Trunk.
...
[SVN r40161]
2007-10-18 18:05:13 +00:00
Paul A. Bristow
7f0f982774
changed to use
...
if((boost::math::isinf)(x))
{
if(x < 0) return 0;
return 1;
}
to get rid of 4127 warnings
but still need to supress 4127
[SVN r39346]
2007-09-17 10:08:11 +00:00
Paul A. Bristow
b82be99b65
added test to suit addition of special caese x = infinity for pdf and cdf
...
[SVN r39319]
2007-09-16 15:19:00 +00:00
Paul A. Bristow
173a541bf4
tests changed to allow pdf and cdf infinity.
...
[SVN r39311]
2007-09-16 10:10:31 +00:00
Paul A. Bristow
9d6e4b4f7c
added tests for new checks on bad arguments like scale <=0
...
[SVN r39208]
2007-09-12 09:39:07 +00:00
Paul A. Bristow
c661dbbcd0
added test for synonyms location & scale for mean & sd
...
[SVN r38926]
2007-08-25 09:03:02 +00:00
Paul A. Bristow
cb82bea11e
Paul's Big policy revison
...
[SVN r38413]
2007-08-03 10:13:47 +00:00
Paul A. Bristow
2f47640e6c
Added median tests
...
[SVN r3540]
2006-12-20 15:33:43 +00:00
Paul A. Bristow
b0aed3e830
comment on constructor.
...
[SVN r3499]
2006-12-05 10:02:21 +00:00
Paul A. Bristow
71fb3c7068
Added test for convenience construction.
...
[SVN r3294]
2006-10-23 10:18:53 +00:00
John Maddock
5f5d873826
Added concept checks and concept archetypes.
...
Uprated tests and distributions to match concept requirements.
[SVN r3251]
2006-10-13 17:37:27 +00:00
Paul A. Bristow
2a191a2655
1st poisson distribuion sanity test.
...
[SVN r3247]
2006-10-10 15:32:21 +00:00
John Maddock
47690421b6
Added remez and minima tests.
...
Added some mimimal fixes to get the code to compile with Borland-5.8.2, although frankly it's more trouble than it's worth.
[SVN r3200]
2006-09-16 16:41:18 +00:00
John Maddock
9d7123eecf
More or less completed normal/binomial/students-t distributions.
...
Updated docs and tests.
[SVN r3160]
2006-08-25 18:03:48 +00:00
John Maddock
7e902a680e
Added root-2 constant.
...
Fixed complement code so that constructors are used now.
Adjusted pre-formatted parts of tutorial.
Added normal distribution plus tests.
[SVN r3145]
2006-08-14 12:33:49 +00:00