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

Size: px
Start display at page:

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

Transcription

1 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, Shahid Bahonar University of Kerman, Kerman, Iran h.salehi@mail.u.ac.ir, nezam@mail.u.ac.ir, saryazdi@mail.u.ac.ir, ffarrahi@mail.u.ac.ir Abstract: In is paper a multi-parameter A*(Astar)-ants based algorim is proposed in order to find e best optimized multi-parameter pa between two desired points in regions. This algorim recognizes pas, according to user desired parameters using electronic maps. The proposed algorim is a combination of A* and ants algorim in which e proposed A* algorim is e prologue to e suggested ant based algorim.in fact, is A* algorim invigorates some pas pheromones in ants algorim. As one of implementations of is meod, is algorim was applied on a part of Kerman city, Iran as a multi-parameter vehicle navigator. It finds e best optimized multi-parameter direction between two desired junctions based on city traveler parameters. Comparison results between e proposed meod and ants algorim demonstrates efficiency and lower cost function results of e proposed meod versus ants algorim. Keywords: Ants algorim, A* algorim, Multiparameter optimization, Vehicle navigation. 1. Introduction The development of e vehicle navigation systems started since early The vehicle navigation system is an information system in substance. Therefore it is necessary of e frame structure, organization and management of electronic map data, as all powerful system functions must be run based on it [2]. Electronic map data should include information such as medical treatment, entertainment, number of traffic lights, traffic flow and accidents occurred history [1,2], useful for finding pas. Pafinding plays an important role in many modern games. It is usually a state-space search applied to a two-, or ree-dimensional map where each state describes a position on e map [3]. One of e most game programmers popular algorims is A* (A-star) algorim. This is due to e fact at it is often e algorim of choice. It is also popular because of easy implementation, efficiency and huge body of experience [6]. On e oer side, ants algorim has plenty of applications in pafinding and networ problems such as transportation networs [10] and communication networs [9]. Alough real ants are blind, ey are capable of finding e shortest pa from food source to eir nest by exploiting information of a liquid substance called pheromone, which ey release on e route transiting in. The idea of employing e foraging behavior of ants as a meod of stochastic combinatorial optimization was initially introduced by Dorigo in his PhD esis [4]. In is paper, an A*-ants based algorim is proposed in order to find e best optimized multiparameter direction between two desired points using electronic maps. As e problem is complex, e proposed A* algorim is e prologue to e proposed ants algorim. In oer words, A* algorim is run before ants algorim and updates (increases) pheromones of its resulted pas in ants algorim. This algorim is applied on a part of Kerman city, Iran, for multi-parameter desires. Comparison results between e proposed meod and e ants algorim demonstrates efficiency and lower cost results of e proposed meod versus ants algorim This paper is organized as follows. The next section reviews e basic principles of e A* and 154

