We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f6e9d7 commit 52e1d83Copy full SHA for 52e1d83
1 file changed
src/precompile.jl
@@ -6,7 +6,7 @@ for (structure, partition, decompression) in [
6
(:nonsymmetric, :bidirectional, :direct),
7
(:nonsymmetric, :bidirectional, :substitution),
8
]
9
- A = sparse(Symmetric(sprand(Bool, 100, 100, 0.1)))
+ A = sparse([1 0; 0 1])
10
problem = ColoringProblem(; structure, partition)
11
algo = GreedyColoringAlgorithm(; decompression, postprocessing=true)
12
result = coloring(A, problem, algo)
0 commit comments