Skip to content

Commit ef12079

Browse files
committed
fix test coverage
1 parent 61906f2 commit ef12079

File tree

5 files changed

+6
-11
lines changed

5 files changed

+6
-11
lines changed

src/Bessels.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ include("Float128/constants.jl")
3636
include("math_constants.jl")
3737
include("U_polynomials.jl")
3838
include("recurrence.jl")
39-
#include("parse.jl")
4039
#include("hankel.jl")
4140

4241
end

src/hankel.jl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#= Aren't tested yet
12
function besselh(nu::Float64, k::Integer, x::AbstractFloat)
23
if k == 1
34
return complex(besselj(nu, x), bessely(nu, x))
@@ -10,3 +11,4 @@ end
1011
1112
hankelh1(nu, z) = besselh(nu, 1, z)
1213
hankelh2(nu, z) = besselh(nu, 2, z)
14+
=#

src/math_constants.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
const ONEOSQPI(::Type{BigFloat}) = big"5.6418958354775628694807945156077258584405E-1"
22
const TWOOPI(::Type{BigFloat}) = big"6.3661977236758134307553505349005744813784E-1"
3-
const SQPIO2(::Type{BigFloat}) = big"1.253314137315500251207882642405522626503493370304969158314961788171146827303924"
4-
const SQ1O2PI(::Type{BigFloat}) = big"0.3989422804014326779399460599343818684758586311649346576659258296706579258993008"
3+
#const SQPIO2(::Type{BigFloat}) = big"1.253314137315500251207882642405522626503493370304969158314961788171146827303924"
4+
#const SQ1O2PI(::Type{BigFloat}) = big"0.3989422804014326779399460599343818684758586311649346576659258296706579258993008"
55

66

77
const PIO4(::Type{Float64}) = .78539816339744830962

src/parse.jl

Lines changed: 0 additions & 7 deletions
This file was deleted.

test/besseli_test.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,4 +81,5 @@ t = [besseli(m, x) for m in m, x in x]
8181
@test t [SpecialFunctions.besseli(m, x) for m in m, x in x]
8282

8383
@test besselix(10, 2.0) SpecialFunctions.besselix(10, 2.0)
84-
84+
@test besselix(100, 14.0) SpecialFunctions.besselix(100, 14.0)
85+
@test besselix(120, 504.0) SpecialFunctions.besselix(120, 504.0)

0 commit comments

Comments
 (0)