Skip to content

Commit 2944540

Browse files
committed
test Eye * PaddedMatrix
1 parent 0b393df commit 2944540

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,6 +1,6 @@
11
name = "InfiniteLinearAlgebra"
22
uuid = "cde9dba0-b1de-11e9-2c62-0bab9446c55c"
3-
version = "0.6.4"
3+
version = "0.6.5"
44

55
[deps]
66
ArrayLayouts = "4c555306-a7a7-4459-81d9-ec55ddd5c99a"
@@ -17,7 +17,7 @@ MatrixFactorizations = "a3b82374-2e81-5b9e-98ce-41277c0e4c87"
1717
SemiseparableMatrices = "f8ebbe35-cbfb-4060-bf7f-b10e4670cf57"
1818

1919
[compat]
20-
ArrayLayouts = "0.7.5"
20+
ArrayLayouts = "0.7.7"
2121
BandedMatrices = "0.16.9"
2222
BlockArrays = "0.16"
2323
BlockBandedMatrices = "0.11"

test/test_infbanded.jl

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,4 +158,10 @@ import BandedMatrices: _BandedMatrix
158158
H = ApplyArray(hvcat, (2,2), 1, [1 Zeros(1,∞)], [1; Zeros(∞)], Diagonal(1:∞))
159159
@test_broken bandwidths(H) == (1,1)
160160
end
161+
162+
@testset "Banded * PaddedMatrix" begin
163+
A = Eye(∞)[2:∞,:]
164+
B = PaddedArray(randn(3,3),ℵ₀,ℵ₀)
165+
@test (A*B)[1:10,1:10] A[1:10,1:10] * B[1:10,1:10]
166+
end
161167
end

0 commit comments

Comments
 (0)