2
0
mirror of https://github.com/boostorg/math.git synced 2026-01-19 16:32:10 +00:00

Remove no longer needed special_functions sub-directory.

Also fix lots of inspect-report failures.
This commit is contained in:
jzmaddock
2015-09-07 19:35:29 +01:00
parent 59a2bd5cb8
commit d719e4b567
56 changed files with 116 additions and 1884 deletions

View File

@@ -160,7 +160,7 @@ relative_difference = 3.40282347e+038
/*`
Note that finite values are always infinitely far away from infinities even if those finite values are very large:*/
a = std::numeric_limits<float>::max();
a = (std::numeric_limits<float>::max)();
b = std::numeric_limits<float>::infinity();
std::cout << "a = " << a << std::endl;
std::cout << "b = " << b << std::endl;
@@ -377,7 +377,7 @@ A few values near zero are tested with varying tolerance below.
c = std::numeric_limits<float>::denorm_min(); // 1.40129846e-045
std::cout << "denorm_ min =" << c << ", is_small is " << is_small(c, epsilon) << std::endl; // true
c = std::numeric_limits<float>::min(); // 1.17549435e-038
c = (std::numeric_limits<float>::min)(); // 1.17549435e-038
std::cout << "min = " << c << ", is_small is " << is_small(c, epsilon) << std::endl; // true
c = 1 * epsilon; // 1.19209290e-007