From 0eb16927c5f6e69f658cb9d7f5321be52fcac633 Mon Sep 17 00:00:00 2001 From: Tobias Pfandzelter Date: Mon, 13 Jan 2025 10:21:15 +0100 Subject: [PATCH] fix typo in bandwidth calculation --- celestial/shell.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/celestial/shell.py b/celestial/shell.py index a0cbec6..4fb0def 100644 --- a/celestial/shell.py +++ b/celestial/shell.py @@ -990,8 +990,8 @@ def _numba_update_paths( ) # type: ignore ) - path_matrix[i, j]["bandwidth_kbits"] = d - # path_matrix[j, i]["bandwidth_kbits"] = d + path_matrix[i, j]["bandwidth_kbits"] = b + # path_matrix[j, i]["bandwidth_kbits"] = b @staticmethod @numba.njit # type: ignore