From 0ec44ca998bb65cc4b237ca058b15e2cd8b4f801 Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Tue, 8 Jun 2021 19:41:07 -0700 Subject: [PATCH] remove prototype for non-existent SparseMatrix_kcoreness 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 2bcd9ba0e..0e053e1e2 100644 --- a/lib/sparse/SparseMatrix.h +++ b/lib/sparse/SparseMatrix.h @@ -124,8 +124,6 @@ int SparseMatrix_distance_matrix(SparseMatrix A, int weighted, real **dist_matr SparseMatrix SparseMatrix_distance_matrix_khops(int khops, SparseMatrix A, int weighted); SparseMatrix SparseMatrix_distance_matrix_k_centers(int K, SparseMatrix D, int weighted); -void SparseMatrix_kcoreness(SparseMatrix A, int **coreness);/* assign coreness 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