mirror of
https://github.com/boostorg/math.git
synced 2026-07-23 13:44:09 +00:00
64 lines
1.6 KiB
C++
64 lines
1.6 KiB
C++
// (C) Copyright Christopher Kormanyos 2025.
|
|
// 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)
|
|
|
|
// See also: https://godbolt.org/z/nhMsKb8Yr
|
|
|
|
#ifndef BOOST_MATH_STANDALONE
|
|
#include <boost/core/lightweight_test.hpp>
|
|
#endif
|
|
|
|
#ifndef BOOST_MATH_BUILD_MODULE
|
|
#include <boost/math/special_functions/bessel.hpp>
|
|
#else
|
|
import boost.math;
|
|
#endif
|
|
|
|
#ifdef BOOST_MATH_STANDALONE
|
|
// Standalone/module builds cannot use Boost.Core; map lightweight_test onto math_unit_test.hpp.
|
|
#include "math_unit_test.hpp"
|
|
#define BOOST_TEST(expr) CHECK_TRUE((expr))
|
|
namespace boost { inline int report_errors() { return ::boost::math::test::report_errors(); } }
|
|
#endif
|
|
|
|
#ifndef BOOST_MATH_BUILD_MODULE
|
|
#include <cmath>
|
|
#include <limits>
|
|
#endif
|
|
|
|
namespace local
|
|
{
|
|
template<typename FloatType>
|
|
auto test() -> void
|
|
{
|
|
using float_type = FloatType;
|
|
|
|
using std::ldexp;
|
|
|
|
// N[BesselY[-1, (2875/1000) (2^(-128))], 51]
|
|
// 7.53497332069250908152363321534337029122980775749906*10^37
|
|
|
|
const float_type x { static_cast<float_type>(ldexp(2.875L, -128)) };
|
|
|
|
constexpr float_type ctrl { static_cast<float_type>(7.53497332069250908152363321534337029122980775749906E37L) };
|
|
|
|
const float_type result = ::boost::math::cyl_neumann(-1, x);
|
|
|
|
constexpr float_type tol = std::numeric_limits<float_type>::epsilon() * 16;
|
|
|
|
using ::std::fabs;
|
|
|
|
BOOST_TEST(result > 0);
|
|
BOOST_TEST(fabs(1 - (result / ctrl)) < tol);
|
|
}
|
|
} // namespace local
|
|
|
|
auto main() -> int
|
|
{
|
|
local::test<double>();
|
|
local::test<long double>();
|
|
|
|
return boost::report_errors();
|
|
}
|