remove debugging messages
This commit is contained in:
@@ -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
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user