From 9309ecabdd759ef69256b4c92b8fdbe32875efda Mon Sep 17 00:00:00 2001
From: Matthew Fernandez <matthew.fernandez@gmail.com>
Date: Tue, 8 Jun 2021 19:38:33 -0700
Subject: [PATCH] remove prototype for non-existent
 SparseMatrix_khair_decomposition

This function was removed in 30905ab26d62c4b126df261ad235a0fa28af5e8a but its
prototype was mistakenly left behind.
---
 lib/sparse/SparseMatrix.h | 1 -
 1 file changed, 1 deletion(-)

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);
 
-- 
2.40.0