Skip to content

Commit

Permalink
Fix failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
chriselrod committed Oct 25, 2021
1 parent 17cfa5d commit 056178d
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions src/priv.jl
Original file line number Diff line number Diff line change
Expand Up @@ -428,17 +428,13 @@ end
m, e = splitfloat(d)
# m = significand(d); e = exponent(d)
x = ddiv(dsub2(m, T(1.0)), dadd2(T(1.0), m))
# @show
x2 = dsqu(x)

t = logk_kernel(x2)

s = Double(0.6931471803691238 * e, 1.9082149292705877e-10 * e)
# s = dmul(MDLN2(T), e)
# @show Float64(s) s
# s = Double(T(0.6931471803691238) * e, T(1.9082149292705877e-10) * e)
s = dmul(MDLN2(T), e)
s = dadd(s, scale(x, T(2.0)))
# @show s
s = dadd(s, dmul(dmul(x2, x), t))
# @show s
return s
end

2 comments on commit 056178d

@chriselrod
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/47476

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.6.28 -m "<description of version>" 056178d6e7297e1b484c1f0699e78d2ce474920c
git push origin v0.6.28

Please sign in to comment.