@@ -43,23 +43,23 @@ import SemiseparableMatrices: AlmostBandedLayout, VcatAlmostBandedLayout
43
43
44
44
@testset " col/rowsupport" begin
45
45
A = _BandedMatrix (Vcat (Ones (1 ,∞), (1 : ∞)' , Ones (1 ,∞)), ℵ₀, 1 , 1 )
46
- F = qr (A);
46
+ F = qr (A)
47
47
@test MemoryLayout (typeof (F. factors)) isa AdaptiveLayout{BandedColumns{DenseColumnMajor}}
48
48
@test bandwidths (F. factors) == (1 ,2 )
49
49
@test colsupport (F. factors,1 ) == 1 : 2
50
50
@test colsupport (F. factors,5 ) == 3 : 6
51
51
@test rowsupport (F. factors,1 ) == 1 : 3
52
52
@test rowsupport (F. factors,5 ) == 4 : 7
53
- Q,R = F;
53
+ Q,R = F
54
54
@test MemoryLayout (typeof (R)) isa TriangularLayout
55
55
@test colsupport (R,1 ) == 1 : 1
56
56
@test colsupport (R,5 ) == 3 : 5
57
57
@test rowsupport (R,1 ) == 1 : 3
58
58
@test rowsupport (R,5 ) == 5 : 7
59
59
@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 : ∞
63
63
end
64
64
65
65
@testset " Qmul" begin
0 commit comments