Skip to content

Commit a42f827

Browse files
committed
Update test_infqr.jl
1 parent 49ff77a commit a42f827

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

test/test_infqr.jl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,23 +43,23 @@ import SemiseparableMatrices: AlmostBandedLayout, VcatAlmostBandedLayout
4343

4444
@testset "col/rowsupport" begin
4545
A = _BandedMatrix(Vcat(Ones(1,∞), (1:∞)', Ones(1,∞)), ℵ₀, 1, 1)
46-
F = qr(A);
46+
F = qr(A)
4747
@test MemoryLayout(typeof(F.factors)) isa AdaptiveLayout{BandedColumns{DenseColumnMajor}}
4848
@test bandwidths(F.factors) == (1,2)
4949
@test colsupport(F.factors,1) == 1:2
5050
@test colsupport(F.factors,5) == 3:6
5151
@test rowsupport(F.factors,1) == 1:3
5252
@test rowsupport(F.factors,5) == 4:7
53-
Q,R = F;
53+
Q,R = F
5454
@test MemoryLayout(typeof(R)) isa TriangularLayout
5555
@test colsupport(R,1) == 1:1
5656
@test colsupport(R,5) == 3:5
5757
@test rowsupport(R,1) == 1:3
5858
@test rowsupport(R,5) == 5:7
5959
@test colsupport(Q,1) == 1:2
60-
@test colsupport(Q,5) == 3:6
61-
@test rowsupport(Q,1) == 1:3
62-
@test rowsupport(Q,5) == 4:7
60+
@test colsupport(Q,5) == 1:6
61+
@test rowsupport(Q,1) == 1:
62+
@test rowsupport(Q,5) == 4:
6363
end
6464

6565
@testset "Qmul" begin

0 commit comments

Comments
 (0)