2
0
mirror of https://github.com/boostorg/math.git synced 2026-01-19 04:22:09 +00:00

Reporting: Add missing file.

This commit is contained in:
jzmaddock
2018-03-09 09:15:03 +00:00
parent 29b99df508
commit 4b415a64d1

View File

@@ -0,0 +1,18 @@
// Copyright John Maddock 2015.
// Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
#include <cmath>
int main()
{
long double d = 1;
d = std::erf(d);
d = std::erfc(d);
d = std::tgamma(d);
d = std::lgamma(d);
d = std::comp_ellint_1(d);
return d != 0 ? 0 : 1;
}