From: Matthew Fernandez Date: Wed, 9 Jun 2021 02:39:28 +0000 (-0700) Subject: remove prototype for non-existent SparseMatrix_khairness X-Git-Tag: 2.48.0~45^2~7 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ab734c2c3c7b7491d59d43118bf1a44ce791bde9;p=graphviz remove prototype for non-existent SparseMatrix_khairness 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 ec0e3293c..e22d4cf2b 100644 --- a/lib/sparse/SparseMatrix.h +++ b/lib/sparse/SparseMatrix.h @@ -127,8 +127,6 @@ SparseMatrix SparseMatrix_distance_matrix_k_centers(int K, SparseMatrix D, int w 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 */ -void SparseMatrix_khairness(SparseMatrix A, int **hairness);/* assign hairness to each node */ - SparseMatrix SparseMatrix_from_dense(int m, int n, real *x); #define SparseMatrix_set_undirected(A) set_flag((A)->property, MATRIX_UNDIRECTED)