]> granicus.if.org Git - graphviz/commitdiff
remove prototype for non-existent SparseMatrix_kcore_decomposition
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Wed, 9 Jun 2021 02:40:20 +0000 (19:40 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 19 Jun 2021 18:36:40 +0000 (11:36 -0700)
This function was removed in 30905ab26d62c4b126df261ad235a0fa28af5e8a but its
prototype was mistakenly left behind.

lib/sparse/SparseMatrix.h

index e22d4cf2b3a0e9b60a4efee5da99312b1151bfb2..2bcd9ba0e91efb393e5191032758b9292da42888 100644 (file)
@@ -125,7 +125,6 @@ SparseMatrix SparseMatrix_distance_matrix_khops(int khops, SparseMatrix A, int w
 SparseMatrix SparseMatrix_distance_matrix_k_centers(int K, SparseMatrix D, int weighted);
 
 void SparseMatrix_kcoreness(SparseMatrix A, int **coreness);/* assign coreness to each node */
-void SparseMatrix_kcore_decomposition(SparseMatrix A, int *coreness_max0, int **coreness_ptr0, int **coreness_list0);/* return the decomposition */
 
 SparseMatrix SparseMatrix_from_dense(int m, int n, real *x);