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

Commit 4824ad1

Browse files
committed
integer -> int
1 parent 9bb0be2 commit 4824ad1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/coloring/matrix2graph.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ sparse matrix, columns are represented with vertices
66
and 2 vertices are connected with an edge only if
77
the two columns are mutually orthogonal.
88
"""
9-
function matrix2graph(sparse_matrix::SparseMatrixCSC{<:Number,<:Integer}, partition_by_rows::Bool)
9+
function matrix2graph(sparse_matrix::SparseMatrixCSC{<:Number, Int}, partition_by_rows::Bool)
1010
dropzeros(sparse_matrix)
1111
(rows_index, cols_index, val) = findnz(sparse_matrix)
1212

0 commit comments

Comments
 (0)