Scalability of a parallel implementation of ant colony optimization

Size: px
Start display at page:

Download "Scalability of a parallel implementation of ant colony optimization"

Transcription

1 SEMINAR PAPER at the University of Applied Sciences Technikum Wien Game Engineering and Simulation Scalability of a parallel implementation of ant colony optimization by Emanuel Plochberger,BSc 3481, Fels am Wagram Supervisor: Dipl.-Ing. Dr. Markus Schordan Vienna, December 14, 2010

2 Abstract This paper measures the scalability of an implementation of the ant colony optimization. Therefor the usefulness and functionality of the ant colony optimization algorithm is explained. To parallize the algorithm dierent parallelization strategies are listed. The experiment will implement the ACO for a sequential approach and modies this implementation to be able to run in parallel. The measurements of this experiment is compared and the eciency of the parallel implementation evaluated.

3 Contents 1 Introduction 1 2 Ant Colony Optimization Swarm intelligence Ant Colony Optimization Agents Algorithm Formulas Path selection Implementation Synchronous Parallel Processing Ants Partially Asynchronous Parallel Processing Ants Implementation Computational Experience Parameters for ACO Results Conclusion 11 Bibliography 12

4 1 Introduction In this paper an implementation of Ant Colony Optimization (ACO) is tested for scalability. This paper compares the performance of an standard implementation to an adapted implementation, which is processed parallel on multiple processors. ACO describes an algorithm for solving combinatorial optimization problems inspired by a swarm intelligent based approach. In swarm based algorithms simple agents solve complex problems by the emergent collective intelligence. In this approach the agents (ants) simulate the behaviour of an ant swarm searching food sources. Independent ants merge simple solutions to optimize complex problems, like traveling salesman problem (TSP) [1]. The population based characteristics makes the algorithm adaptable for parallelization. To t the ACO to parallel processing, some key points have to be taken into account: (1) The algorithm steps which can be parallel and executed independent; (2) The information which is needed for every sub processing; (3) The results of the sub processes; (4) Methods to exchange the results, when the sub processes are cunjucted. The eciency of the parallelization and the implementation are dependent on the chosen methods. Authors have studied various parallelization strategies for the ACO algorithm. Some of these strategies are introduced in this paper, synchronous or asynchronous strategies [2], or parallel processed ants [3]. This paper introduces the idea of ACO and the algorithm to nd a path on a map, an overview on strategies to parallelize the ACO algorithm and the key points which have to be considered when implementing the algorithm. One of these parallelization strategy is implemented to solve path planning on a static map. The results of the implementation are compared to a slightly dierent algorithm processed with a single core. 1

5 2 Ant Colony Optimization 2.1 Swarm intelligence Swarms in nature often show complex movement and strategic behaviour. A ock of sh coordinates the movement to swim to certain points or to ee. Also bird swarms y together with high speed and nd their way as a swarm. Termites construct, very ecient and fast, large complex hills. Taken the swarm size and the limited communication and planning abilities of single insects or animals into account, these tasks are impressive. 1 The "`collective intelligence"' is generated by the amount of individuals, behaving on simple rules. Emergent and stigmergic behaviour creates the knowledge base of the swarm. As a result complex strategies are possible, which couldn't be made by one agent. The collective acts versatile to dierent activities, is robust to negative impacts and is a self-organizing structure.[4] Motivated by the results in complex problems, the dierent concepts of swarms are observed and studied to be applied in the eld of articial life. Simple life forms are replaced by agents, and the behaviour is adapted to solve optimization problems. To adjust the algorithms to the dierent problems, the problem has to be modeled to be illegible for the agents. Therefor swarm intelligence inspired algorithms have the same advantages like their natural schemes. 2.2 Ant Colony Optimization The ACO is inspired by real ants on the way from the nest to food sources. Though an individual ant is a simple creature and limited in sense of orientation and communication, an ant swarm will nd a short way to the desired destination. The individuals start blind in an area and search alone for a track to the food source. On the way back to the lair it sets pheromones on the way, these pheromones aect other ants on their search. The trail increases and changes his shape, depending on the number of ants walking on the way. Due to the fact that more ants can walk on a shorter track in the same time, when uniformly distributed, an optimal trail emerges with increasing pheromones. In gure 2.1 this concept of the pheromone trail is shown. In the beginning (a) ants move from lair (A) to the food source (E). After a barricade blocks the direct way (b), the ants are confronted with forks on point B and D. This will force the swarm to split up fty-fty, due that the length of the ways to H and C are now unknown. In the next step (c) more ants reach the target when they pass C, while ants on path H haven't passed the obstacle. This leads that more ants mark C and the probability to go on the shorter path increases. 1 Swarm Intelligence: Literature Overview, www2.ece.ohio-state.edu/~passino/swarms.pdf, 17. November

6 CHAPTER 2. ANT COLONY OPTIMIZATION Figure 2.1: Example of an ant trail [1] Agents In ACO agents, later referred to as ants, represent the real ants and search for solutions for the certain problems. These ants are based on natural ants, but adapted to t computational processes. The main differences to real ants [1]: discrete world Articial ants live in an articial world. The time and the movement of ant are discrete. memory Agents have memory and are able to store their solution, e.g. paths. valuation The ants are able adjust the power of their trail, so they mark their solution dependent on it's quality. capacities Articial ants can be modied with more abilities than their natural model and are not completely blind. 3

7 CHAPTER 2. ANT COLONY OPTIMIZATION Behaviour of ants [5] The ant is independent and nds a solution for itself. The ant decides just valid states. After nding a solution it is valuated according to the quality marked Algorithm The ACO is processed in cycles (ant-cycle). Each cycle the best solution is improved and the trails approximate more to the optimum. Goal of the algorithm is to plan a path in a graph. This section deals with the algorithm, the following section shows the needed formulas. 1. Initialization The initialization is at t = 0 and sets the conditions and starting values. All edges are initialized with a starting trail (τ ij = c), the distance between the nodes is calculated, m ants are set on the starting position, the graph size is n nodes, each ant sets the destination and a maximum number of cycles is dened. 2. Movement Each ant nds a way to the destination. It decides which way to go dependent on the probability of (2.4). In the rst cycle each node has the same probability. This step is repeated until the ant nds the target or the path has exceeded a maximum value. 3. Valuation After all ants have moved, each ant calculates it's path length and sets it's trail on the world map. The strength of the trail (2.3) is dependent on the shortest path found. The strength on each edge τ ij (t + n) is increased by τ ij. 4. Cycle When there were less than needed cycles, another cycle is started at 2. t = t + n, the ants are reseted to starting condition and τ ij set to 0. Time is set to 5. Shortest After the wanted cycles, the shortest path found in this cycle equals an nearly optimal path at the best Formulas The important thing of this algorithm are the formulas and which constants are used. section the formulas are explained. In this Trail[1] After a cycle each edge is marked with a trail intensity. The intensity on edge ij, linking node i and j, is calculated with this formula: τ ij (t + n) = ρ τ ij (t) + τ ij (2.1) τ ij (t) is the trail on edge ij at time t, which is increased by τ ij. The coecient ρ represents the evaporation of the trail, preventing unlimited cumulation of the trail intensity. 4

