Skip to content

Commit

Permalink
Merge 03e5d89 into 89ac601
Browse files Browse the repository at this point in the history
  • Loading branch information
musm committed Aug 16, 2017
2 parents 89ac601 + 03e5d89 commit 8f0cedb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/bessel.jl
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ end

## Airy functions
let
const ai::Array{Float64,1} = Array{Float64}(2)
const ae::Array{Int32,1} = Array{Int32}(2)
const ai = Vector{Float64}(2)
const ae = Vector{Int32}(2)
global _airy, _biry
function _airy(z::Complex128, id::Int32, kode::Int32)
ccall((:zairy_,openspecfun), Void,
Expand Down Expand Up @@ -153,9 +153,9 @@ for jy in ("j","y"), nu in (0,1)
end


const cy = Array{Float64}(2)
const ae = Array{Int32}(2)
const wrk = Array{Float64}(2)
const cy = Vector{Float64}(2)
const ae = Vector{Int32}(2)
const wrk = Vector{Float64}(2)

function _besselh(nu::Float64, k::Int32, z::Complex128, kode::Int32)
ccall((:zbesh_,openspecfun), Void,
Expand Down

0 comments on commit 8f0cedb

Please sign in to comment.