From: Matthew Fernandez Date: Wed, 9 Jun 2021 02:40:20 +0000 (-0700) Subject: remove prototype for non-existent SparseMatrix_kcore_decomposition X-Git-Tag: 2.48.0~45^2~6 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e3cbf75ccccb251989b0178aeb17801c7cc903b9;p=graphviz remove prototype for non-existent SparseMatrix_kcore_decomposition This function was removed in 30905ab26d62c4b126df261ad235a0fa28af5e8a but its prototype was mistakenly left behind. --- diff --git a/lib/sparse/SparseMatrix.h b/lib/sparse/SparseMatrix.h index e22d4cf2b..2bcd9ba0e 100644 --- a/lib/sparse/SparseMatrix.h +++ b/lib/sparse/SparseMatrix.h @@ -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);