8 CHAPTER 2. ANT COLONY OPTIMIZATION τ ij is the sum of the trail intensity on the edge of all ants (k) from cycle. τ ij = Σ m k=1 τ ij k (2.2) Each ant calculates it's intensity τij k with an constant Q divided by it's found path length. When no path was found, τij k = 0. τ k ij = Q L k or 0 (2.3) Path selection To nd a path, an ant moves from node to node, until the current node equals the destination. Which node to move next, depends on the probability of the edge heuristic η ij and the trail intensity τ ij. Due to the tradeo of trail versus heuristic, ants explore shorter paths and and rene the the search. The ratio between trail and heuristic is determined by the parameters α and β. p k ij(t) = [τ ij(t)] α [η ij ] β Σ k [τ ik (t)] α [η ik ] β (2.4) 5

9 3 Implementation Based on autonomous behaviour of agents, swarm algorithms are inherently highly parallelizable. Which parallelization strategy is applied most ecient, depends on the computing platform and objective.[6] This paper focuses on two parallelization strategies for the ACO. The parallelization strategies described in this paper were studied by Bullnheimer, Kotsis and Strauÿ [2], Randall [3] and Stüzle [6]. These strategies were implemented and tested to solve the Traveling Salesman Problem (TSP,[7]). 3.1 Synchronous Parallel Processing Ants This parallelization strategy was studied by Bullnheimer, Kotsis and Strauÿ [2]. The most simple approach to parallelize the sequential ant algorithm is to process the behaviour of single ants in parallel. Due to the fact, that ants search autonomous and independent, the communication overhead is minimized to the validation point, where the solutions are gathered and compared. At gure 3.1 this strategy is simplied shown. Figure 3.1: Synchronous parallel processing ants 6

10 CHAPTER 3. IMPLEMENTATION Without the communication overhead, the speedup of synchronous parallel processing ants would reach an optimum. Assuming that the system size (N) is unlimited Bullnheimer, Kotsis and Strauÿ [2] calculate the speedup for solving a TSP: S asymptotic (m) = T seq(m) T par (m, ) = O(m3 ) O(m 2 = O(m) (3.1) ) T seq (m) = O(m 3 ) The complexity of the sequential algorithm for problem size (swarm size, number of ants) m T par (m, ) = O(m 2 ) The complexity of the parallel algorithm for size m and unlimited system size Considering the fact that the number of processing elements is much smaller than the typical swarm size, one processing element (worker) would execute a set of ants. Due to the calculation and distribution of the new trails after each ant cycle, the overhead slows down the performance and impairs the parallelization benets. According to Bullnheimer, Kotsis and Strauÿ [2] the speedup is (also considering limited system size): S(m, N) = O(m 3 ) O(m 3 /N) + T ovh (m, N) (3.2) T ovh (m, N) The overhead on the communication is dependent on the architecture of the system. 3.2 Partially Asynchronous Parallel Processing Ants To reduce communication overhead Bullnheimer, Kotsis and Strauÿ [2] propose partially asynchronous strategy. Every worker holds a set of ants and processes a number of iterations independent of other workers. Partially asynchronous means that the independent calculated trails are synchronized at regular intervals. This strategy is shown at gure 3.2. Due to the reduction of information updates, local iterations might miss good trails calculated by other workers. So the ratio of local iterations to global updates, aects the quality of the solution. 7

11 CHAPTER 3. IMPLEMENTATION Figure 3.2: Asynchronous parallel processing ants 8

12 4 Implementation To measure the scalability of a parallel implementation of the ACO, the performance of path planning executed in a single process is compared to the performance of path planning with multiple processors. As a parallelization strategy Synchronous Parallel Processing Ants (described in section 3.1) is implemented. As a parallelization framework OpenMP is used. The author assumes that OpenMP distributes the ants uniformly to the processors. 4.1 Computational Experience Parameters for ACO To compare the dierent ACO implementations most of the parameters have to be equal. The quality of the solution and execution time to handle the cycles, depend on these parameters. The exact purpose of the parameters is shown in chapter 2 Ant Colony Optimization. ρ = 0.75 (each cycle 25% of the trails are vaporized) α = 0.70 β = 0.25 trail:heuristic ratio = 3:1 map size = 30 x Results To compare results, the starting point and the end point of the search never changed. Each experimental series was executed 5 times and the average results compared. According to Randall [3], the most common way to measure the eectiveness of a parallel algorithm the speedup has to be calculated. In his paper he calculates it by the formula: speedup = time_to_solve_the_problem_with_a_single_processor time_to_solve_the_problem_with_p _processors (4.1) The ratio of speedup to added processors equals the eciency: efficiency = speedup P (4.2) The results of the experiments run with a single core are shown in table 4.1. The time is measured in seconds, and the solution quality is the lengh of the calculated path. In table 4.2 the performance results run with 4 processors are listet. The speedup and eciency is described int table

13 CHAPTER 4. IMPLEMENTATION Cycles Swarm Size Average Execution Time (s) Average Solution Quality Single Core Table 4.1: Results on a sequential algorithm Cycles Swarm Size Average Execution Time (s) Average Solution Quality Single Core Table 4.2: Results of a parallel algorithm, with 4 processors Cycles Swarm Size Speedup Eciency Table 4.3: Results of speedup and eciency 10

14 5 Conclusion The solution quality of an ACO is highly dependend on the cycles and swarm size. By ecient parallel processing units, more cycles and larger swarm, scan the search space in the same time, so the solution quality can be improved. Due to the natural parallelization of population based algorithms, the implementation of a parallel processing ACO is simple. The results of the measurements show, that the parallelization overhead is very high in the Synchronous Parallel Processing Ants Algorithm. The dierent parallel strategies which can be applied to the ACO, will probably improve the eciency of parallelization of the algorithm. 11

15 Bibliography [1] V. M. u. A. C. M. Dorigo, The Ant System: Optimization by a colony of cooperating agents. Berlin, Germany: Springer-Verlag Berlin Heidelberg, [2] G. K. u. C. S. B. Bullnheimergo, Parallelization Strategies for the Ant System. Berlin, Germany: Springer-Verlag Berlin Heidelberg, [3] A. L. M. Randall, A parallel implementation of ant colony optimizationg. Orlando, FL, USA: Academic Press, Inc., [4] L. Pintscher, Schwarmintelligenz. Karlsruhe, Germany: Universität Karlsruhe, [5] G. C. u. L. G. M. Dorigo, Ant Algorithms for Discrete Optimization. Brussels, Belgium: MIT Press, [6] T. Stüzle, Parallelization Strategies for Ant Colony Optimization. Springer-Verlag, [7] V. C. W. C. D. Applegate, R. Bixby, The traveling salesman problem. Princeton, NJ: Princeton University Press,

