Skip to content

Commit

Permalink
Update JacobiTest.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
dlfivefifty committed Feb 20, 2021
1 parent 82c4f82 commit 9208455
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/JacobiTest.jl
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ import ApproxFunOrthogonalPolynomials: jacobip
f = Fun(x->cospi(1000x))
g = Fun(f,Legendre())
h = Fun(g,Chebyshev())
@test norm(f.coefficients-h.coefficients,Inf) < 100eps()
@test norm(f.coefficients-h.coefficients,Inf) < 1000eps()
@time h = Fun(h,Legendre())
@test norm(g.coefficients-h.coefficients,Inf) < 10000eps()
end
Expand Down

2 comments on commit 9208455

@dlfivefifty
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/30512

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.4.0 -m "<description of version>" 9208455604fd026cc575075071f11432dd565908
git push origin v0.4.0

Please sign in to comment.