From 82cbeadf51b32ea6a6d776a60e5bf57d0b737da7 Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Wed, 30 Apr 2025 09:55:15 +0100 Subject: [PATCH] Coverage: remove testing of lambert_wm1 with integer args. As there are no valid integer inputs. --- test/compile_test/instantiate.hpp | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/test/compile_test/instantiate.hpp b/test/compile_test/instantiate.hpp index 85c85f785..410d50d89 100644 --- a/test/compile_test/instantiate.hpp +++ b/test/compile_test/instantiate.hpp @@ -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