2 ants algorim. Section 3 represents e details of e proposed meod and experimental results are demonstrated in section 4. Finally, e paper in concluded in section A review on A* algorim and Ant colony system 2.1 A* algorim A* was e result of two decades of research into state-space algorims [3]. A simple form of A* algorim is described briefly in is section. The search area is a two-dimensional square grid area wi an obstacle between two desired points X and Y as in Figure (1). Assume an agent is looing for shortest direction from point X to point Y. The steps are as follow. Fig.1 A simple two-dimensional square grid area a) The start point, X, is labeled as parent square and is added to e open list wi walable squares adjacent to e starting point. b) The point X is dropped from open list and added to e closed list. c) A square is chosen from e open list by means of e Equation (1). f = g + h ( 1) Where g is e movement score from parent to its adjacent walable squares; h is e heuristic movement score from e origin to e destination using Manhattan meod. In ese procedures, scores are calculated by considering each vertical or horizontal movement score 10-unit, and each diagonal movement score 14-unit. d) The lowest f score square is dropped from e open list and is added to e closed list. The mentioned procedure is repeated until arrival to e destination. The squares in e closed list are e direction. 2.2 Ant colony system Ant colony optimization (ACO) is a class of algorims, whose first member, called Ant System (AS), was initially proposed by Colorni, Dorigo and Maniezzo [8]. The AS strategy developed by Dorigo attempts to simulate e behavior of real ants wi e addition of several artificial characteristics: visibility, memory and discrete time to solve many complex problems successfully such as e traveling salesman problem (TSP) [5], vehicle routing problem (VRP) [11] and best pa planning [7]. Even ough many changes have applied to ACO algorims during past few years, but eir fundamental ant behavioral mechanism which is positive feedbac process demonstrated by a colony of ants, is still e same. Different steps of an ant colony system algorim (ACSA) are e followings. - Problem graph representation: As problems which could be solved by ACSA are often discrete, ey could be represented by a graph wi N nodes and R routes, G = N, R. - Initializing ant distribution: A number of ants are placed on e origin nodes. - Node transition rule: The node transition rule specifies ants movement from node to node which is probabilistic. The probability of displacing ant from node i to node j is calculated by Equation (2). p α ( τ ) ( η ) β if j tabu = α β ( τ ) ( ) h tabu ih η ih 0 ( 2) Where τ and η are respectively e intensity of pheromone and e visibility of direct rout from i to j. α and β are parameters which control e relative importance of τ and η respectively. tabu is set of unavailable routes for ant. - Update Global Trail: A cycle of ACO algorim is completed when every ant has assembled a solution. At e end of each cycle, e intensity of pheromone is updated by a pheromone trail updating rule as in Equation (3). m τ new = 1 ρ τ old + τ ( 3) ( ) ( ) ( ) Where ρ = 1 is a constant parameter ( 0 < ρ < 1) named pheromone evaporation and τ is e amount of pheromone laid on route ( i, j) by e ant and could be given by Equation (4). 155

3 Q if route (i, j) be traversed by τ = ( 4) f e ant (at e current cycle) 0 Where f is e cost value of e solution found by ant K. - Stopping criterion: The end of e algorim could be achieved by a predefined number of cycles, or e maximal number of cycles between two improvements of e global best solutions. 3. Proposed meod In is paper an A*-ants based algorim is proposed. This algorim is a multi-parameter navigator using electronic maps in which finds e best optimized direction between two desired points based on users needs. This algorim is exclusively applied on a part of Kerman city as a vehicle navigation algorim. In is meod, A* algorim finds some candidate directions by solving e problem. Afterwards, e results are entered into e ants algorim. In fact, e A* algorim influences e ants algorim by updating (increasing) pheromone of resulted directions. It was attempted to mae a collection of all parameters important for travelers taing journey in cities. These parameters are distance, wid, traffic load, road ris, medical treatment, entertainment, number of traffic lights, traffic flow and history of accidents occurred. An algorim named ant-based vehicle navigation (AVN) algorim was proposed in [1] which finds e best optimized directions based on ants algorims. However, e algorim proposed here is an upgrade version of AVN algorim. As it was mentioned before, is algorim consists of two algorims itself. These algorims are A* algorim and ants algorim. A* algorim is a prologue of e ants algorim. It invigorates some produced directions by itself in order to help ants algorim, recognize best direction wi higher reliability and lower cost an ants algorim. This is done by updating (increasing) pheromone amount of directions founded in e A* algorim. A pseudocode of is algorim is presented in Figure (2). Procedure A*-ants algorim Initialize Activate A* algorim Update pheromone list Active ants algorim Express best optimized direction End A*-ants algorim 156 Fig 2.The proposed A*-ants algorim pseudocode Updating pheromone amount for resulted direction from intersection i to j ( τ ) in e proposed A* algorim is done by e Equation (5). new = τ + τ old 5 ( ) ( ) T τ τ ( ) Where 1 is e ants algorim pheromone updating constant parameter adjusted by try and error. The proposed A* algorim produced directions are recorded in e listt. The proposed A* algorim is discussed in more details in e following subsections Proposed A* algorim The pseudocode of e A* algorim used in e proposed algorim is presented in Figure (3). Procedure A* algorim Add start to open While open is not empty Let n=first nod on open Drop n from open & add it to closed Add adjacent walable squares to open Compute scores Select next square Add parent to closed If parent=destination Search is succeed Else if open is empty and destination is not find Search is fail End End Fig.3 The proposed A* algorim pseudocode As is pseudocode is clear and some of its steps were defined in e last section, brief descriptions of some of its steps are presented as follow. - Compute scores: In is stage, all adjacent squares to e n square, except impossible and ose in e closed list scores are calculated. The selected square is named parent. - Select next square: If e g score for any left square in e open list is better an e current square, e parent is changed to is square. Afterwards, h and g scores are calculated again for e new parent. This algorim is successful when open list is empty and destination is found Proposed ants algorim This subsection discusses e employed ants algorim in details. The pseudocode of is

