summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/math/test/sinhc_test.hpp
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 18:45:59 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 18:45:59 +0000
commit19fcec84d8d7d21e796c7624e521b60d28ee21ed (patch)
tree42d26aa27d1e3f7c0b8bd3fd14e7d7082f5008dc /src/boost/libs/math/test/sinhc_test.hpp
parentInitial commit. (diff)
downloadceph-upstream/16.2.11+ds.tar.xz
ceph-upstream/16.2.11+ds.zip
Adding upstream version 16.2.11+ds.upstream/16.2.11+dsupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/boost/libs/math/test/sinhc_test.hpp')
-rw-r--r--src/boost/libs/math/test/sinhc_test.hpp92
1 files changed, 92 insertions, 0 deletions
diff --git a/src/boost/libs/math/test/sinhc_test.hpp b/src/boost/libs/math/test/sinhc_test.hpp
new file mode 100644
index 000000000..b50bd2e67
--- /dev/null
+++ b/src/boost/libs/math/test/sinhc_test.hpp
@@ -0,0 +1,92 @@
+// unit test file sinhc.hpp for the special functions test suite
+
+// (C) Copyright Hubert Holin 2003.
+// Distributed under 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 <functional>
+#include <iomanip>
+#include <iostream>
+#include <complex>
+
+
+#include <boost/math/special_functions/sinhc.hpp>
+
+#define BOOST_TEST_MAIN
+#include <boost/test/unit_test.hpp>
+
+
+BOOST_TEST_CASE_TEMPLATE_FUNCTION(sinhc_pi_test, T)
+{
+ using ::std::abs;
+
+ using ::std::numeric_limits;
+
+ using ::boost::math::sinhc_pi;
+
+
+ BOOST_TEST_MESSAGE("Testing sinhc_pi in the real domain for "
+ << string_type_name<T>::_() << ".");
+
+ BOOST_CHECK_PREDICATE(::std::less_equal<T>(),
+ (abs(sinhc_pi<T>(static_cast<T>(0))-static_cast<T>(1)))
+ (numeric_limits<T>::epsilon()));
+}
+
+
+BOOST_TEST_CASE_TEMPLATE_FUNCTION(sinhc_pi_complex_test, T)
+{
+ using ::std::abs;
+ using ::std::sin;
+
+ using ::std::numeric_limits;
+
+ using ::boost::math::sinhc_pi;
+
+
+ BOOST_TEST_MESSAGE("Testing sinhc_pi in the complex domain for "
+ << string_type_name<T>::_() << ".");
+
+ BOOST_CHECK_PREDICATE(::std::less_equal<T>(),
+ (abs(sinhc_pi<T>(::std::complex<T>(0, 1))-
+ ::std::complex<T>(sin(static_cast<T>(1)))))
+ (numeric_limits<T>::epsilon()));
+}
+
+
+void sinhc_pi_manual_check()
+{
+ using ::boost::math::sinhc_pi;
+
+
+ BOOST_TEST_MESSAGE(" ");
+ BOOST_TEST_MESSAGE("sinc_pi");
+
+ for (int i = 0; i <= 100; i++)
+ {
+#ifndef BOOST_MATH_NO_LONG_DOUBLE_MATH_FUNCTIONS
+ BOOST_TEST_MESSAGE( ::std::setw(15)
+ << sinhc_pi<float>(static_cast<float>(i-50)/
+ static_cast<float>(50))
+ << ::std::setw(15)
+ << sinhc_pi<double>(static_cast<double>(i-50)/
+ static_cast<double>(50))
+ << ::std::setw(15)
+ << sinhc_pi<long double>(static_cast<long double>(i-50)/
+ static_cast<long double>(50)));
+#else
+ BOOST_TEST_MESSAGE( ::std::setw(15)
+ << sinhc_pi<float>(static_cast<float>(i-50)/
+ static_cast<float>(50))
+ << ::std::setw(15)
+ << sinhc_pi<double>(static_cast<double>(i-50)/
+ static_cast<double>(50)));
+#endif
+ }
+
+ BOOST_TEST_MESSAGE(" ");
+}
+
+