From: Matthew Fernandez Date: Wed, 9 Jun 2021 02:38:33 +0000 (-0700) Subject: remove prototype for non-existent SparseMatrix_khair_decomposition X-Git-Tag: 2.48.0~45^2~8 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9309ecabdd759ef69256b4c92b8fdbe32875efda;p=graphviz remove prototype for non-existent SparseMatrix_khair_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 d90de1540..ec0e3293c 100644 --- a/lib/sparse/SparseMatrix.h +++ b/lib/sparse/SparseMatrix.h @@ -128,7 +128,6 @@ void SparseMatrix_kcoreness(SparseMatrix A, int **coreness);/* assign coreness t 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 */ -void SparseMatrix_khair_decomposition(SparseMatrix A, int *hairness_max0, int **hairness_ptr0, int **hairness_list0);/* return the decomposition */ SparseMatrix SparseMatrix_from_dense(int m, int n, real *x);