From f3aa1a1a59ea290f9059e55a13cddee22b8fb3e7 Mon Sep 17 00:00:00 2001 From: Hannah Ritter <ritterh@htw-berlin.de> Date: Thu, 30 May 2024 22:23:37 +0200 Subject: [PATCH] comment --- src/branchcut.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/branchcut.py b/src/branchcut.py index 1d3a3a6..ac52614 100644 --- a/src/branchcut.py +++ b/src/branchcut.py @@ -137,6 +137,7 @@ def solve(edges: List[Tuple]): # not an improvement, go to next problem in queue if pulp.value(current_problem) >= v_star: break + # current solution improves the value of the solution, continue evaluation of the solution else: # step 5 # check if solution is integer: if yes, set current solution as best solution -- GitLab