From c8d0d0c212872cf765bca04d66392908107dc489 Mon Sep 17 00:00:00 2001 From: Theophile Terraz Date: Fri, 31 Oct 2025 09:37:56 +0100 Subject: [PATCH] fix typo --- src/Solver/RubarBE.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Solver/RubarBE.py b/src/Solver/RubarBE.py index 6abf719c..bb9f118b 100644 --- a/src/Solver/RubarBE.py +++ b/src/Solver/RubarBE.py @@ -446,7 +446,7 @@ class Rubar3(CommandLineSolver): ind = 1 for mail in edge.reach.inter_profiles_rk(): coef = get_stricklers_from_rk(mail, lst) - if coeff is not None: + if coef is not None: f.write(f"{ind:>6} {coef:>12.5f}") ind += 1