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 9fa06ae commit 3ebc128Copy full SHA for 3ebc128
1 file changed
src/gamma.jl
@@ -834,7 +834,7 @@ end
834
# branch correct loggamma by offsetting by multiples of 2πi to match the Float64 version
835
function _loggamma_branchcorrect(val_big::Complex{BigFloat}, z::Complex{BigFloat})
836
zf = _loggamma_oracle64_point(z)
837
- val_f = SpecialFunctions.loggamma(zf)
+ val_f = loggamma(zf)
838
imz = imag(val_big)
839
k = round(Int, (Float64(imz) - imag(val_f)) / (2*pi))
840
return Complex{BigFloat}(real(val_big), imz - 2*big(pi)*k)
0 commit comments