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

Coverage: remove testing of lambert_wm1 with integer args.

As there are no valid integer inputs.
This commit is contained in:
jzmaddock
2025-04-30 09:55:15 +01:00
parent 895a4de2ec
commit 82cbeadf51

View File

@@ -1749,11 +1749,6 @@ void instantiate_mixed(RealType)
boost::math::owens_t(fr, dr, pol);
boost::math::owens_t(i, s, pol);
boost::math::lambert_w0(i, pol);
{
int i_zero { 0 };
boost::math::lambert_wm1(i_zero, pol);
}
boost::math::lambert_w0_prime(i, pol);
#endif
#ifdef TEST_GROUP_11
@@ -1950,11 +1945,6 @@ void instantiate_mixed(RealType)
test::owens_t(fr, dr);
test::owens_t(i, s);
boost::math::lambert_w0(i);
{
int i_zero { 0 };
boost::math::lambert_wm1(i_zero);
}
boost::math::lambert_w0_prime(i);
#endif
#endif