Explorar el Código

remove debugging messages

Sven Czarnian hace 3 años
padre
commit
40ddd7c188
Se han modificado 1 ficheros con 0 adiciones y 3 borrados
  1. 0 3
      aman/sys/aco/Colony.py

+ 0 - 3
aman/sys/aco/Colony.py

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