Skip to content

Commit a3c8d41

Browse files
authored
Tests #182 (#188)
* Tests #182 * v0.13.1
1 parent ffebcf7 commit a3c8d41

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "ClassicalOrthogonalPolynomials"
22
uuid = "b30e2e7b-c4ee-47da-9d5f-2c5c27239acd"
33
authors = ["Sheehan Olver <[email protected]>"]
4-
version = "0.13"
4+
version = "0.13.1"
55

66
[deps]
77
ArrayLayouts = "4c555306-a7a7-4459-81d9-ec55ddd5c99a"
@@ -39,7 +39,7 @@ HypergeometricFunctions = "0.3.4"
3939
InfiniteArrays = " 0.14"
4040
InfiniteLinearAlgebra = "0.8"
4141
IntervalSets = "0.7"
42-
LazyArrays = "2"
42+
LazyArrays = "2.0.3"
4343
LazyBandedMatrices = "0.10"
4444
QuasiArrays = "0.11"
4545
SpecialFunctions = "1.0, 2"

test/test_normalized.jl

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -286,4 +286,10 @@ import ContinuumArrays: MappedWeightedBasisLayout
286286
g = ApplyQuasiArray(*, W, [1:3; zeros(∞)])
287287
@test P \ g transform(P, x -> g[x])
288288
end
289+
290+
@testset "inv bug (#182)" begin
291+
P = Jacobi(2.0, 0.5)
292+
Q = Jacobi(3.0, 0.5)
293+
@test (P \ Normalized(Q))[1:10,1:10] inv((Normalized(Q) \ P)[1:10,1:10])
294+
end
289295
end

0 commit comments

Comments
 (0)