From a33ef9ed861ac2633035dcc22b66b9d9c7add753 Mon Sep 17 00:00:00 2001 From: agosztolai Date: Wed, 29 Nov 2023 15:49:37 +0100 Subject: [PATCH] bug fix --- MARBLE/geometry.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/MARBLE/geometry.py b/MARBLE/geometry.py index c7bfc4c9..8a7b72c6 100644 --- a/MARBLE/geometry.py +++ b/MARBLE/geometry.py @@ -457,8 +457,6 @@ def compute_laplacian(data, normalization="rw"): ) return PyGu.to_dense_adj(edge_index, edge_attr=edge_attr).squeeze() - #n = len(data.x) - #return sp.coo_array((edge_attr, (edge_index[0], edge_index[1])), shape=(n, n)) def compute_connection_laplacian(data, R, normalization="rw"):