Skip to content

Commit

Permalink
Merge branch 'master' into compactshow
Browse files Browse the repository at this point in the history
  • Loading branch information
jishnub authored Jul 21, 2022
2 parents 6f9522c + af037cb commit d2678ac
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 12 deletions.
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "ApproxFun"
uuid = "28f2ccd6-bb30-5033-b560-165f7b14dc2f"
version = "0.13.2"
version = "0.13.4"

[deps]
AbstractFFTs = "621f4979-c628-5d54-868e-fcf4e3e8185c"
Expand Down Expand Up @@ -28,7 +28,7 @@ Calculus = "0.5"
DomainSets = "0.3, 0.4, 0.5"
DualNumbers = "0.6.2"
FFTW = "1"
FastTransforms = "0.13"
FastTransforms = "0.13, 0.14"
RecipesBase = "1.0"
Reexport = "1.0"
SpecialFunctions = "1.1, 2"
Expand Down
3 changes: 3 additions & 0 deletions docs/Project.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[deps]
ApproxFun = "28f2ccd6-bb30-5033-b560-165f7b14dc2f"
BandedMatrices = "aae01518-5342-5314-be14-df237901396f"
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
DomainSets = "5b8099bc-c8ec-5219-889f-1d9e522a28bf"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
18 changes: 8 additions & 10 deletions test/ReadmeTest.jl
Original file line number Diff line number Diff line change
Expand Up @@ -107,16 +107,14 @@ using ApproxFun, SpecialFunctions, LinearAlgebra, Test
# [ones(∂(d));0.];tolerance=1E-10) # First four entries of rhs are
#



QR = qr([Dirichlet(d);Laplacian()+100I])
@time ApproxFun.resizedata!(QR,:,4000)
@time u = \(QR,
[ones((d));0.];tolerance=1E-7)


@test u(0.1,1.) 1.0
@test (u(0.1,0.2),-0.02768276827514463;atol=1E-8)
# this is broken on v1.6 (on BandedArrays < v0.16.16), so we skip on errors
if VERSION >= v"1.7"
QR = qr([Dirichlet(d);Laplacian()+100I])
@time ApproxFun.resizedata!(QR,:,4000)
@time u = \(QR, [ones((d)); 0.]; tolerance=1E-7)
@test u(0.1,1.) 1.0
@test (u(0.1,0.2),-0.02768276827514463;atol=1E-8)
end
end

# @testset "BigFloat" begin
Expand Down

0 comments on commit d2678ac

Please sign in to comment.