Solving the Traveling Salesman Problem using Reinforced Ant Colony Optimization techniques

Solving the Traveling Salesman Problem using Reinforced Ant Colony Optimization techniques Solving the Traveling Salesman Problem using Reinforced Ant Colony Optimization techniques N.N.Poddar 1, D. Kaur 2 1 Electrical Engineering and Computer Science, University of Toledo, Toledo, OH, USA 2

More information

Ant Colony Optimization for dynamic Traveling Salesman Problems

Ant Colony Optimization for dynamic Traveling Salesman Problems Ant Colony Optimization for dynamic Traveling Salesman Problems Carlos A. Silva and Thomas A. Runkler Siemens AG, Corporate Technology Information and Communications, CT IC 4 81730 Munich - Germany thomas.runkler@siemens.com

More information

Ant Algorithms. Simulated Ant Colonies for Optimization Problems. Daniel Bauer July 6, 2006

Ant Algorithms. Simulated Ant Colonies for Optimization Problems. Daniel Bauer July 6, 2006 Simulated Ant Colonies for Optimization Problems July 6, 2006 Topics 1 Real Ant Colonies Behaviour of Real Ants Pheromones 2 3 Behaviour of Real Ants Pheromones Introduction Observation: Ants living in

More information

Parallelization Strategies for the Ant

