From d085956f945cd765f4c6a6338b71a91e88d4d7d7 Mon Sep 17 00:00:00 2001 From: yemeen Date: Wed, 21 Jan 2026 16:47:37 -0500 Subject: [PATCH] remove heuristic --- src/ect/ect.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ect/ect.py b/src/ect/ect.py index c33b2c3..69a6116 100644 --- a/src/ect/ect.py +++ b/src/ect/ect.py @@ -137,7 +137,7 @@ def _compute_ect( V = directions.vectors X = graph.coord_matrix - H = X @ V if V.shape[0] == X.shape[1] else X @ V.T # (N, m) + H = X @ V.T # (N, m) H_T = np.ascontiguousarray(H.T) # (m, N) for contiguous per-direction rows out64 = _ect_all_dirs(