From ab734c2c3c7b7491d59d43118bf1a44ce791bde9 Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Tue, 8 Jun 2021 19:39:28 -0700 Subject: [PATCH] remove prototype for non-existent SparseMatrix_khairness This function was removed in 30905ab26d62c4b126df261ad235a0fa28af5e8a but its prototype was mistakenly left behind. --- lib/sparse/SparseMatrix.h | 2 -- 1 file changed, 2 deletions(-) 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) -- 2.40.0