Skip to content

Commit 64d8488

Browse files
committed
remove show test
1 parent 252f8a3 commit 64d8488

File tree

3 files changed

+1
-4
lines changed

3 files changed

+1
-4
lines changed

src/besselj.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
# where r1 and r2 are zeros of J0
99
# and P3 and Q8 are a 3 and 8 degree polynomial respectively
1010
# Polynomial coefficients are from [1] which is based on [2]
11-
# See [1] for more details and [2] for coefficients of polynomials.
1211
# For tiny arugments the power series expansion is used.
1312
#
1413
# Branch 2: 5.0 < x < 75.0

src/bessely.jl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@
77
# bessely0 = R(x^2) + 2*log(x)*besselj0(x) / pi
88
# where r1 and r2 are zeros of J0
99
# and P3 and Q8 are a 3 and 8 degree polynomial respectively
10-
# Polynomial coefficients are from [1] which is based on [2]
11-
# See [1] for more details and [2] for coefficients of polynomials.
10+
# Polynomial coefficients are from [1] which is based on [2].
1211
# For tiny arugments the power series expansion is used.
1312
#
1413
# Branch 2: 5.0 < x < 75.0

test/besselj_test.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ j0_big = besselj0.(big.(x))
1515
@test j0_big[1] isa BigFloat
1616

1717
# test against SpecialFunctions.jl
18-
@show maximum(abs.(j0_64 .- j0_SpecialFunctions))
1918
@test j0_32 j0_SpecialFunctions
2019

2120
# BigFloat precision only computed to 128 bits

0 commit comments

Comments
 (0)