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

Remove MP test case: our test data isn't precise enough.

Disable MP expm1 from coverage check.
This commit is contained in:
jzmaddock
2025-04-21 12:14:39 +01:00
parent c0af3630d1
commit 760fca3743
2 changed files with 2 additions and 1 deletions

View File

@@ -54,6 +54,7 @@ namespace boost {
// x^k / k!
// each time that operator() is invoked.
//
// LCOV_EXCL_START multiprecision case only, excluded from coverage analysis
template <class T>
struct expm1_series
{
@@ -119,6 +120,7 @@ namespace boost {
policies::check_series_iterations<T>("boost::math::expm1<%1%>(%1%)", max_iter, pol);
return result;
}
// LCOV_EXCL_STOP
template <class T, class P>
BOOST_MATH_GPU_ENABLED T expm1_imp(T x, const boost::math::integral_constant<int, 53>&, const P& pol)

View File

@@ -69,6 +69,5 @@ BOOST_AUTO_TEST_CASE( test_main )
test(boost::multiprecision::cpp_bin_float_double(0), "cpp_bin_float_double");
test(boost::multiprecision::cpp_bin_float_double_extended(0), "cpp_bin_float_double_extended");
test(boost::multiprecision::cpp_bin_float_quad(0), "cpp_bin_float_quad");
test(boost::multiprecision::cpp_bin_float_100(0), "cpp_bin_float_100");
}