remove debugging messages

This commit is contained in:
Sven Czarnian
2021-11-12 19:37:26 +01:00
parent 2ef4a485d8
commit 40ddd7c188

View File

@@ -30,12 +30,9 @@ class Colony:
overallDelay = timedelta(seconds = 0) overallDelay = timedelta(seconds = 0)
# assume that the inbounds are sorted in FCFS order # assume that the inbounds are sorted in FCFS order
print('FCFS-Sequence:')
for inbound in inbounds: for inbound in inbounds:
Colony.associateInbound(rwyManager, inbound, earliestArrivalTime, False) Colony.associateInbound(rwyManager, inbound, earliestArrivalTime, False)
overallDelay += inbound.PlannedArrivalTime - inbound.InitialArrivalTime overallDelay += inbound.PlannedArrivalTime - inbound.InitialArrivalTime
print(' ' + inbound.Callsign + ': ' + inbound.PlannedRunway.Name + ' @ ' + str(inbound.PlannedArrivalTime) +
' dt=' + str((inbound.PlannedArrivalTime - inbound.InitialArrivalTime).total_seconds()))
return overallDelay return overallDelay