From 1acec75d08c149203ff0c7b039e4f5bc8344010d Mon Sep 17 00:00:00 2001 From: Sven Czarnian Date: Thu, 16 Dec 2021 15:59:13 +0100 Subject: [PATCH] fix a wrong function call --- aman/sys/aco/Colony.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aman/sys/aco/Colony.py b/aman/sys/aco/Colony.py index f834bd0..346e594 100644 --- a/aman/sys/aco/Colony.py +++ b/aman/sys/aco/Colony.py @@ -141,4 +141,4 @@ class Colony: else: self.ResultDelay = self.FcfsDelay for node in self.Nodes: - self.sequenceAndPredictInbound(node) + self.sequenceAndPredictInbound(rwyManager, node)