Parallelization Strategies for the Ant Parallelization Strategies for the Ant System Bernd Bullnheimer Gabriele Kotsis Christine Strau Report No. 8 October 1997 October 1997 SFB `Adaptive Information Systems and Modelling in Economics and Management

More information

SWARM INTELLIGENCE -I

SWARM INTELLIGENCE -I SWARM INTELLIGENCE -I Swarm Intelligence Any attempt to design algorithms or distributed problem solving devices inspired by the collective behaviourof social insect colonies and other animal societies

More information

Swarm Intelligence (Ant Colony Optimization)

Swarm Intelligence (Ant Colony Optimization) (Ant Colony Optimization) Prof. Dr.-Ing. Habil Andreas Mitschele-Thiel M.Sc.-Inf Mohamed Kalil 19 November 2009 1 Course description Introduction Course overview Concepts of System Engineering Swarm Intelligence

More information

Self-Organization Swarm Intelligence

Self-Organization Swarm Intelligence Self-Organization Swarm Intelligence Winter Semester 2010/11 Integrated Communication Systems Group Ilmenau University of Technology Motivation for Self-Organization Problem of today s networks Heterogeneity

More information

Solving Travelling Salesmen Problem using Ant Colony Optimization Algorithm

Solving Travelling Salesmen Problem using Ant Colony Optimization Algorithm SCITECH Volume 3, Issue 1 RESEARCH ORGANISATION March 30, 2015 Journal of Information Sciences and Computing Technologies www.scitecresearch.com Solving Travelling Salesmen Problem using Ant Colony Optimization

More information

METAHEURISTICS. Introduction. Introduction. Nature of metaheuristics. Local improvement procedure. Example: objective function

METAHEURISTICS. Introduction. Introduction. Nature of metaheuristics. Local improvement procedure. Example: objective function Introduction METAHEURISTICS Some problems are so complicated that are not possible to solve for an optimal solution. In these problems, it is still important to find a good feasible solution close to the

More information

Solving a combinatorial problem using a local optimization in ant based system

Solving a combinatorial problem using a local optimization in ant based system Solving a combinatorial problem using a local optimization in ant based system C-M.Pintea and D.Dumitrescu Babeş-Bolyai University of Cluj-Napoca, Department of Computer-Science Kogalniceanu 1, 400084

More information

Navigation of Multiple Mobile Robots Using Swarm Intelligence

Navigation of Multiple Mobile Robots Using Swarm Intelligence Navigation of Multiple Mobile Robots Using Swarm Intelligence Dayal R. Parhi National Institute of Technology, Rourkela, India E-mail: dayalparhi@yahoo.com Jayanta Kumar Pothal National Institute of Technology,

More information

Ant Colony Optimization

Ant Colony Optimization DM841 DISCRETE OPTIMIZATION Part 2 Heuristics Marco Chiarandini Department of Mathematics & Computer Science University of Southern Denmark Outline 1. earch 2. Context Inspiration from Nature 3. 4. 5.

More information

An Efficient Analysis for High Dimensional Dataset Using K-Means Hybridization with Ant Colony Optimization Algorithm

An Efficient Analysis for High Dimensional Dataset Using K-Means Hybridization with Ant Colony Optimization Algorithm An Efficient Analysis for High Dimensional Dataset Using K-Means Hybridization with Ant Colony Optimization Algorithm Prabha S. 1, Arun Prabha K. 2 1 Research Scholar, Department of Computer Science, Vellalar

More information

A new improved ant colony algorithm with levy mutation 1

A new improved ant colony algorithm with levy mutation 1 Acta Technica 62, No. 3B/2017, 27 34 c 2017 Institute of Thermomechanics CAS, v.v.i. A new improved ant colony algorithm with levy mutation 1 Zhang Zhixin 2, Hu Deji 2, Jiang Shuhao 2, 3, Gao Linhua 2,

More information

Adhoc Network Routing Optimization and Performance Analysis of ACO Based Routing Protocol

Adhoc Network Routing Optimization and Performance Analysis of ACO Based Routing Protocol Adhoc Network Routing Optimization and Performance Analysis of ACO Based Routing Protocol Anubhuti Verma Abstract Ant Colony Optimization is based on the capability of real ant colonies of finding the

More information

Intuitionistic Fuzzy Estimations of the Ant Colony Optimization

Intuitionistic Fuzzy Estimations of the Ant Colony Optimization Intuitionistic Fuzzy Estimations of the Ant Colony Optimization Stefka Fidanova, Krasimir Atanasov and Pencho Marinov IPP BAS, Acad. G. Bonchev str. bl.25a, 1113 Sofia, Bulgaria {stefka,pencho}@parallel.bas.bg

More information

An Ant System with Direct Communication for the Capacitated Vehicle Routing Problem

An Ant System with Direct Communication for the Capacitated Vehicle Routing Problem An Ant System with Direct Communication for the Capacitated Vehicle Routing Problem Michalis Mavrovouniotis and Shengxiang Yang Abstract Ant colony optimization (ACO) algorithms are population-based algorithms

More information

Ant Colony Optimization

Ant Colony Optimization Ant Colony Optimization CompSci 760 Patricia J Riddle 1 Natural Inspiration The name Ant Colony Optimization was chosen to reflect its original inspiration: the foraging behavior of some ant species. It

More information

Parallel Implementation of Travelling Salesman Problem using Ant Colony Optimization

Parallel Implementation of Travelling Salesman Problem using Ant Colony Optimization Parallel Implementation of Travelling Salesman Problem using Ant Colony Optimization Gaurav Bhardwaj Department of Computer Science and Engineering Maulana Azad National Institute of Technology Bhopal,

More information

Introduction to Multi-Agent Programming

Introduction to Multi-Agent Programming Introduction to Multi-Agent Programming 12. Swarm Intelligence Flocking, Foraging, Ant Systems, TSP solving Alexander Kleiner, Bernhard Nebel Contents Introduction Swarming & Flocking Foraging strategies

More information

IMPLEMENTATION OF ACO ALGORITHM FOR EDGE DETECTION AND SORTING SALESMAN PROBLEM

IMPLEMENTATION OF ACO ALGORITHM FOR EDGE DETECTION AND SORTING SALESMAN PROBLEM IMPLEMENTATION OF ACO ALGORITHM FOR EDGE DETECTION AND SORTING SALESMAN PROBLEM Er. Priya Darshni Assiociate Prof. ECE Deptt. Ludhiana Chandigarh highway Ludhiana College Of Engg. And Technology Katani

More information

The Ant Colony Optimization Meta-Heuristic 1

The Ant Colony Optimization Meta-Heuristic 1 The Ant Colony Optimization Meta-Heuristic 1 Marco Dorigo and Gianni Di Caro IRIDIA Université Libre de Bruxelles {mdorigo,gdicaro}@ulb.ac.be 1 To appear in D. Corne, M. Dorigo and F. Glover, editors,

More information

A Comparative Study for Efficient Synchronization of Parallel ACO on Multi-core Processors in Solving QAPs

A Comparative Study for Efficient Synchronization of Parallel ACO on Multi-core Processors in Solving QAPs 2 IEEE Symposium Series on Computational Intelligence A Comparative Study for Efficient Synchronization of Parallel ACO on Multi-core Processors in Solving Qs Shigeyoshi Tsutsui Management Information

More information

An Ant Colony Optimization approach to solve Travelling Salesman Problem

An Ant Colony Optimization approach to solve Travelling Salesman Problem An Ant Colony Optimization approach to solve Travelling Salesman Problem Dr. K. Shyamala 1, Associate Professor, Dr. Ambedkar Government Arts College (Autonomous), Chennai. Shyamalakannan2000@gmail.com

More information

Hybrid Ant Colony Optimization and Cuckoo Search Algorithm for Travelling Salesman Problem

Hybrid Ant Colony Optimization and Cuckoo Search Algorithm for Travelling Salesman Problem International Journal of Scientific and Research Publications, Volume 5, Issue 6, June 2015 1 Hybrid Ant Colony Optimization and Cucoo Search Algorithm for Travelling Salesman Problem Sandeep Kumar *,

More information

intelligence in animals smartness through interaction

intelligence in animals smartness through interaction intelligence in animals smartness through interaction overview inspired by nature inspiration, model, application, implementation features of swarm intelligence self organisation characteristics requirements

More information

Dynamic Robot Path Planning Using Improved Max-Min Ant Colony Optimization

Dynamic Robot Path Planning Using Improved Max-Min Ant Colony Optimization Proceedings of the International Conference of Control, Dynamic Systems, and Robotics Ottawa, Ontario, Canada, May 15-16 2014 Paper No. 49 Dynamic Robot Path Planning Using Improved Max-Min Ant Colony

More information

arxiv: v1 [cs.ai] 9 Oct 2013

arxiv: v1 [cs.ai] 9 Oct 2013 The Generalized Traveling Salesman Problem solved with Ant Algorithms arxiv:1310.2350v1 [cs.ai] 9 Oct 2013 Camelia-M. Pintea, Petrică C. Pop, Camelia Chira North University Baia Mare, Babes-Bolyai University,

More information

THE OPTIMIZATION OF RUNNING QUERIES IN RELATIONAL DATABASES USING ANT-COLONY ALGORITHM

THE OPTIMIZATION OF RUNNING QUERIES IN RELATIONAL DATABASES USING ANT-COLONY ALGORITHM THE OPTIMIZATION OF RUNNING QUERIES IN RELATIONAL DATABASES USING ANT-COLONY ALGORITHM Adel Alinezhad Kolaei and Marzieh Ahmadzadeh Department of Computer Engineering & IT Shiraz University of Technology

More information

Jednociljna i višeciljna optimizacija korištenjem HUMANT algoritma

Jednociljna i višeciljna optimizacija korištenjem HUMANT algoritma Seminar doktoranada i poslijedoktoranada 2015. Dani FESB-a 2015., Split, 25. - 31. svibnja 2015. Jednociljna i višeciljna optimizacija korištenjem HUMANT algoritma (Single-Objective and Multi-Objective

More information

Memory-Based Immigrants for Ant Colony Optimization in Changing Environments

Memory-Based Immigrants for Ant Colony Optimization in Changing Environments Memory-Based Immigrants for Ant Colony Optimization in Changing Environments Michalis Mavrovouniotis 1 and Shengxiang Yang 2 1 Department of Computer Science, University of Leicester University Road, Leicester

More information

Adaptive Model of Personalized Searches using Query Expansion and Ant Colony Optimization in the Digital Library

Adaptive Model of Personalized Searches using Query Expansion and Ant Colony Optimization in the Digital Library International Conference on Information Systems for Business Competitiveness (ICISBC 2013) 90 Adaptive Model of Personalized Searches using and Ant Colony Optimization in the Digital Library Wahyu Sulistiyo

More information

Parallel Implementation of the Max_Min Ant System for the Travelling Salesman Problem on GPU

Parallel Implementation of the Max_Min Ant System for the Travelling Salesman Problem on GPU Parallel Implementation of the Max_Min Ant System for the Travelling Salesman Problem on GPU Gaurav Bhardwaj Department of Computer Science and Engineering Maulana Azad National Institute of Technology

More information

Network routing problem-a simulation environment using Intelligent technique

Network routing problem-a simulation environment using Intelligent technique Network routing problem-a simulation environment using Intelligent technique Vayalaxmi 1, Chandrashekara S.Adiga 2, H.G.Joshi 3, Harish S.V 4 Abstract Ever since the internet became a necessity in today

More information

A New Rank Based Version of the. Ant System. - A Computational Study. Bernd Bullnheimer. Richard F. Hartl. Christine Strau. Working Paper No.

A New Rank Based Version of the. Ant System. - A Computational Study. Bernd Bullnheimer. Richard F. Hartl. Christine Strau. Working Paper No. A New Rank Based Version of the Ant System - A Computational Study Bernd Bullnheimer Richard F. Hartl Christine Strau Working Paper No. 1 April 1997 April 1997 SFB `Adaptive Information Systems and Modelling

