Skip to content

Commit 52e1d83

Browse files
committed
Simplest matrix
1 parent 7f6e9d7 commit 52e1d83

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/precompile.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ for (structure, partition, decompression) in [
66
(:nonsymmetric, :bidirectional, :direct),
77
(:nonsymmetric, :bidirectional, :substitution),
88
]
9-
A = sparse(Symmetric(sprand(Bool, 100, 100, 0.1)))
9+
A = sparse([1 0; 0 1])
1010
problem = ColoringProblem(; structure, partition)
1111
algo = GreedyColoringAlgorithm(; decompression, postprocessing=true)
1212
result = coloring(A, problem, algo)

0 commit comments

Comments
 (0)