Skip to content

Commit 2c7ced1

Browse files
committed
increase branch size
1 parent 8ebb0f2 commit 2c7ced1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/besseli.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ function besseli(nu, x::T) where T <: Union{Float32, Float64, BigFloat}
140140
nu == 0 && return besseli0(x)
141141
nu == 1 && return besseli1(x)
142142

143-
branch = 30
143+
branch = 60
144144
if nu < branch
145145
inp1 = besseli_large_orders(branch + 1, x)
146146
in = besseli_large_orders(branch, x)
@@ -160,7 +160,7 @@ function besselix(nu, x::T) where T <: Union{Float32, Float64, BigFloat}
160160
nu == 0 && return besseli0x(x)
161161
nu == 1 && return besseli1x(x)
162162

163-
branch = 30
163+
branch = 60
164164
if nu < branch
165165
inp1 = besseli_large_orders_scaled(branch + 1, x)
166166
in = besseli_large_orders_scaled(branch, x)

0 commit comments

Comments
 (0)