]> granicus.if.org Git - graphviz/commitdiff
remove prototype for non-existent SparseMatrix_khair_decomposition
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Wed, 9 Jun 2021 02:38:33 +0000 (19:38 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 19 Jun 2021 18:36:40 +0000 (11:36 -0700)
This function was removed in 30905ab26d62c4b126df261ad235a0fa28af5e8a but its
prototype was mistakenly left behind.

lib/sparse/SparseMatrix.h

index d90de1540f0464603a79846d4c384283f0a983fc..ec0e3293c268609dfcc08a203d53ddda2a06bcd3 100644 (file)
@@ -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);