Skip to content

Commit f3531af

Browse files
committed
Remove cycle range tests
1 parent f8cfd6a commit f3531af

1 file changed

Lines changed: 0 additions & 11 deletions

File tree

test/structured.jl

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,6 @@ using SparseMatrixColorings
66
using SparseMatrixColorings: cycle_range
77
using Test
88

9-
@testset "Utils" begin
10-
@test cycle_range(2, 3) == [1, 2, 1]
11-
@test cycle_range(2, 4) == [1, 2, 1, 2]
12-
@test cycle_range(2, 5) == [1, 2, 1, 2, 1]
13-
@test cycle_range(3, 5) == [1, 2, 3, 1, 2]
14-
@test cycle_range(3, 6) == [1, 2, 3, 1, 2, 3]
15-
@test cycle_range(2, 1) == [1]
16-
@test cycle_range(3, 1) == [1]
17-
@test cycle_range(3, 2) == [1, 2]
18-
end;
19-
209
@testset "Diagonal" begin
2110
for n in (1, 2, 10, 100)
2211
A = Diagonal(rand(n))

0 commit comments

Comments
 (0)