4 algorim used in e proposed algorim is presented in Figure (4). Procedure ants algorim Initialize For each loop Locate ants For each iteration For each ant If ant be alive Construct probability Select route Update tabu list End Next ant Next iteration Value ants Update pheromone Next loop Select best optimized direction End ants algorim Fig.4 The proposed ants algorim pseudocode. This pseudo code is contained of e following steps. - Initialize: It consists of algorim parameters initial values such as number of ants, evaporation coefficient, and average velocity of vehicle. - Locate ants: Ants are located on e start point in is stage. Alive ant refers to an ant which has not arrived to e destination yet and is not bloced in an intersection. An ant is bloced in an intersection is a situation where has no opportunity to continue its transition toward e destination as ere is no possible route to continue or transiting bacward [1]. - Construct probability: In is step, e probability of each possible direct route is calculated based on its cost function for each alive ant. The probability of displacing from intersection i to intersection j for ant is calculated by Equation (6) α 2α l cost p τ = τ h tabu ih l parameters l parameters 0 l cost 2αl ihl j tabu Where τ is e direct route pheromone intensity from intersection i to j. α controls e importance of τ and tabu is set of direct bloced routes. Parameters set consists of distance, wid, traffic load, road ris, road quality and oer useful parameters [1]. Cost of each parameter (l ) is ( 6) -2α l cost where significance of each l is adjustable l byα l. Data is entered into e algorim by an electronic map [2]. - Select route: A random parameter q wi uniform probability in [ 0,1 ] is compared wi a parameter Q ( 0 Q 1). The result pics up one of two selection meods for e alive ant to continue its route to next intersection. Selection meods are mentioned in Equation (7). arg max p q > Q 7 j = Roulette ( ih ) ( ), ( ) Wheel p ih If q > Q alive ant selects e route wi highest probability, else Roulette Wheel rule will be selected to choose e next intersection rough probabilities. - Update tabu list: In is step, e route which ant has chosen is added to tabu list in order not to be selected again and its probability will not be calculated anymore. If ant arrives to e destination or be bloced in an intersection, it is omitted from alive ant list. In oer words, is step ills e bloced or arrived ant in e current iteration. Value ants: The tcost is summation of cost from intersection i to intersection j for alive ant, since it has started its journey from origin until its arrival to destination. Based on tcosts average ( avg. tcost ) of all e ants, each ant will be added to one of e AWA or PLA lists base on e Equation (8). AWA tcost < avg. tcost ( 8) PLA Where avg. tcost is e average of all arrived ants tcosts. If tcost of alive ant be more an avg. tcost, it will be added to AWA list, it will be added to PLA list. - Update pheromone: This stage consists of local and global pheromone updating sections. The pheromone amount of route between intersections i and j is updated by Equation (9) for ant. ( ) ( ) av τ new = τ old + if AWA tcost ( 9) τ ( new) = τ ( old) pv if PLA Where pv ( 0 < pv <1) and av ( > 1) av are respectively punishment and awarding amounts. The last step of each completed loop is global pheromone updating using Equation (10). ( new ) ρτ ( old ) τ = ( 10) 157

