Skip to content

Commit 3ebc128

Browse files
committed
fix ExplicitImports test
1 parent 9fa06ae commit 3ebc128

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/gamma.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -834,7 +834,7 @@ end
834834
# branch correct loggamma by offsetting by multiples of 2πi to match the Float64 version
835835
function _loggamma_branchcorrect(val_big::Complex{BigFloat}, z::Complex{BigFloat})
836836
zf = _loggamma_oracle64_point(z)
837-
val_f = SpecialFunctions.loggamma(zf)
837+
val_f = loggamma(zf)
838838
imz = imag(val_big)
839839
k = round(Int, (Float64(imz) - imag(val_f)) / (2*pi))
840840
return Complex{BigFloat}(real(val_big), imz - 2*big(pi)*k)

0 commit comments

Comments
 (0)