Skip to content
This repository was archived by the owner on Aug 22, 2025. It is now read-only.

Commit 02454fd

Browse files
pkj-mmatbesancon
andauthored
added space between arguments in function definition
Co-Authored-By: Mathieu Besançon <[email protected]>
1 parent ef53cc5 commit 02454fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/coloring/high_level.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ struct AcyclicColoring <: SparseDiffToolsColoringAlgorithm end
1414
The coloring defaults to a greedy distance-1 coloring.
1515
1616
"""
17-
function ArrayInterface.matrix_colors(A::AbstractMatrix,alg::SparseDiffToolsColoringAlgorithm = GreedyD1Color(); partition_by_rows::Bool = false)
17+
function ArrayInterface.matrix_colors(A::AbstractMatrix, alg::SparseDiffToolsColoringAlgorithm = GreedyD1Color(); partition_by_rows::Bool = false)
1818
_A = A isa SparseMatrixCSC ? A : sparse(A) # Avoid the copy
1919
A_graph = matrix2graph(_A, partition_by_rows)
2020
return color_graph(A_graph, alg)

0 commit comments

Comments
 (0)