We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d394ba commit 283ee5eCopy full SHA for 283ee5e
src/AiryFunctions/cairy.jl
@@ -312,7 +312,7 @@ function airybi_large_args(z::Complex{T}) where T
312
end
313
314
@inline function airyaix_large_args(z::Complex{T}) where T
315
- if ~isfinite(z)
+ if isinf(z)
316
if abs(angle(z)) < T(2π/3)
317
e = exp(-z)
318
return (e, -e)
@@ -339,7 +339,7 @@ end
339
340
341
@inline function airybix_large_args(z::Complex{T}) where T
342
343
344
e = exp(z)
345
return (e, e)
0 commit comments