Parcourir la source

sort the FCFS list

Sven Czarnian il y a 3 ans
Parent
commit
c835944e8d
1 fichiers modifiés avec 1 ajouts et 0 suppressions
  1. 1 0
      aman/sys/RecedingHorizonControl.py

+ 1 - 0
aman/sys/RecedingHorizonControl.py

@@ -109,6 +109,7 @@ class RecedingHorizonControl:
 
         # check if we found relevant inbounds
         if 0 != len(inbounds):
+            inbounds.sort(key = lambda x: x.InitialArrivalTime)
             return inbounds, earliestArrivalTime
         else:
             return None, None