5 Fig.5 A part of Kerman city, Iran, adapted for experiments. Where ρ ( 0 < ρ < 1) is evaporation coefficient. Select best optimized direction: After m loops, e optimized direction wi e lowest cost function from origin to destination is e result. Section 4 presents e simulation results of e proposed algorim. 4. Experimental results In is section, e proposed algorim and ants algorims are compared for finding e best optimized multi-parameter direction in a part of e Kerman city This procedure is run for two separated parameters importance rates. The selected part of Kerman city is consisted of 27 intersections as in Figure (5). Suitable parameters used in is algorim were determined based on trial and error as follows: α = 2, Q = 0.9, pv = 0. 9, av = 950 and ρ = 0.9. In e bo experiments, e average velocity of vehicle is assumed 40Km/h and start time is 6:00 PM as default. The parameters important rates for bo experiments are presented in Table (1) for e origin and destination number 24 and 23 respectively. The resulted directions from ants algorim and A*-ants algorim are as follow respectively. Table 1 No. Parameter Experience1 Experience2 1 Distance Wid Traffic load Road ris Road quality Traffic lights ( 12 ) The cost of directions (11) and (12) are and respectively. It should be noticed at e directions from intersection 6 to 7 and 7 to 3 are one-way. Therefore, e proposed algorim found anoer direction based on e desired parameter importance rates. In e second experiment, e resulted directions from ants algorim and A*-ants algorim are as follow respectively ( 13 ) ( 14 ) The cost of directions (13) and (14) are 99.2 and 52.6 respectively. Because e experimental region is simple, e proposed meod found similar directions in e bo experiments. As it is illustrated in Figures (6,7), e proposed meod has less cost average an [1] which is due to e pheromone updating (increasing) of A* algorim. This figure illustrates efficiency of e proposed meod. ( ) 158

6 References Fig.6 Costs average in e first experiment. Fig.7 Costs average in e second experiment. 5. Conclusion In is paper a combination of A* and ants algorim is proposed in order to find e best optimized multi-parameter direction between two desired points. The proposed A*-ants algorim is a new meod where A* algorim is run before ants algorim and updates (increases) pheromones of its resulted pas in e ants algorim. This algorim was applied on a part of Kerman city, Iran as a vehicle navigation algorim and e results were encouraging in comparison of ants algorim. This meod could also be useful for emergency services, taxi drivers, tours and etc. as it is a fast access, low-cost and easy vehicle navigator algorim. Acnowledgements This paper was supported by Shahid Bahonar University of Kerman Young Researchers Society. [1] H. Salehinejad and F. Farrahi-Moghaddam, An Ant Based Algorim Approach to Vehicle Navigation, Proc. First joint cong. on eight conf. of intelligent systems and seven conf. of fuzzy systems, Iran, [2] CHEN, Dawei, LIU, Zhuo, ZHOU, Chuanming, WANG, Bo, Research of GIS Application in e Vehicle Location and Navigation System, Traffic and Computer, Vol.18, No.96, pp (6). [3] D. Higgins, Generic A* Pafinding. AI Game Programming Wisdom, Charles River Media, pp , 2002 [4] M. Dorigo, Optimization, learning, and natural algorims. PhD Thesis, Dip Electronica e Informazione, Politeccnico di Milano, Italy, [5] M. Dorigo and LM. Gambardella, Ant colony system: a cooperating learning approach to e traveling salesman problem IEEE Trans. Evol. Compute Vol. 1, No.1, pp.1-24, [6] P.E. Hart, N. J. Nilsson and B. Raphael, Correction to a formal basis for e heuristic determination of minimum cost pas, SIGART Newsletter, 37: pp.28-29, 1972 [7] C.L. Liu, Best pa planning for public transportation systems, Proc. of e IEEE fif International Conf. on Intelligence Transportation Systems. pp , [8] M. Dorigo, V. Maniezzo, and A. Colorni, The ant system: Optimization by a colony of cooperating agents. IEEE Transactions on Systems. Man and Cybernetics. Vol. 26, No.1, pp.1-13, [9] M. Dorigo, Ant foraging behavior, combinatorial optimization, and routing in communication networs, Swarm intelligence: From natural to artificial systems. Santa Fe Institute Studies in e Sciences of Complexity, pp , [10] Z. Guo, X. Song and P. Zhang, The ACO algorim for container transportation networ of seaports, Proc. of e Eastern Asia Society for Transportation Studies, pp , 2005 [11]M. Dorigo, MACS-VRPTW: A multiple ant colony system for VRP. McGraw-Hill, pp.63-76, [12] David V. Pynada and Michael P. Wellman, Accounting for context in plan recognition, wi application to traffic monitoring,. Proc eleven conf. on Uncertainty in Artificial Intelligence, Montreal,

