Skip to content

Commit 4fd03bd

Browse files
committed
fix coverage
1 parent d608e51 commit 4fd03bd

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/asymptotics.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,6 @@ function _α_αp_poly_10(v, x::T) where T
134134
αp = evalpoly(xinv, (s0, s1, s2, s3, s4, s5, s6, s7, s8, s9, s10))
135135
α = x * evalpoly(xinv, (s0, -s1, -s2/3, -s3/5, -s4/7, -s5/9, -s6/11, -s7/13, -s8/15, -s9/17, -s10/19))
136136
return α, αp
137-
return α, αp
138137
end
139138
#=
140139
function _α_αp_poly_15(v, x::T) where T

test/besselj_test.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,8 +109,8 @@ end
109109
@test isapprox(besselj(10.0, 150.0), SpecialFunctions.besselj(10.0, 150.0), rtol=1e-12)
110110

111111
# test BigFloat for single point
112-
#@test isapprox(besselj(big"2000", big"1500.0"), SpecialFunctions.besselj(big"2000", big"1500"), rtol=5e-20)
113-
#@test isapprox(besselj(big"20", big"1500.0"), SpecialFunctions.besselj(big"20", big"1500"), rtol=5e-20)
112+
@test isapprox(Bessels.besseljy_debye(big"2000", big"1500.0")[1], SpecialFunctions.besselj(big"2000", big"1500"), rtol=5e-20)
113+
@test isapprox(Bessels.besseljy_large_argument(big"20", big"1500.0")[1], SpecialFunctions.besselj(big"20", big"1500"), rtol=5e-20)
114114

115115

116116
# need to test accuracy of negative orders and negative arguments and all combinations within

0 commit comments

Comments
 (0)