We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68b6257 commit 3e5ea3cCopy full SHA for 3e5ea3c
Project.toml
@@ -27,7 +27,7 @@ Static = "aedffcd0-7271-4cad-89d0-dc628f76c6d3"
27
ApproxFunOrthogonalPolynomialsStaticExt = "Static"
28
29
[compat]
30
-ApproxFunBase = "0.8.53, 0.9.8"
+ApproxFunBase = "0.8.55, 0.9.11"
31
ApproxFunBaseTest = "0.1"
32
Aqua = "0.6"
33
BandedMatrices = "0.16, 0.17"
test/ChebyshevTest.jl
@@ -220,6 +220,10 @@ include("testutils.jl")
220
x=Fun()
221
@test minimum(x) == -1
222
@test maximum(x) == 1
223
+
224
+ a = abs(x)
225
+ @test maximum(abs, x - a) == maximum(abs, a - x) == 2
226
+ @test norm(x - a, Inf) == norm(a - x, Inf) == 2
227
end
228
229
@testset "Do not overresolve #7" begin
0 commit comments