|
Web Matches |
Ant colony optimizati.. The ant colony optimization algorithm (ACO), is a probabilistic technique for ... Ant colony optimization algorithms have been applied to many combinatorial ...
Ant Colony Optimizati.. The book Ant Colony Optimization, by Marco Dorigo and Thomas Stützle, is ... The software accompanying the Ant Colony Optimization book is available here as ...
Ant colony optimizati.. Ant colony optimization (ACO) is a population-based metaheuristic ... 3 The Ant Colony Optimization Metaheuristic. 3.1 ConstructAntSolutions. 3.2 DaemonActions ...
CSE 460 Ant Colony Optimizati.. Ant Colony Optimization. In this section we will look at swarm-based ... Ant Colony Meta-Heuristics. stochastic optimization. adaptive, dynamic on-line method ...
ACO: Publicatio.. C. Blum, Ant colony optimization: Introduction and recent trends. ... HC-ACO: The hyper-cube framework for Ant Colony Optimization. ...
Ant Colony Optimizati.. An overview of the rapidly growing field of ant colony optimization that describes theoretical findings, the major algorithms, and current applications.
|
|
|
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
Search Articles
e.g. mp4
|
|
The ant colony optimization algorithm (ACO), introduced by Marco Dorigo in his PhD thesis, is a probabilistic technique for solving computational problems that can be reduced to finding good paths through graphs. They are inspired by the behaviour of ants in finding paths from the colony to food. Overview
In the real world, ants (initially) wander randomly, and upon finding food return to their colony while laying down pheromone trails. If other ants find such a path, they are likely not to keep traveling at random, but to instead follow the trail, returning and reinforcing it if they eventually find food (see Ant communication).Over time, however, the pheromone trail starts to evaporate,thereforereducing its attractive strength. The more time it takes for an ant to travel down the path and back again, the more time the pheromones have to evaporate. A short path, by comparison, gets marched over faster, andthereforethe pheromone density remains high as it is laid on the path as fast as it can evaporate. Pheromone evaporation has also the advantage of avoiding the convergence to a locally optimal solution. If there were no evaporation at all, the paths chosen by the first ants would tend to be excessively attractive to the following ones. In that case, the exploration of the solution space would be constrained.Thus, when one ant finds a good (i.e. short) path from the colony to a food source, other ants are more likely to follow that path, and positive feedback eventually leads all the ants following a single path. The idea of the ant colony algorithm is to mimic this behavior with "simulated ants" walking around the graph representing the problem to solve.Ant colony optimization algorithms have been used to produce near-optimal solutions to the traveling salesman problem. They have an advantage over simulated annealing and genetic algorithm approaches when the graph may change dynamically; the ant colony algorithm can be run continuously and adapt to changes in real time. This is of interest in network routing and urban transportation systems. Pseudo-code & Formulas
Arc Selection:An ant will move from node i to node j with probabilitywhere,τij is the amount of pheromone on arc i,jα is a parameter to control the influence of τijηij is the desirability of arc i,j (a priori knowledge, typically 1/di,j)β is a parameter to control the influence of ηijPheromone Updatewhere,τi,j is the amount of pheromone on a given arc i,jρ is the rate of pheromone evaporationand Δτi,j is the amount of pheromone deposited, typically given bywhere Lk is the cost of the kth ant's tour (typically length) Common Extensions
Elitist Ant System The global best solution deposits pheromone on every iteration along with all the other antsMax-Min Ant System (MMAS) Added Maximum and Minimum pheromone amounts [τmax,τmin]Only global best or iteration best tour deposited pheromoneAll edges are initialized to τmax and reinitialized to τmax when nearing stagnation.Rank-Based Ant System (ASrank) All solutions are ranked according to their fitness. The amount of pheromone deposited is then weighted for each solution, such that the more optimal solutions deposit more pheromone than the less optimal solutions Related methods
Genetic Algorithms (GA) maintain a pool of solutions instead of just one. The process of finding superior solutions mimics that of evolution, with solutions being combined or mutated to alter the pool of solutions, with solutions of inferior quality being discarded.Simulated Annealing (SA) is a related global optimization technique which traverses the search space by generating neighbouring solutions of the current solution. A superior neighbour is always accepted. An inferior neighbour is accepted probabilistically based on the difference in quality and a temperature parameter. The temperature parameter is modified as the algorithm progresses to alter the nature of the search.Tabu search (TS) is similar to Simulated Annealing, in that both traverse the solution space by testing mutations of an individual solution. While simulated annealing generates only one mutated solution, tabu search generates many mutated solutions and moves to the solution with the lowest fitness of those generated. In order to prevent cycling and encourage greater movement through the solution space, a tabu list is maintained of partial or complete solutions. It is forbidden to move to a solution that contains elements of the tabu list, which is updated as the solution traverses the solution space.Harmony search (HS) is an algorithm based on the analogy between music improvisation and optimization. Each musician (variable) together seeks better harmonies (vectors).
Related Ads
|
|
Resource: Part or all of the information provided in this section is brought to you via wikipedia and other similar sites. Please repsect their licenses and for more information visit the homepages of these sites. |