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

Continue try repair LCOV code annotations

This commit is contained in:
ckormanyos
2025-04-27 16:18:47 +02:00
parent 9f0490ea81
commit bc0635f5be
3 changed files with 4 additions and 3 deletions

View File

@@ -3382,7 +3382,7 @@ BOOST_MATH_GPU_ENABLED inline RealType landau_quantile_lower_imp_prec(const Real
// Rational Approximation
// Maximum Relative Error: 5.3064e-35
//LCOV_EXCL_START
// LCOV_EXCL_START
BOOST_MATH_STATIC const RealType P[14] = {
BOOST_MATH_BIG_CONSTANT(RealType, 113, -5.09971143249822249471944441552701756051e0),
BOOST_MATH_BIG_CONSTANT(RealType, 113, -3.00154235169065403254826962372636417554e-2),

View File

@@ -524,7 +524,7 @@ BOOST_MATH_GPU_ENABLED inline T cyl_neumann_zero_imp(T v, int m, const Policy& p
if(number_of_iterations >= policies::get_max_root_iterations<Policy>())
{
return policies::raise_evaluation_error<T>(function, "Unable to locate root in a reasonable time: Current best guess is %1%", yvm, Policy()); //LCOV_EXCL_LINE
return policies::raise_evaluation_error<T>(function, "Unable to locate root in a reasonable time: Current best guess is %1%", yvm, Policy()); // LCOV_EXCL_LINE
}
return yvm;

View File

@@ -361,7 +361,8 @@ namespace boost { namespace math {
// Truncated series evaluation for small x and v an integer,
// much quicker in this area than temme_jy below.
// This code is only used in the multiprecision case, otherwise
// we go via bessel_jn. LCOV_EXCL_START
// we go via bessel_jn.
// LCOV_EXCL_START
if(kind&need_j)
Jv = bessel_j_small_z_series(v, x, pol);
else