From 539130c6ec56e5186ba857f6a23e5ee5d8466e53 Mon Sep 17 00:00:00 2001 From: Sai-Suraj-27 Date: Sat, 22 Jul 2023 12:12:46 +0530 Subject: [PATCH] Updated the format to include indptr as well.. --- heat/sparse/dcsr_matrix.py | 1 + 1 file changed, 1 insertion(+) diff --git a/heat/sparse/dcsr_matrix.py b/heat/sparse/dcsr_matrix.py index 577a36a489..38c0245ea9 100644 --- a/heat/sparse/dcsr_matrix.py +++ b/heat/sparse/dcsr_matrix.py @@ -347,6 +347,7 @@ def __str__(self) -> str: print_string = ( f"DCSR_matrix(indices={self.indices},\n" + f" indptr={self.indptr},\n" f" data={self.data},\n" f" size={size}, nnz={nnz}, split={self.__split})" )