Skip to content

Commit

Permalink
fix execution errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Expander committed Sep 28, 2023
1 parent 2faed3e commit 30a2073
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/Eta.jl
Original file line number Diff line number Diff line change
Expand Up @@ -90,5 +90,5 @@ function neg_eta_f46(n::Integer)::Float64
end

function neg_eta_big(n::Integer)::BigFloat
(exp2(1 - n) - one(T))*zeta(n, T)
(exp2(1 - n) - one(BigFloat))*zeta_big(n)
end
2 changes: 2 additions & 0 deletions src/Zeta.jl
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
using Base.MPFR: ROUNDING_MODE

# zeta(n) for n = 2,...,33
const ZETA_POS = (
zeta2, zeta3, zeta4, zeta5, zeta6,
Expand Down

0 comments on commit 30a2073

Please sign in to comment.