瀏覽代碼

sort the FCFS list

Sven Czarnian 3 年之前
父節點
當前提交
c835944e8d
共有 1 個文件被更改,包括 1 次插入0 次删除
  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