ANT COLONY SYSTEM IN AMBULANCE NAVIGATION 1. INTRODUCTION

ANT COLONY SYSTEM IN AMBULANCE NAVIGATION 1. INTRODUCTION JOURNAL OF MEDICAL INFORMATICS & TECHNOLOGIES Vol. 15/2010, ISSN 1642-6037 ant colony system, car navigation, ambulance Wojciech BURA 1, Mariusz BORYCZKA 2 ANT COLONY SYSTEM IN AMBULANCE NAVIGATION This

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

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

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

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

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

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

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

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

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

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

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

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

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

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

CT79 SOFT COMPUTING ALCCS-FEB 2014

CT79 SOFT COMPUTING ALCCS-FEB 2014 Q.1 a. Define Union, Intersection and complement operations of Fuzzy sets. For fuzzy sets A and B Figure Fuzzy sets A & B The union of two fuzzy sets A and B is a fuzzy set C, written as C=AUB or C=A OR

More information

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

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

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 (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

ACO for Maximal Constraint Satisfaction Problems

ACO for Maximal Constraint Satisfaction Problems MIC 2001-4th Metaheuristics International Conference 187 ACO for Maximal Constraint Satisfaction Problems Andrea Roli Christian Blum Marco Dorigo DEIS - Università di Bologna Viale Risorgimento, 2 - Bologna

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

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

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

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

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

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

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

ANT colony optimization (ACO) is a nature-inspired

ANT colony optimization (ACO) is a nature-inspired An Ant Colony Optimization Algorithm For Image Edge Detection Jing ian, Weiyu Yu, and Shengli Xie Abstract Ant colony optimization (ACO) is an optimization algorithm inspired by the natural behavior of

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

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

Advances on image interpolation based on ant colony algorithm

Advances on image interpolation based on ant colony algorithm DOI 10.1186/s40064-016-2040-9 RESEARCH Open Access Advances on image interpolation based on ant colony algorithm Olivier Rukundo 1* and Hanqiang Cao 2 *Correspondence: orukundo@gmail.com 1 Department of

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

Research on Stability of Power Carrier Technology in Streetlight Monitoring System

Research on Stability of Power Carrier Technology in Streetlight Monitoring System Research on Stability of Power Carrier Technology in Streetlight Monitoring System Zhang Liguang School of Electronic Information Engineering Xi an Technological University Xi an, China zhangliguang@xatu.edu.cn

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

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

Workflow Scheduling Using Heuristics Based Ant Colony Optimization

Workflow Scheduling Using Heuristics Based Ant Colony Optimization Workflow Scheduling Using Heuristics Based Ant Colony Optimization 1 J.Elayaraja, 2 S.Dhanasekar 1 PG Scholar, Department of CSE, Info Institute of Engineering, Coimbatore, India 2 Assistant Professor,

More information

Ant Colony Based Load Flow Optimisation Using Matlab

Ant Colony Based Load Flow Optimisation Using Matlab Ant Colony Based Load Flow Optimisation Using Matlab 1 Kapil Upamanyu, 2 Keshav Bansal, 3 Miteshwar Singh Department of Electrical Engineering Delhi Technological University, Shahbad Daulatpur, Main Bawana

More information

DIPARTIMENTO DI ELETTRONICA - POLITECNICO DI MILANO

DIPARTIMENTO DI ELETTRONICA - POLITECNICO DI MILANO DIPARTIMENTO DI ELETTRONICA - POLITECNICO DI MILANO Positive feedback as a search strategy Marco Dorigo Vittorio Maniezzo Alberto Colorni Report n. 91-016 June 1991 2 Title: Positive feedback as a search

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

Learning Fuzzy Rules Using Ant Colony Optimization Algorithms 1

Learning Fuzzy Rules Using Ant Colony Optimization Algorithms 1 Learning Fuzzy Rules Using Ant Colony Optimization Algorithms 1 Jorge Casillas, Oscar Cordón, Francisco Herrera Department of Computer Science and Artificial Intelligence, University of Granada, E-18071

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

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

Ant Colony Algorithms for the Dynamic Vehicle Routing Problem with Time Windows

Ant Colony Algorithms for the Dynamic Vehicle Routing Problem with Time Windows Ant Colony Algorithms for the Dynamic Vehicle Routing Problem with Time Windows Barry van Veen, Michael Emmerich, Zhiwei Yang, Thomas Bäck, and Joost Kok LIACS, Leiden University, Niels Bohrweg 1, 2333-CA

More information

Classification Using Unstructured Rules and Ant Colony Optimization

Classification Using Unstructured Rules and Ant Colony Optimization Classification Using Unstructured Rules and Ant Colony Optimization Negar Zakeri Nejad, Amir H. Bakhtiary, and Morteza Analoui Abstract In this paper a new method based on the algorithm is proposed to

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

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

A heuristic approach to find the global optimum of function

A heuristic approach to find the global optimum of function Journal of Computational and Applied Mathematics 209 (2007) 160 166 www.elsevier.com/locate/cam A heuristic approach to find the global optimum of function M. Duran Toksarı Engineering Faculty, Industrial

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

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 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

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

Scalability of a parallel implementation of ant colony optimization

Scalability of a parallel implementation of ant colony optimization 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

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

Ant Colony Optimization Algorithm for Reactive Production Scheduling Problem in the Job Shop System

Ant Colony Optimization Algorithm for Reactive Production Scheduling Problem in the Job Shop System Proceedings of the 2009 IEEE International Conference on Systems, Man, and Cybernetics San Antonio, TX, USA - October 2009 Ant Colony Optimization Algorithm for Reactive Production Scheduling Problem in

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

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

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 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

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

An Ant Colony Optimization Approach to Test Sequence Generation for State-Based Software Testing

An Ant Colony Optimization Approach to Test Sequence Generation for State-Based Software Testing Edith Cowan University Research Online ECU Publications Pre. 2011 2005 An Ant Colony Optimization Approach to Test Sequence Generation for State-Based Software Testing Huaizhong Li Edith Cowan University

More information

UNIVERSITY OF NORTH CAROLINA AT CHARLOTTE

UNIVERSITY OF NORTH CAROLINA AT CHARLOTTE UNIVERSITY OF NORTH CAROLINA AT CHARLOTTE Department of Electrical and Computer Engineering ECGR 4161/5196 Introduction to Robotics Experiment No. 5 A* Path Planning Overview: The purpose of this experiment

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 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

A MULTI-OBJECTIVE ANT COLONY OPTIMIZATION ALGORITHM FOR INFRASTRUCTURE ROUTING

A MULTI-OBJECTIVE ANT COLONY OPTIMIZATION ALGORITHM FOR INFRASTRUCTURE ROUTING A MULTI-OBJECTIVE ANT COLONY OPTIMIZATION ALGORITHM FOR INFRASTRUCTURE ROUTING A Thesis by WALTER MILLER McDONALD Submitted to the Office of Graduate Studies of Texas A&M University in partial fulfillment

More information

Ant Colony Optimisation for Virtual-Wavelength-Path Routing and Wavelength Allocation

Ant Colony Optimisation for Virtual-Wavelength-Path Routing and Wavelength Allocation Ant Colony Optimisation for Virtual-Wavelength-Path Routing and Wavelength Allocation Griselda Navarro Varela Dept. of Electronic Systems Engineering, University of Essex, Wivenhoe Park, Colchester, Essex

More information

Ant n-queen Solver. Salabat Khan, Mohsin Bilal, Muhammad Sharif, Rauf Baig

Ant n-queen Solver. Salabat Khan, Mohsin Bilal, Muhammad Sharif, Rauf Baig International Journal of Artificial Intelligence, ISSN 0974-0635; Int. J. Artif. Intell. Autumn (October) 2011, Volume 7, Number A11 Copyright 2011 by IJAI (CESER Publications) Ant n-queen Solver Salabat

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

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

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

SavingsAnts for the Vehicle Routing Problem. Karl Doerner Manfred Gronalt Richard F. Hartl Marc Reimann Christine Strauss Michael Stummer

SavingsAnts for the Vehicle Routing Problem. Karl Doerner Manfred Gronalt Richard F. Hartl Marc Reimann Christine Strauss Michael Stummer SavingsAnts for the Vehicle Routing Problem Karl Doerner Manfred Gronalt Richard F. Hartl Marc Reimann Christine Strauss Michael Stummer Report No. 63 December 2001 December 2001 SFB Adaptive Information

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

Blind Image Deconvolution Technique for Image Restoration using Ant Colony Optimization

Blind Image Deconvolution Technique for Image Restoration using Ant Colony Optimization Blind Image Deconvolution Technique for Image Restoration using Ant Colony Optimization Amandeep Kaur CEM Kapurthala, Punjab Vinay Chopra DAVIET Jalandhar Punjab ABSTRACT Image Restoration is a field of

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

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

Image denoising in the wavelet domain using Improved Neigh-shrink

Image denoising in the wavelet domain using Improved Neigh-shrink Image denoising in the wavelet domain using Improved Neigh-shrink Rahim Kamran 1, Mehdi Nasri, Hossein Nezamabadi-pour 3, Saeid Saryazdi 4 1 Rahimkamran008@gmail.com nasri_me@yahoo.com 3 nezam@uk.ac.ir

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

Refinement of Data-Flow Testing using Ant Colony Algorithm

Refinement of Data-Flow Testing using Ant Colony Algorithm Refinement of Data-Flow Testing using Ant Colony Algorithm Abhay Kumar Srivastav, Supriya N S 2,2 Assistant Professor,2 Department of MCA,MVJCE Bangalore-560067 Abstract : Search-based optimization techniques

More information

An Innovative Approach to increase the Life time of Wireless Sensor Networks

An Innovative Approach to increase the Life time of Wireless Sensor Networks An Innovative Approach to increase the Life time of Wireless Sensor Networks R.Deenadhayalan [1] Department of Information Technology Kongu Engineering College Perundurai, Erode Dr.S Anandamurugan [2]

More information

A Particle Swarm Approach to Quadratic Assignment Problems

A Particle Swarm Approach to Quadratic Assignment Problems A Particle Swarm Approach to Quadratic Assignment Problems Hongbo Liu 1,3, Ajith Abraham 2,3, and Jianying Zhang 1 1 Department of Computer Science, Dalian University of Technology, Dalian, 116023, China

More information

Dynamic Routing and Wavelength Assignment in WDM Networks with Ant-Based Agents

Dynamic Routing and Wavelength Assignment in WDM Networks with Ant-Based Agents Dynamic Routing and Wavelength Assignment in WDM Networks with Ant-Based Agents Son-Hong Ngo 1, Xiaohong Jiang 1, Susumu Horiguchi 1, and Minyi Guo 2 1 Graduate School of Information Science, Japan Advanced

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-Colony Optimization for the System Reliability Problem with Quantity Discounts

Ant-Colony Optimization for the System Reliability Problem with Quantity Discounts American Journal of Operations Research, 2017, 7, 99-112 http://www.scirp.org/ournal/aor ISSN Online: 2160-8849 ISSN Print: 2160-8830 Ant-Colony Optimization for the System Reliability Problem with Quantity

More information

ANT PATH OF TOPOLOGY FOR DYNAMIC ROUTING AND WAVELENGTH ASSIGNMENT IN WDM NETWORKS

ANT PATH OF TOPOLOGY FOR DYNAMIC ROUTING AND WAVELENGTH ASSIGNMENT IN WDM NETWORKS ANT PATH OF TOPOLOGY FOR DYNAMIC ROUTING AND WAVELENGTH ASSIGNMENT IN WDM NETWORKS 1. K. Aparna, 2. Dr. S.Venkatachalam, 3. Dr. G.R.Babu 1. Asst.Professor, JNTUA College of Engineering. Pulivendulan aparna.kukunuri@yahoo.com

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

Task Scheduling Using Probabilistic Ant Colony Heuristics

Task Scheduling Using Probabilistic Ant Colony Heuristics The International Arab Journal of Information Technology, Vol. 13, No. 4, July 2016 375 Task Scheduling Using Probabilistic Ant Colony Heuristics Umarani Srikanth 1, Uma Maheswari 2, Shanthi Palaniswami

More information

Parameters Influencing the Performance of Ant Algorithms Applied to Optimisation of Buffer Size in Manufacturing

Parameters Influencing the Performance of Ant Algorithms Applied to Optimisation of Buffer Size in Manufacturing IEMS Vol. 4, No., pp. 84-9, December 005. Parameters Influencing the Performance of Ant Algorithms Applied to Optimisation of Buffer Size in Manufacturing Matthias Becker Department of Computer Science,

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

Solving a unique Shortest Path problem using Ant Colony Optimisation

Solving a unique Shortest Path problem using Ant Colony Optimisation Solving a unique Shortest Path problem using Ant Colony Optimisation Daniel Angus Abstract. Ant Colony Optimisation (ACO) has in the past proved suitable to solve many optimisation problems. This research

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

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

International Journal of Computer Engineering and Applications, Volume XII, Special Issue, August 18,   ISSN International Journal Computer Engineering and Applications, INTELLIGENT ROUTING BASED ON ACO TECHNIQUE F FAULT RING IN 2D-MESHES Gaytri Kumari Gupta research sclar, Jharkhand Rai University, Ranchi-India

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

Time Dependent Vehicle Routing Problem with an Ant Colony System

Time Dependent Vehicle Routing Problem with an Ant Colony System Time Dependent Vehicle Routing Problem with an Ant Colony System Alberto V. Donati, Luca Maria Gambardella, Andrea E. Rizzoli, Norman Casagrande, Roberto Montemanni Istituto Dalle Molle di Studi sull'intelligenza

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

Ant Algorithms for the University Course Timetabling Problem with Regard to the State-of-the-Art

Ant Algorithms for the University Course Timetabling Problem with Regard to the State-of-the-Art Ant Algorithms for the University Course Timetabling Problem with Regard to the State-of-the-Art Krzysztof Socha, Michael Sampels, and Max Manfrin IRIDIA, Université Libre de Bruxelles, CP 194/6, Av. Franklin

More information

An Ant Colony Based System for Data Mining: Applications to Medical Data

An Ant Colony Based System for Data Mining: Applications to Medical Data An Ant Colony Based System for Data Mining: Applications to Medical Data Rafael S. Parpinelli 1 Heitor S. Lopes 1 Alex A. Freitas 2 1 CEFET-PR, CPGEI Av. Sete de Setembro, 3165 Curitiba - PR, 80230-901

More information

VOL. 3, NO. 8 Aug, 2012 ISSN Journal of Emerging Trends in Computing and Information Sciences CIS Journal. All rights reserved.

VOL. 3, NO. 8 Aug, 2012 ISSN Journal of Emerging Trends in Computing and Information Sciences CIS Journal. All rights reserved. Job Shop Scheduling using ACO Meta-heuristic with Waiting_Time-based Pheromone Updating Elena Simona Nicoară Petroleum-Gas University of Ploieşti, Information Technology, Mathematics and Physics Department,

More information

In D. Corne, M. Dorigo and F. Glover, editors New Ideas in Optimization. McGraw-Hill, London, UK, pp , 1999

In D. Corne, M. Dorigo and F. Glover, editors New Ideas in Optimization. McGraw-Hill, London, UK, pp , 1999 MACS-VRPTW: A MULTIPLE ANT COLONY SYSTEM FOR VEHICLE ROUTING PROBLEMS WITH TIME WINDOWS Luca Maria Gambardella, Éric Taillard and Giovanni Agazzi IDSIA, Corso Elvezia 36, 6900 Lugano, Switzerland Tel +41

More information

ANT COLONY OPTIMIZATION FOR MANUFACTURING RESOURCE SCHEDULING PROBLEM

ANT COLONY OPTIMIZATION FOR MANUFACTURING RESOURCE SCHEDULING PROBLEM ANT COLONY OPTIMIZATION FOR MANUFACTURING RESOURCE SCHEDULING PROBLEM Wang Su, Meng Bo Computer School, Wuhan University, Hubei Province, China; Email: zzwangsu@63.com. Abstract: Key words: Effective scheduling

More information