From 125eef872981281319fd7d0626c51be31f72ea57 Mon Sep 17 00:00:00 2001 From: Sven Czarnian Date: Sun, 17 Oct 2021 17:11:58 +0200 Subject: [PATCH] add some additional parameters --- aman/sys/aco/Configuration.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/aman/sys/aco/Configuration.py b/aman/sys/aco/Configuration.py index 82924b5..3406f56 100644 --- a/aman/sys/aco/Configuration.py +++ b/aman/sys/aco/Configuration.py @@ -15,4 +15,10 @@ class Configuration: # the ACO specific information self.AntCount = antCount self.ExplorationRuns = explorationCount - self.PheromoneEvaporationRate = 0.9 \ No newline at end of file + self.PheromoneEvaporationRate = 0.9 + self.PseudoRandomSelectionRate = 0.9 + self.propagationRatio = 0.9 + self.Epsilon = 0.1 + self.RunwayOccupasionRatio = 0.7 + self.Beta = 2.0 + self.ThetaZero = None \ No newline at end of file