More information

Evolutionary Algorithms Meta heuristics and related optimization techniques II/II

Evolutionary Algorithms Meta heuristics and related optimization techniques II/II Evolutionary Algorithms Meta heuristics and related optimization techniques II/II Prof. Dr. Rudolf Kruse Pascal Held {kruse,pheld}@iws.cs.uni-magdeburg.de Otto-von-Guericke University Magdeburg Faculty

More information

296 M.R. Jalali, A. Afshar and M.A. Mari~no taken by individual ants from the nest in search for a food source, is essentially random [4]. However, wh

296 M.R. Jalali, A. Afshar and M.A. Mari~no taken by individual ants from the nest in search for a food source, is essentially random [4]. However, wh Scientia Iranica, Vol. 13, No. 3, pp 295{302 c Sharif University of Technology, July 2006 Improved Ant Colony Optimization Algorithm for Reservoir Operation M.R. Jalali 1, A. Afshar and M.A. Mari~no 2

More information

Ant Colony Optimization (ACO) For The Traveling Salesman Problem (TSP) Using Partitioning

Ant Colony Optimization (ACO) For The Traveling Salesman Problem (TSP) Using Partitioning Ant Colony Optimization (ACO) For The Traveling Salesman Problem (TSP) Using Partitioning Alok Bajpai, Raghav Yadav Abstract: An ant colony optimization is a technique which was introduced in 1990 s and

More information

International Journal of Computer Engineering and Applications, Volume XII, Special Issue, July 18, ISSN

International Journal of Computer Engineering and Applications, Volume XII, Special Issue, July 18,  ISSN International Journal of Computer Engineering and Applications, Volume XII, Special Issue, July 18, www.ijcea.com ISSN 2321-3469 MULTICAST ROUTING: CONVENTIONAL ALGORITHMS VS ANT COLONY SYSTEM ABSTRACT

More information

NORMALIZATION OF ACO ALGORITHM PARAMETERS

NORMALIZATION OF ACO ALGORITHM PARAMETERS U.P.B. Sci. Bull., Series C, Vol. 79, Iss. 2, 2017 ISSN 2286-3540 NORMALIZATION OF ACO ALGORITHM PARAMETERS Alina E. NEGULESCU 1 Due to the fact that Swarm Systems algorithms have been determined to be

More information

Automatic Programming with Ant Colony Optimization

Automatic Programming with Ant Colony Optimization Automatic Programming with Ant Colony Optimization Jennifer Green University of Kent jg9@kent.ac.uk Jacqueline L. Whalley University of Kent J.L.Whalley@kent.ac.uk Colin G. Johnson University of Kent C.G.Johnson@kent.ac.uk

More information

Improvement of a car racing controller by means of Ant Colony Optimization algorithms

Improvement of a car racing controller by means of Ant Colony Optimization algorithms Improvement of a car racing controller by means of Ant Colony Optimization algorithms Luis delaossa, José A. Gámez and Verónica López Abstract The performance of a car racing controller depends on many

More information

Applying Opposition-Based Ideas to the Ant Colony System

Applying Opposition-Based Ideas to the Ant Colony System Applying Opposition-Based Ideas to the Ant Colony System Alice R. Malisia, Hamid R. Tizhoosh Department of Systems Design Engineering, University of Waterloo, ON, Canada armalisi@uwaterloo.ca, tizhoosh@uwaterloo.ca

More information

Ant Algorithms for Discrete Optimization

Ant Algorithms for Discrete Optimization Ant Algorithms for Discrete Optimization Abstract This article presents an overview of recent work on ant algorithms, that is, algorithms for discrete optimization that took inspiration from the observation

More information

A combination of clustering algorithms with Ant Colony Optimization for large clustered Euclidean Travelling Salesman Problem

A combination of clustering algorithms with Ant Colony Optimization for large clustered Euclidean Travelling Salesman Problem A combination of clustering algorithms with Ant Colony Optimization for large clustered Euclidean Travelling Salesman Problem TRUNG HOANG DINH, ABDULLAH AL MAMUN Department of Electrical and Computer Engineering

More information

ENHANCED BEE COLONY ALGORITHM FOR SOLVING TRAVELLING SALESPERSON PROBLEM

ENHANCED BEE COLONY ALGORITHM FOR SOLVING TRAVELLING SALESPERSON PROBLEM ENHANCED BEE COLONY ALGORITHM FOR SOLVING TRAVELLING SALESPERSON PROBLEM Prateek Agrawal 1, Harjeet Kaur 2, and Deepa Bhardwaj 3 123 Department of Computer Engineering, Lovely Professional University (

More information

Ant Algorithms for Discrete Optimization

Ant Algorithms for Discrete Optimization Ant Algorithms for Discrete Optimization Marco Dorigo and Gianni Di Caro IRIDIA, Université Libre de Bruxelles Brussels, Belgium {mdorigo,gdicaro}@ulb.ac.be Luca M. Gambardella IDSIA, Lugano, Switzerland

More information

MSc Robotics and Automation School of Computing, Science and Engineering

MSc Robotics and Automation School of Computing, Science and Engineering MSc Robotics and Automation School of Computing, Science and Engineering MSc Dissertation ANT COLONY ALGORITHM AND GENETIC ALGORITHM FOR MULTIPLE TRAVELLING SALESMEN PROBLEM Author: BHARATH MANICKA VASAGAM

More information

Combined A*-Ants Algorithm: A New Multi-Parameter Vehicle Navigation Scheme

Combined A*-Ants Algorithm: A New Multi-Parameter Vehicle Navigation Scheme Combined A*-Ants Algorim: A New Multi-Parameter Vehicle Navigation Scheme Hojjat Salehinejad, Hossein Nezamabadi-pour, Saeid Saryazdi and Fereydoun Farrahi-Moghaddam Department of Electrical Engineering,

More information

Document Image Segmentation using Multi ANT Colonies Algorithm (MAC) on a Multi-Core Processor 1 Hasanen S. Abdullah, 2 Ammar H.

Document Image Segmentation using Multi ANT Colonies Algorithm (MAC) on a Multi-Core Processor 1 Hasanen S. Abdullah, 2 Ammar H. Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology IJCSMC, Vol. 5, Issue. 2, February 2016,

More information

ACO with semi-random start applied on MKP

ACO with semi-random start applied on MKP Proceedings of the International Multiconference on Computer Science and Information Technology pp. 887 891 ISBN 978-83-60810-22-4 ISSN 1896-7094 ACO with semi-random start applied on MKP Stefka Fidanova

More information

Pre-scheduled and adaptive parameter variation in MAX-MIN Ant System

Pre-scheduled and adaptive parameter variation in MAX-MIN Ant System Pre-scheduled and adaptive parameter variation in MAX-MIN Ant System Michael Maur, Manuel López-Ibáñez, and Thomas Stützle Abstract MAX-MIN Ant System (MMAS) is an ant colony optimization (ACO) algorithm

More information

An Ant Colony Optimization Algorithm for Solving Travelling Salesman Problem

An Ant Colony Optimization Algorithm for Solving Travelling Salesman Problem 1 An Ant Colony Optimization Algorithm for Solving Travelling Salesman Problem Krishna H. Hingrajiya, Ravindra Kumar Gupta, Gajendra Singh Chandel University of Rajiv Gandhi Proudyogiki Vishwavidyalaya,

More information

Accelerating Ant Colony Optimization for the Vertex Coloring Problem on the GPU

Accelerating Ant Colony Optimization for the Vertex Coloring Problem on the GPU Accelerating Ant Colony Optimization for the Vertex Coloring Problem on the GPU Ryouhei Murooka, Yasuaki Ito, and Koji Nakano Department of Information Engineering, Hiroshima University Kagamiyama 1-4-1,

More information

Ant Colonies, Self-Organizing Maps, and A Hybrid Classification Model

Ant Colonies, Self-Organizing Maps, and A Hybrid Classification Model Proceedings of Student/Faculty Research Day, CSIS, Pace University, May 7th, 2004 Ant Colonies, Self-Organizing Maps, and A Hybrid Classification Model Michael L. Gargano, Lorraine L. Lurie, Lixin Tao,

More information

The Ant System: Optimization by a colony of cooperating agents

The Ant System: Optimization by a colony of cooperating agents IEEE Transactions on Systems, Man, and Cybernetics Part B, Vol.26, No.1, 1996, pp.1-13 1 The Ant System: Optimization by a colony of cooperating agents Marco Dorigo *,^, Member, IEEE, Vittorio Maniezzo

More information

Image Edge Detection Using Ant Colony Optimization

Image Edge Detection Using Ant Colony Optimization Image Edge Detection Using Ant Colony Optimization Anna Veronica Baterina and Carlos Oppus Abstract Ant colony optimization (ACO) is a population-based metaheuristic that mimics the foraging behavior of

More information

ANT COLONY OPTIMIZED ROUTING FOR MOBILE ADHOC NETWORKS (MANET)

ANT COLONY OPTIMIZED ROUTING FOR MOBILE ADHOC NETWORKS (MANET) ANT COLONY OPTIMIZED ROUTING FOR MOBILE ADHOC NETWORKS (MANET) DWEEPNA GARG 1 & PARTH GOHIL 2 1,2 Dept. Of Computer Science and Engineering, Babaria Institute of Technology, Varnama, Vadodara, India E-mail

More information

AGENT-BASED ROUTING ALGORITHMS ON A LAN

AGENT-BASED ROUTING ALGORITHMS ON A LAN AGENT-BASED ROUTING ALGORITHMS ON A LAN Y. Yang, A. N. Zincir-Heywood, M. I. Heywood, S. Srinivas Faculty of Computer Science, Dalhousie University {yang@cs.dal.ca, zincir@cs.dal.ca, mheywood@cs.dal.ca,

More information

RESEARCH ARTICLE. Accelerating Ant Colony Optimization for the Traveling Salesman Problem on the GPU

RESEARCH ARTICLE. Accelerating Ant Colony Optimization for the Traveling Salesman Problem on the GPU The International Journal of Parallel, Emergent and Distributed Systems Vol. 00, No. 00, Month 2011, 1 21 RESEARCH ARTICLE Accelerating Ant Colony Optimization for the Traveling Salesman Problem on the

More information

Ant Algorithms for Discrete Optimization

Ant Algorithms for Discrete Optimization Ant Algorithms for Discrete Optimization Tech. Rep. IRIDIA/98-10 Université Libre de Bruxelles Marco Dorigo and Gianni Di Caro IRIDIA, Université Libre de Bruxelles Brussels, Belgium mdorigo@ulb.ac.be,

More information

A Novel Ant-Based Clustering Approach for Document Clustering

A Novel Ant-Based Clustering Approach for Document Clustering A Novel Ant-Based Clustering Approach for Document Clustering Yulan He, Siu Cheung Hui, and Yongxiang Sim School of Computer Engineering, Nanyang Technological University Nanyang Avenue, Singapore 639798

More information

On-Line Scheduling Algorithm for Real-Time Multiprocessor Systems with ACO and EDF

On-Line Scheduling Algorithm for Real-Time Multiprocessor Systems with ACO and EDF On-Line Scheduling Algorithm for Real-Time Multiprocessor Systems with ACO and EDF Cheng Zhao, Myungryun Yoo, Takanori Yokoyama Department of computer science, Tokyo City University 1-28-1 Tamazutsumi,

More information

RESEARCH OF COMBINATORIAL OPTIMIZATION PROBLEM BASED ON GENETIC ANT COLONY ALGORITHM

RESEARCH OF COMBINATORIAL OPTIMIZATION PROBLEM BASED ON GENETIC ANT COLONY ALGORITHM RESEARCH OF COMBINATORIAL OPTIMIZATION PROBLEM BASED ON GENETIC ANT COLONY ALGORITHM ZEYU SUN, 2 ZHENPING LI Computer and Information engineering department, Luoyang Institute of Science and Technology,

More information

arxiv: v1 [cs.ne] 10 Sep 2017

arxiv: v1 [cs.ne] 10 Sep 2017 Applying ACO To Large Scale TSP Instances Darren M. Chitty arxiv:1709.03187v1 [cs.ne] 10 Sep 2017 Department of Computer Science, University of Bristol, Merchant Venturers Bldg, Woodland Road, BRISTOL

More information

Ant Colony Optimization Parallel Algorithm for GPU

Ant Colony Optimization Parallel Algorithm for GPU Ant Colony Optimization Parallel Algorithm for GPU Honours Project - COMP 4905 Carleton University Karim Tantawy 100710608 Supervisor: Dr. Tony White, School of Computer Science April 10 th 2011 Abstract

More information

International Journal of Modern Trends in Engineering and Research e-issn No.: , Date: 2-4 July, 2015

International Journal of Modern Trends in Engineering and Research   e-issn No.: , Date: 2-4 July, 2015 International Journal of Modern Trends in Engineering and Research www.ijmter.com e-issn No.:2349-9745, Date: 2-4 July, 2015 A Novel Method for Edge Detection of a Color Image with ACO algorithm in Swarm

More information

A Review: Optimization of Energy in Wireless Sensor Networks

A Review: Optimization of Energy in Wireless Sensor Networks A Review: Optimization of Energy in Wireless Sensor Networks Anjali 1, Navpreet Kaur 2 1 Department of Electronics & Communication, M.Tech Scholar, Lovely Professional University, Punjab, India 2Department

More information

m Environment Output Activation 0.8 Output Activation Input Value

m Environment Output Activation 0.8 Output Activation Input Value Learning Sensory-Motor Cortical Mappings Without Training Mike Spratling Gillian Hayes Department of Articial Intelligence University of Edinburgh mikes@dai.ed.ac.uk gmh@dai.ed.ac.uk Abstract. This paper

More information

International Journal of Computational Intelligence and Applications c World Scientific Publishing Company

International Journal of Computational Intelligence and Applications c World Scientific Publishing Company International Journal of Computational Intelligence and Applications c World Scientific Publishing Company The Accumulated Experience Ant Colony for the Traveling Salesman Problem JAMES MONTGOMERY MARCUS

More information

Using Genetic Algorithms to optimize ACS-TSP

Using Genetic Algorithms to optimize ACS-TSP Using Genetic Algorithms to optimize ACS-TSP Marcin L. Pilat and Tony White School of Computer Science, Carleton University, 1125 Colonel By Drive, Ottawa, ON, K1S 5B6, Canada {mpilat,arpwhite}@scs.carleton.ca

More information

A Parallel Implementation of Ant Colony Optimization

A Parallel Implementation of Ant Colony Optimization A Parallel Implementation of Ant Colony Optimization Author Randall, Marcus, Lewis, Andrew Published 2002 Journal Title Journal of Parallel and Distributed Computing DOI https://doi.org/10.1006/jpdc.2002.1854

More information

Heuristic Search Methodologies

Heuristic Search Methodologies Linköping University January 11, 2016 Department of Science and Technology Heuristic Search Methodologies Report on the implementation of a heuristic algorithm Name E-mail Joen Dahlberg joen.dahlberg@liu.se

More information

Research Article AntStar: Enhancing Optimization Problems by Integrating an Ant System and A Algorithm

Research Article AntStar: Enhancing Optimization Problems by Integrating an Ant System and A Algorithm Scientific Programming Volume, Article ID 7, pages http://dx.doi.org/.//7 Research Article AntStar: Enhancing Optimization Problems by Integrating an Ant System and A Algorithm Mohammed Faisal, Hassan

More information

SIMULATION APPROACH OF CUTTING TOOL MOVEMENT USING ARTIFICIAL INTELLIGENCE METHOD

SIMULATION APPROACH OF CUTTING TOOL MOVEMENT USING ARTIFICIAL INTELLIGENCE METHOD Journal of Engineering Science and Technology Special Issue on 4th International Technical Conference 2014, June (2015) 35-44 School of Engineering, Taylor s University SIMULATION APPROACH OF CUTTING TOOL

More information

Ant colony optimization with genetic operations

Ant colony optimization with genetic operations Automation, Control and Intelligent Systems ; (): - Published online June, (http://www.sciencepublishinggroup.com/j/acis) doi:./j.acis.. Ant colony optimization with genetic operations Matej Ciba, Ivan

More information

Adaptive Ant Colony Optimization for the Traveling Salesman Problem

Adaptive Ant Colony Optimization for the Traveling Salesman Problem - Diplomarbeit - (Implementierungsarbeit) Adaptive Ant Colony Optimization for the Traveling Salesman Problem Michael Maur Mat.-Nr.: 1192603 @stud.tu-darmstadt.de Eingereicht im Dezember 2009

More information

Research Article Using the ACS Approach to Solve Continuous Mathematical Problems in Engineering

Research Article Using the ACS Approach to Solve Continuous Mathematical Problems in Engineering Mathematical Problems in Engineering, Article ID 142194, 7 pages http://dxdoiorg/101155/2014/142194 Research Article Using the ACS Approach to Solve Continuous Mathematical Problems in Engineering Min-Thai

More information

Parallel Ant Colonies for Combinatorial. Abstract. Ant Colonies (AC) optimization take inspiration from the behavior

Parallel Ant Colonies for Combinatorial. Abstract. Ant Colonies (AC) optimization take inspiration from the behavior Parallel Ant Colonies for Combinatorial Optimization Problems El-ghazali Talbi?, Olivier Roux, Cyril Fonlupt, Denis Robillard?? Abstract. Ant Colonies (AC) optimization take inspiration from the behavior

More information

Visualization and comparison of randomized search heuristics on random traveling salesman problems

Visualization and comparison of randomized search heuristics on random traveling salesman problems Visualization and comparison of randomized search heuristics on random traveling salesman problems Thorkil Burup s122506 Kongens Lyngby 2015 Technical University of Denmark Department of Applied Mathematics

More information

Solving the Shortest Path Problem in Vehicle Navigation System by Ant Colony Algorithm

Solving the Shortest Path Problem in Vehicle Navigation System by Ant Colony Algorithm Proceedings of the 7th WSEAS Int. Conf. on Signal Processing, Computational Geometry & Artificial Vision, Athens, Greece, August 24-26, 2007 88 Solving the Shortest Path Problem in Vehicle Navigation System

More information

LECTURE 20: SWARM INTELLIGENCE 6 / ANT COLONY OPTIMIZATION 2

LECTURE 20: SWARM INTELLIGENCE 6 / ANT COLONY OPTIMIZATION 2 15-382 COLLECTIVE INTELLIGENCE - S18 LECTURE 20: SWARM INTELLIGENCE 6 / ANT COLONY OPTIMIZATION 2 INSTRUCTOR: GIANNI A. DI CARO ANT-ROUTING TABLE: COMBINING PHEROMONE AND HEURISTIC 2 STATE-TRANSITION:

More information

An Experimental Study of the Simple Ant Colony Optimization Algorithm

An Experimental Study of the Simple Ant Colony Optimization Algorithm An Experimental Study of the Simple Ant Colony Optimization Algorithm MARCO DORIGO and THOMAS STÜTZLE IRIDIA Université Libre de Bruxelles Avenue Franklin Roosevelt 50, CP 194/6, 1050 Brussels BELGIUM

More information

AN IMPROVED ANT COLONY ALGORITHM BASED ON 3-OPT AND CHAOS FOR TRAVELLING SALESMAN PROBLEM

AN IMPROVED ANT COLONY ALGORITHM BASED ON 3-OPT AND CHAOS FOR TRAVELLING SALESMAN PROBLEM AN IMPROVED ANT COLONY ALGORITHM BASED ON 3-OPT AND CHAOS FOR TRAVELLING SALESMAN PROBLEM Qingping Yu 1,Xiaoming You 1 and Sheng Liu 2 1 College of Electronic and Electrical Engineering, Shanghai University

More information

ANT COLONY OPTIMIZATION FOR SOLVING TRAVELING SALESMAN PROBLEM

ANT COLONY OPTIMIZATION FOR SOLVING TRAVELING SALESMAN PROBLEM International Journal of Computer Science and System Analysis Vol. 5, No. 1, January-June 2011, pp. 23-29 Serials Publications ISSN 0973-7448 ANT COLONY OPTIMIZATION FOR SOLVING TRAVELING SALESMAN PROBLEM

More information

CHAOTIC ANT SYSTEM OPTIMIZATION FOR PATH PLANNING OF THE MOBILE ROBOTS

CHAOTIC ANT SYSTEM OPTIMIZATION FOR PATH PLANNING OF THE MOBILE ROBOTS CHAOTIC ANT SYSTEM OPTIMIZATION FOR PATH PLANNING OF THE MOBILE ROBOTS Xu Mingle and You Xiaoming Shanghai University of Engineering Science, Shanghai, China ABSTRACT This paper presents an improved ant

More information

Models for pheromone evaluation in Ant Systems for Mobile Ad-hoc networks

Models for pheromone evaluation in Ant Systems for Mobile Ad-hoc networks Models for pheromone evaluation in Ant Systems for Mobile Ad-hoc networks Fernando Correia Portuguese Naval Academy/I.S.T Lisboa Portugal fcorreia@tagus.inesc-id.pt Teresa Vazão Inesc-ID/I.S.T. Lisboa

More information

International Journal of Current Trends in Engineering & Technology Volume: 02, Issue: 01 (JAN-FAB 2016)

International Journal of Current Trends in Engineering & Technology Volume: 02, Issue: 01 (JAN-FAB 2016) Survey on Ant Colony Optimization Shweta Teckchandani, Prof. Kailash Patidar, Prof. Gajendra Singh Sri Satya Sai Institute of Science & Technology, Sehore Madhya Pradesh, India Abstract Although ant is

More information

Ant Colony Optimization and its Application to Adaptive Routing in Telecommunication Networks

Ant Colony Optimization and its Application to Adaptive Routing in Telecommunication Networks UNIVERSITÉ LIBRE DE BRUXELLES FACULTÉ DES SCIENCES APPLIQUÉES Ant Colony Optimization and its Application to Adaptive Routing in Telecommunication Networks Gianni Di Caro Dissertation présentée en vue

More information

ANT COLONY OPTIMIZATION FOR FINDING BEST ROUTES IN DISASTER AFFECTED URBAN AREA

ANT COLONY OPTIMIZATION FOR FINDING BEST ROUTES IN DISASTER AFFECTED URBAN AREA ANT COLONY OPTIMIZATION FOR FINDING BEST ROUTES IN DISASTER AFFECTED URBAN AREA F Samadzadegan a, N Zarrinpanjeh a * T Schenk b a Department of Geomatics Eng., University College of Engineering, University

More information

Modified Greedy Methodology to Solve Travelling Salesperson Problem Using Ant Colony Optimization and Comfort Factor

Modified Greedy Methodology to Solve Travelling Salesperson Problem Using Ant Colony Optimization and Comfort Factor International Journal of Scientific and Research Publications, Volume 4, Issue 10, October 2014 1 Modified Greedy Methodology to Solve Travelling Salesperson Problem Using Ant Colony Optimization and Comfort

More information

Genetic Algorithms and Genetic Programming Lecture 13

Genetic Algorithms and Genetic Programming Lecture 13 Genetic Algorithms and Genetic Programming Lecture 13 Gillian Hayes 9th November 2007 Ant Colony Optimisation and Bin Packing Problems Ant Colony Optimisation - review Pheromone Trail and Heuristic The

More information

Improved Ant Colony Algorithm for Global Optimal Trajectory Planning of UAV under Complex Environment

Improved Ant Colony Algorithm for Global Optimal Trajectory Planning of UAV under Complex Environment International Journal of Computer Science & Applications Vol. 4 Issue 3, pp 57-68 2007 Technomathematics Research Foundation Improved Ant Colony Algorithm for Global Optimal Trajectory Planning of UAV

More information

Hybrid of Genetic Algorithm and Continuous Ant Colony Optimization for Optimum Solution

Hybrid of Genetic Algorithm and Continuous Ant Colony Optimization for Optimum Solution International Journal of Computer Networs and Communications Security VOL.2, NO.1, JANUARY 2014, 1 6 Available online at: www.cncs.org ISSN 2308-9830 C N C S Hybrid of Genetic Algorithm and Continuous

More information

A Recursive Ant Colony System Algorithm for the TSP

A Recursive Ant Colony System Algorithm for the TSP 2011 International Conference on Advancements in Information Technology With workshop of ICBMG 2011 IPCSIT vol.20 (2011) (2011) IACSIT Press, Singapore A Recursive Ant Colony System Algorithm for the TSP

More information

An Adaptive Ant System using Momentum Least Mean Square Algorithm

An Adaptive Ant System using Momentum Least Mean Square Algorithm An Adaptive Ant System using Momentum Least Mean Square Algorithm Abhishek Paul ECE Department Camellia Institute of Technology Kolkata, India Sumitra Mukhopadhyay Institute of Radio Physics and Electronics

More information

Ant Colony Optimization: The Traveling Salesman Problem

Ant Colony Optimization: The Traveling Salesman Problem Ant Colony Optimization: The Traveling Salesman Problem Section 2.3 from Swarm Intelligence: From Natural to Artificial Systems by Bonabeau, Dorigo, and Theraulaz Andrew Compton Ian Rogers 12/4/2006 Traveling

More information

An Ant Approach to the Flow Shop Problem

An Ant Approach to the Flow Shop Problem An Ant Approach to the Flow Shop Problem Thomas Stützle TU Darmstadt, Computer Science Department Alexanderstr. 10, 64283 Darmstadt Phone: +49-6151-166651, Fax +49-6151-165326 email: stuetzle@informatik.tu-darmstadt.de

More information

ABSTRACT DYNAMIC ADAPTIVE ROUTING IN MOBILE AD HOC NETWORKS. Department of Electrical Engineering

ABSTRACT DYNAMIC ADAPTIVE ROUTING IN MOBILE AD HOC NETWORKS. Department of Electrical Engineering ABSTRACT Title of Thesis: DYNAMIC ADAPTIVE ROUTING IN MOBILE AD HOC NETWORKS Degree candidate: Harsh Mehta Degree and year: Master of Science, 2002 Thesis directed by: Professor John S. Baras Department

More information

Consultant-Guided Search A New Metaheuristic for Combinatorial Optimization Problems

Consultant-Guided Search A New Metaheuristic for Combinatorial Optimization Problems Consultant-Guided Search A New Metaheuristic for Combinatorial Optimization Problems Serban Iordache SCOOP Software GmbH Am Kielshof 29, 51105 Köln, Germany siordache@acm.org ABSTRACT In this paper, we

More information