|
@@ -105,7 +105,7 @@ class Worker(Thread):
|
|
|
print('FCFS run:')
|
|
|
for window in self.RecedingHorizonControl.Windows:
|
|
|
for inbound in window.Inbounds:
|
|
|
- print(' ' + inbound.Report.aircraft.callsign + ': ' + str(inbound.EstimatedArrivalTime))
|
|
|
+ print(' ' + inbound.Report.aircraft.callsign + ': ' + str(inbound.EstimatedArrivalTime) + '; ' + str(inbound.EarliestArrivalTime))
|
|
|
|
|
|
# get the last landing aircrafts per runway before the RHC stage to check for constraints
|
|
|
# this is required to handle the overlap between windows
|