set the maximum delay

このコミットが含まれているのは:
Sven Czarnian
2021-11-17 10:02:01 +01:00
コミット 3560e98ad2

ファイルの表示

@@ -109,7 +109,8 @@ class Worker(Thread):
acoConfig = Configuration(constraints = self.SequencingConfiguration, nav = self.Configuration.GngData,
earliest = earliestArrivalTime, weather = self.WeatherModel,
preceeding = None if 0 == len(preceedingInbounds) else preceedingInbounds,
ants = 5 * len(relevantInbounds), generations = 5 * len(relevantInbounds))
ants = 5 * len(relevantInbounds), generations = 5 * len(relevantInbounds),
maxDelayMay=self.Configuration.MaxDelayMay)
# perform the ACO run
aco = Colony(relevantInbounds, acoConfig)