From c1cecad5ac6d555af0b97f6fc75e29a501ca3ac8 Mon Sep 17 00:00:00 2001
From: Anne-Liza <a.m.r.m.bruggeman@student.tudelft.nl>
Date: Wed, 4 Apr 2018 11:13:54 +0200
Subject: [PATCH] Small bug fix

Former-commit-id: 5619525a57bbf151aafc3b5fce317b771d6e6eb6
---
 kadmos/graph/graph_data.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kadmos/graph/graph_data.py b/kadmos/graph/graph_data.py
index 66bac6f81..00c6a2b6a 100644
--- a/kadmos/graph/graph_data.py
+++ b/kadmos/graph/graph_data.py
@@ -927,7 +927,7 @@ class DataGraph(KadmosGraph):
                     if feedback < min_feedback or (feedback == min_feedback and time < min_time):
                         best_order = list(neighbor_solution)
                         min_feedback = feedback
-                        min_size = time
+                        min_time = time
                         new_iteration = True
 
                     # When a better solution is found, the current iteration is stopped and a new iteration is
-- 
GitLab