15 lines
531 B
Python
15 lines
531 B
Python
#!/usr/bin/env python
|
|
|
|
from aman.config.AirportSequencing import AirportSequencing
|
|
|
|
class Configuration:
|
|
def __init__(self, runwayInfo : AirportSequencing, antCount : int, explorationCount : int):
|
|
# the AMAN specific information
|
|
self.RunwayConstraints = runwayInfo
|
|
self.PreceedingInbounds = None
|
|
self.Inbounds = None
|
|
|
|
# the ACO specific information
|
|
self.AntCount = antCount
|
|
self.ExplorationRuns = explorationCount
|
|
self.PheromoneEvaporationRate = 0.9 |