ACONM: A hybrid of Ant Colony Optimization and Nelder-Mead Simplex Search

Size: px
Start display at page:

Download "ACONM: A hybrid of Ant Colony Optimization and Nelder-Mead Simplex Search"

Transcription

1 ACONM: A hybrid of Ant Colony Optimization and Nelder-Mead Simplex Search N. Arun & V.Ravi* Assistant Professor Institute for Development and Research in Banking Technology (IDRBT), Castle Hills Road #1, Masab Tank, HYDERABAD (AP) INDIA rav_padma@yahoo.com Jan 24,

2 Outline Review of existing hybrid algorithms Exploration vs Exploitation Motivation for the current hybrid ACO Nelder Mead Simplex Search Hybrid Key issues Results Conclusion Jan 24,

3 Existing Hybrid Algorithms There are several algorithms which are hybrids of metaheuristics and local search techniques. INESA (Non-equilibrium simulated annealing + Simplex like heuristic) [1] GA + Simplex search [2] SA + TS + Simplex search [3] TS + Simplex search [4] DE + Simplex search [5] PSO + Simplex search [6] HCIAC ( CIAC + Simplex search) [7] DHCIAC [9] Jan 24,

4 Exploration vs Exploitation A common theme across these hybrid algorithms is exploration vs exploitation Exploration is the process of identifying promising regions in the search space. Exploitation is the process of using the promising region to arrive at the global optimum Jan 24,

5 Exploration vs Exploitation contd. Meta-heuristics by their very nature are very good at performing exploration. They are good at avoiding local optima. The local search techniques on the other hand are not very good at exploration. They tend to get trapped in local optima. However, the meta-heuristics are not as fast as local-search techniques when it comes to exploitation Jan 24,

6 Exploration vs Exploitation contd. It is these complementary strengths that inspired the development of several hybrid algorithms. The hybrid algorithms employ the meta-heuristics for exploration and the local-search techniques for exploitation By using the strengths of both the meta-heuristics and the local search techniques, the hybrids perform better than the individual algorithms Jan 24,

7 Motivation of the current hybrid When we look at the hybrid algorithms which make use of Ant Colony Optimization we find that, they use ACO algorithms which are modified forms of the ACO metaphor. The HCIAC and DHCIAC algorithms make use of the CIAC [8] algorithm. The CIAC uses the notion of heterarchy (direct communication between ants) The ACO R [10] algorithm on the other hand is an elegant extension of the original ACO algorithm [12] to the realm of continuous optimization. This motivated us to try out the hybrid of ACO R and Simplex Search Jan 24,

8 ACO R This was proposed by Socha and Dorigo (2008) Extension of the ACO algorithm to continuous optimization The ACO algorithm constructs the solution as a sequence of solution components The number of solution components for each dimension is finite in the case of combinatorial optimization However, in the case of continuous optimization, the number of solution components for each domain is infinite. The ACO R algorithm was proposed to take care of this key difference, without making any changes to the ACO metaphor (solution construction using pheromone trail values) Jan 24,

9 ACO R Algorithm The algorithm makes use of a set of solutions called the solution archive (T). The solution archive is used to construct probability density functions which model the fitness of solutions in various regions of search space. The solutions are constructed by sampling these probability density functions. Jan 24,

10 ACO R Algorithm contd. The solution archive may contain K solutions S 1, S 2,, S k. These solutions are sorted in descending order of their fitness value (ties are broken randomly). f(s 1 ), f(s 2 ),, f(s k ) represent the objective function values of the solutions. Weights are assigned to the solutions according to the following formula Weight of solution with rank l l qk 2 ( l 1) q k e 2 Jan 24,

11 ACO R Algorithm contd. Effect of q on the weights Jan 24,

12 Jan 24, ACO R Algorithm contd. For each dimension a Gaussian Kernel Function is constructed. A Gaussian Kernel function is a weighted sum of Gaussian functions. Gaussian function for dimension i k l k l x i l l i l l i i l i l e x g x G 1 1 ) 2( ) ( ) ( ) ( i k i i S S,, 1 k e i l i e i l k S S 1 1

13 ACO R Algorithm contd. ξ is a parameter of the algorithm. The parameter ξ influences the manner in which the solution archive will be used in the search process. If the value of ξ is small, the new solutions will be close to the solutions in the archive and this increases the speed of convergence. On the other hand if the value of ξ is large, there will be greater diversification and convergence may be slow. Jan 24,

14 ACO R Algorithm contd. A new solution is created by the algorithm by making use of the probability density functions. Since Gaussian kernel functions are being used as probability density functions, creating a new solution involves: (i) selecting a component (Gaussian function) of the Gaussian kernel (ii) creating a new solution using the chosen Gaussian function. The Gaussian function l is chosen with the probability: P l l Jan 24, i i

15 ACO R Algorithm contd. Once a particular component of the Gaussian kernel is selected, the same component is used across all the dimensions. The new solution is constructed by sampling the chosen Gaussian function. Jan 24,

16 ACO R Algorithm contd. Pseudo-Code for ACO R algorithm. 1: Initialize the solution archive T to random solutions. 2: repeat 3: sort the solutions in the archive in descending order of fitness value. Break ties randomly. Compute weights according to (1). 4: for each ant m in NUMANTS do 5: select a solution Sl probabilistically according to (5). 6: for each dimension i do 7: generate a random number Z having standard normal distribution. 8: calculate according to (4). 9: i i i S m Sl Z l 10: end for 11: end for 12: until termination criterion is met Jan 24,

17 Nelder-Mead Simplex Search It was proposed by Nelder and Mead [11] It is a local search technique. It uses a simplex which moves towards the local optimum using four operations. Jan 24,

18 Pseudo-Code for Simplex Search 1: REFLECTION: Let P h, P s and P l denote the points with the highest, second highest and the lowest objective function values. Let their corresponding P objective function values be f h, f s and f l. r P Calculate c ( P the centroid c P c h) of the simplex by excluding P h. Reflect the highest point in the simplex about the centroid α is the reflection coefficient (α > 0). We used α = 1 as suggested in [11]. Replace P h by P r, if and repeat step 1 again. If f r < f l go to step 2, otherwise go to step 3. P P ( P P ) c 2: EXPANSION: e c Calculate r the point of expansion P e by searching in the direction of P r. γ is the expansion coefficient (γ > 1). We used γ = 2 as suggested in [11]. If f e < f r, replace P h by P e, otherwise replace P h by P r. Go to step 1. P P P P ) i l ( i l Jan 24,

19 3: CONTRACTION: If, P r replaces P h. The point of contraction P ct is calculated. Otherwise, P r does not replace P h and the point of contraction is calculated directly. β is the contraction coefficient (0 < β < 1). We used β = 0.5 as suggested in [11]. If, P ct replaces P h and go to step 1. Otherwise, go to step 4. 4: SHRINKAGE: If f ct > f h then we shrink the simplex towards P l (i.e., each point except P l is moved towards P l ). P ct P c ( Ph c P ) δ is the shrinkage coefficient (0 < δ < 1). We used δ = 0.5 as suggested in [11]. Go to step 1. Jan 24,

20 Hybrid The key idea of the hybrid is to allow the ACO R algorithm to do the exploration and once it identifies a promising region to invoke the Simplex Search to quickly arrive at the optimum. Jan 24,

21 Key issues of the hybrid The two important issues in the hybrid are: (i) The changeover from ACO R to Simplex search (ii) Creation of the initial simplex for the Simplex search algorithm. Jan 24,

22 Key issues contd. Changeover from ACO R to NM The point where the algorithm shifts from ACO R to NM is a crucial parameter of the algorithm Standard deviation between solutions in the decision space is used for choosing the point of changeover. The reason for choosing the standard deviation is that when the ACO R algorithm beings to converge on the global optimum, the solutions lie in the vicinity of the global optimum. They form a neighborhood which can then be used by NM simplex search. Jan 24,

23 Key issues contd. Jan 24,

24 Key issues contd. Jan 24,

25 Key issues contd. After each iteration the standard deviation between solutions is calculated. If it becomes less than or equal to a user specified value η c If a large value of η c is chosen, changeover occurs early. This will result in fewer function evaluations, but at the same time a lower success rate If a small value of η c is chosen, this will result in higher number of function evaluations, but also higher success rate. Jan 24,

26 Key issues contd. Jan 24,

27 Key issues contd. Construction of initial simplex: The Simplex Search algorithm is extremely sensitive to the initial simplex. The initial simplex should give the algorithm sufficient information about the landscape of the function being optimized. If the initial simplex is such that the difference in objective function values of the points is small, the algorithm will make a large number of iterations Jan 24,

28 Key issues contd. Jan 24,

29 Key issues contd. To give the simplex algorithm sufficient information about the landscape of the function being optimized, we divide the solutions in the archive into (n+1) chunks (n is the number of dimensions) and pick the first solution from each chunk. This gives the algorithm better information about the function, because the objective function values will be spread out. Jan 24,

30 Results Table 3. Results ACONM ACO R problem srate fevals srate fevals Ackley [16] Bohachevsky [13] Branin [14] De Jong Function1 [15] Easom [17] Goldstein-Price [14] Griewank10 [18] Hartman 3 [14] Hartman 6 [14] Rosenbrock [19] Schwefel [20] Shekel5 [14] Shekel7 [14] Shekel10 [14] Shubert [21] Rastrigin [22] Modified Himmelblau [23] Jan 24, Zakharov [2]

31 Results contd. 100 independent runs were conducted for both the algorithms on all the problems The success rate over 100 independent runs is reported Also, mean number of function evaluations are reported To enable fair comparison, the bounds fixed on the variables were same for both algorithms We didn t resort to fine tuning of the algorithms, since our main aim was to compare the performance of the two algorithms Jan 24,

32 Results contd. The results show that the hybrid is able to outperform the ACO R algorithm for several of the test functions. Jan 24,

33 References [1] V. Ravi, B. S. N. Murty and P. J. Reddy, Nonequilibrim Simulated Annealing-Algorithm Applied to Reliability Optimization of Complex Systems, IEEE Transactions on Reliability, vol. 46, pp , [2] R. Chelouah and P. Siarry, Genetic and Nelder-Mead algorithms hybridized for a more accurate global optimization of continuous multiminima functions, European Journal of Operational Research, vol. 148, pp , [3] S. Salhi and N. M. Queen, A Hybrid Algorithm for Identifying Global and Local Minima when Optimizing Functions with many Minima, European Journal of Operational Research, vol. 155, pp , [4] R. Chelouah and P. Siarry, A hybrid method combining continuous tabu search and Nelder-mead simplex algorithms for the global optimization of multiminima functions, European Journal of Operational Research, vol. 161, pp , [5] T. R. Bhat, D. Venkataramani, V. Ravi and C. V. S. Murty, An improved differential evolution method for efficient parameter estimation in biofilter modeling, Biochemical Engineering Journal, vol. 28, pp , [6] S.-K. S. Fan and E. Zahara, A Hybrid Simplex Search and Particle Swarm Optimization for Unconstrained Optimization, European Journal of Operational Research, vol. 181, pp , [7] J. Dreo and P. Siarry, Hybrid Continuous Interacting Ant Colony Aimed at Enhanced Global Optimization, Algorithmic Operations Research, vol. 2, pp , [8] J. Dreo and P. Siarry, Continuous Interacting Ant Colony Algorithm Based on Dense Heterarchy, Future Generation Computer Systems, vol. 20, pp , [9] J. Dreo and P. Siarry, An Ant Colony Algorithm Aimed at Dynamic Continuous Optimization, Applied Mathematics and Computation, vol. 181, pp , [10] K. Socha and M. Dorigo, Ant Colony Optimization for continuous Domains, European Journal of Operational Research, vol. 185, pp , [11] J. A. Nelder and R. Mead, A Simplex Method for Function Optimization, The Computer Journal, vol. 7, pp , [12] M. Dorigo and T. Stutzle, Ant Colony Optimization. Cambridge MA: MIT press, Jan 24,

Unidimensional Search for solving continuous high-dimensional optimization problems

Unidimensional Search for solving continuous high-dimensional optimization problems 2009 Ninth International Conference on Intelligent Systems Design and Applications Unidimensional Search for solving continuous high-dimensional optimization problems Vincent Gardeux, Rachid Chelouah,

More information

A Novel Hybrid Self Organizing Migrating Algorithm with Mutation for Global Optimization

A Novel Hybrid Self Organizing Migrating Algorithm with Mutation for Global Optimization International Journal of Soft Computing and Engineering (IJSCE) ISSN: 2231-2307, Volume-3, Issue-6, January 2014 A Novel Hybrid Self Organizing Migrating Algorithm with Mutation for Global Optimization

More information

Simple meta-heuristics using the simplex algorithm for non-linear programming

Simple meta-heuristics using the simplex algorithm for non-linear programming Simple meta-heuristics using the simplex algorithm for non-linear programming João Pedro Pedroso Technical Report Series: DCC-2007-6 http://www.dcc.fc.up.pt/pubs/ Departamento de Ciência de Computadores

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

The AID Method for Global Optimization

The AID Method for Global Optimization Algorithmic Operations Research Vol.6 (2011) 0 8 The AID Method for Global Optimization Mahamed G. H. Omran a and Fred Glover b a Gulf University for Science and Technology, Kuwait, Kuwait. b OptTek Systems,

More information

IMPROVING THE PARTICLE SWARM OPTIMIZATION ALGORITHM USING THE SIMPLEX METHOD AT LATE STAGE

IMPROVING THE PARTICLE SWARM OPTIMIZATION ALGORITHM USING THE SIMPLEX METHOD AT LATE STAGE IMPROVING THE PARTICLE SWARM OPTIMIZATION ALGORITHM USING THE SIMPLEX METHOD AT LATE STAGE Fang Wang, and Yuhui Qiu Intelligent Software and Software Engineering Laboratory, Southwest-China Normal University,

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

Global optimization using Lévy flights

Global optimization using Lévy flights Global optimization using Lévy flights Truyen Tran, Trung Thanh Nguyen, Hoang Linh Nguyen September 2004 arxiv:1407.5739v1 [cs.ne] 22 Jul 2014 Abstract This paper studies a class of enhanced diffusion

More information

Université Libre de Bruxelles

Université Libre de Bruxelles Université Libre de Bruxelles Institut de Recherches Interdisciplinaires et de Développements en Intelligence Artificielle Ant Colony Optimization for Continuous Domains Krzysztof Socha and Marco Dorigo

More information

Optimization of Makespan and Mean Flow Time for Job Shop Scheduling Problem FT06 Using ACO

Optimization of Makespan and Mean Flow Time for Job Shop Scheduling Problem FT06 Using ACO Optimization of Makespan and Mean Flow Time for Job Shop Scheduling Problem FT06 Using ACO Nasir Mehmood1, Muhammad Umer2, Dr. Riaz Ahmad3, Dr. Amer Farhan Rafique4 F. Author, Nasir Mehmood is with National

More information

Chapter 14 Global Search Algorithms

Chapter 14 Global Search Algorithms Chapter 14 Global Search Algorithms An Introduction to Optimization Spring, 2015 Wei-Ta Chu 1 Introduction We discuss various search methods that attempts to search throughout the entire feasible set.

More information

Simplex of Nelder & Mead Algorithm

Simplex of Nelder & Mead Algorithm Simplex of N & M Simplex of Nelder & Mead Algorithm AKA the Amoeba algorithm In the class of direct search methods Unconstrained (although constraints can be added as part of error function) nonlinear

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

Using Interval Scanning to Improve the Performance of the Enhanced Unidimensional Search Method

Using Interval Scanning to Improve the Performance of the Enhanced Unidimensional Search Method Using Interval Scanning to Improve the Performance of the Enhanced Unidimensional Search Method Mahamed G. H. Omran Department of Computer Science Gulf university for Science & Technology, Kuwait Email:

More information

A Hybrid Fireworks Optimization Method with Differential Evolution Operators

A Hybrid Fireworks Optimization Method with Differential Evolution Operators A Fireworks Optimization Method with Differential Evolution Operators YuJun Zheng a,, XinLi Xu a, HaiFeng Ling b a College of Computer Science & Technology, Zhejiang University of Technology, Hangzhou,

More information

Particle Swarm Optimization Artificial Bee Colony Chain (PSOABCC): A Hybrid Meteahuristic Algorithm

Particle Swarm Optimization Artificial Bee Colony Chain (PSOABCC): A Hybrid Meteahuristic Algorithm Particle Swarm Optimization Artificial Bee Colony Chain (PSOABCC): A Hybrid Meteahuristic Algorithm Oğuz Altun Department of Computer Engineering Yildiz Technical University Istanbul, Turkey oaltun@yildiz.edu.tr

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

The movement of the dimmer firefly i towards the brighter firefly j in terms of the dimmer one s updated location is determined by the following equat

The movement of the dimmer firefly i towards the brighter firefly j in terms of the dimmer one s updated location is determined by the following equat An Improved Firefly Algorithm for Optimization Problems Amarita Ritthipakdee 1, Arit Thammano, Nol Premasathian 3, and Bunyarit Uyyanonvara 4 Abstract Optimization problem is one of the most difficult

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

Ant Colony Optimization: A New Stochastic Solver for Modeling Vapor-Liquid Equilibrium Data

Ant Colony Optimization: A New Stochastic Solver for Modeling Vapor-Liquid Equilibrium Data Ant Colony Optimization: A New Stochastic Solver for Modeling Vapor-Liquid Equilibrium Data Jorge Adan Fernández-Vargas 1, Adrián Bonilla-Petriciolet *, Juan Gabriel Segovia- Hernández 1 and Salvador Hernández

More information

Benchmark Functions for the CEC 2008 Special Session and Competition on Large Scale Global Optimization

Benchmark Functions for the CEC 2008 Special Session and Competition on Large Scale Global Optimization Benchmark Functions for the CEC 2008 Special Session and Competition on Large Scale Global Optimization K. Tang 1, X. Yao 1, 2, P. N. Suganthan 3, C. MacNish 4, Y. P. Chen 5, C. M. Chen 5, Z. Yang 1 1

More information

Opportunistic Self Organizing Migrating Algorithm for Real-Time Dynamic Traveling Salesman Problem

Opportunistic Self Organizing Migrating Algorithm for Real-Time Dynamic Traveling Salesman Problem Opportunistic Self Organizing Migrating Algorithm for Real-Time Dynamic Traveling Salesman Problem arxiv:1709.03793v1 [cs.ne] 12 Sep 2017 Shubham Dokania, Sunyam Bagga, and Rohit Sharma shubham.k.dokania@gmail.com,

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

EE 553 Term Project Report Particle Swarm Optimization (PSO) and PSO with Cross-over

EE 553 Term Project Report Particle Swarm Optimization (PSO) and PSO with Cross-over EE Term Project Report Particle Swarm Optimization (PSO) and PSO with Cross-over Emre Uğur February, 00 Abstract In this work, Particle Swarm Optimization (PSO) method is implemented and applied to various

More information

Algorithm Design (4) Metaheuristics

Algorithm Design (4) Metaheuristics Algorithm Design (4) Metaheuristics Takashi Chikayama School of Engineering The University of Tokyo Formalization of Constraint Optimization Minimize (or maximize) the objective function f(x 0,, x n )

More information

A Novel Meta-Heuristic Optimization Algorithm: Current Search

A Novel Meta-Heuristic Optimization Algorithm: Current Search A Novel Meta-Heuristic Optimization Algorithm: Current Search Anusorn SAKULIN and Deacha PUANGDOWNREONG * Department of Electrical Engineering, Faculty of Engineering, South-East Asia University 9/ Petchakasem

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

An Evolutionary Algorithm for Minimizing Multimodal Functions

An Evolutionary Algorithm for Minimizing Multimodal Functions An Evolutionary Algorithm for Minimizing Multimodal Functions D.G. Sotiropoulos, V.P. Plagianakos and M.N. Vrahatis University of Patras, Department of Mamatics, Division of Computational Mamatics & Informatics,

More information

Model Parameter Estimation

Model Parameter Estimation Model Parameter Estimation Shan He School for Computational Science University of Birmingham Module 06-23836: Computational Modelling with MATLAB Outline Outline of Topics Concepts about model parameter

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

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

Initializing the Particle Swarm Optimizer Using the Nonlinear Simplex Method

Initializing the Particle Swarm Optimizer Using the Nonlinear Simplex Method Initializing the Particle Swarm Optimizer Using the Nonlinear Simplex Method K.E. PARSOPOULOS, M.N. VRAHATIS Department of Mathematics University of Patras University of Patras Artificial Intelligence

More information

A SURVEY OF COMPARISON BETWEEN VARIOUS META- HEURISTIC TECHNIQUES FOR PATH PLANNING PROBLEM

A SURVEY OF COMPARISON BETWEEN VARIOUS META- HEURISTIC TECHNIQUES FOR PATH PLANNING PROBLEM A SURVEY OF COMPARISON BETWEEN VARIOUS META- HEURISTIC TECHNIQUES FOR PATH PLANNING PROBLEM Toolika Arora, Yogita Gigras, ITM University, Gurgaon, Haryana, India ABSTRACT Path planning is one of the challenging

More information

Direct Search Firefly Algorithm for Solving Global Optimization Problems

Direct Search Firefly Algorithm for Solving Global Optimization Problems Appl. Math. Inf. Sci. 10, No. 3, 841-860 (2016) 841 Applied Mathematics & Information Sciences An International Journal http://dx.doi.org/10.18576/amis/100304 Direct Search Firefly Algorithm for Solving

More information

Detecting promising areas by evolutionary clustering search

Detecting promising areas by evolutionary clustering search Detecting promising areas by evolutionary clustering search Alexandre C. M. Oliveira 1, 2 and Luiz A. N. Lorena 2 1 Universidade Federal do Maranhão - UFMA, Departamento de Informática, S. Luís MA, Brasil.

More information

Metaheuristics: a quick overview

Metaheuristics: a quick overview Metaheuristics: a quick overview Marc Sevaux University of Valenciennes CNRS, UMR 8530, LAMIH / Production systems Marc.Sevaux@univ-valenciennes.fr Marc Sevaux TEW Antwerp 2003 1 Outline Outline Neighborhood

More information

Automatic PID tuning, a heuristic optimization approach

Automatic PID tuning, a heuristic optimization approach Congreso Anual 2 de la Asociación de México de Control Automático. Puerto Vallarta, Jalisco, México. Automatic PID tuning, a heuristic optimization approach Rodrigo Abrajan-Guerrero, Luis Alejandro Marquez-Martinez

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

COMPARISON OF DIFFERENT HEURISTIC, METAHEURISTIC, NATURE BASED OPTIMIZATION ALGORITHMS FOR TRAVELLING SALESMAN PROBLEM SOLUTION

COMPARISON OF DIFFERENT HEURISTIC, METAHEURISTIC, NATURE BASED OPTIMIZATION ALGORITHMS FOR TRAVELLING SALESMAN PROBLEM SOLUTION COMPARISON OF DIFFERENT HEURISTIC, METAHEURISTIC, NATURE BASED OPTIMIZATION ALGORITHMS FOR TRAVELLING SALESMAN PROBLEM SOLUTION 1 KIRTI PANDEY, 2 PALLAVI JAIN 1 Shri Vaishnav Institute of Technology &

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

Experiments with Firefly Algorithm

Experiments with Firefly Algorithm Experiments with Firefly Algorithm Rogério B. Francisco 1,2, M. Fernanda P. Costa 2, Ana Maria A. C. Rocha 3 1 Escola Superior de Tecnologia e Gestão de Felgueiras, 4610-156 Felgueiras, Portugal rbf@estgf.ipp.pt

More information

ACO and other (meta)heuristics for CO

ACO and other (meta)heuristics for CO ACO and other (meta)heuristics for CO 32 33 Outline Notes on combinatorial optimization and algorithmic complexity Construction and modification metaheuristics: two complementary ways of searching a solution

More information

ABC Optimization: A Co-Operative Learning Approach to Complex Routing Problems

ABC Optimization: A Co-Operative Learning Approach to Complex Routing Problems Progress in Nonlinear Dynamics and Chaos Vol. 1, 2013, 39-46 ISSN: 2321 9238 (online) Published on 3 June 2013 www.researchmathsci.org Progress in ABC Optimization: A Co-Operative Learning Approach to

More information

An evolutionary annealing-simplex algorithm for global optimisation of water resource systems

An evolutionary annealing-simplex algorithm for global optimisation of water resource systems FIFTH INTERNATIONAL CONFERENCE ON HYDROINFORMATICS 1-5 July 2002, Cardiff, UK C05 - Evolutionary algorithms in hydroinformatics An evolutionary annealing-simplex algorithm for global optimisation of water

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

Sci.Int.(Lahore),28(1), ,2016 ISSN ; CODEN: SINTE 8 201

Sci.Int.(Lahore),28(1), ,2016 ISSN ; CODEN: SINTE 8 201 Sci.Int.(Lahore),28(1),201-209,2016 ISSN 1013-5316; CODEN: SINTE 8 201 A NOVEL PLANT PROPAGATION ALGORITHM: MODIFICATIONS AND IMPLEMENTATION Muhammad Sulaiman 1, Abdel Salhi 2, Eric S Fraga 3, Wali Khan

More information

MIXED VARIABLE ANT COLONY OPTIMIZATION TECHNIQUE FOR FEATURE SUBSET SELECTION AND MODEL SELECTION

MIXED VARIABLE ANT COLONY OPTIMIZATION TECHNIQUE FOR FEATURE SUBSET SELECTION AND MODEL SELECTION MIXED VARIABLE ANT COLONY OPTIMIZATION TECHNIQUE FOR FEATURE SUBSET SELECTION AND MODEL SELECTION Hiba Basim Alwan 1 and Ku Ruhana Ku-Mahamud 2 1, 2 Universiti Utara Malaysia, Malaysia, hiba81basim@yahoo.com,

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

Université Libre de Bruxelles

Université Libre de Bruxelles Université Libre de Bruxelles Institut de Recherches Interdisciplinaires et de Développements en Intelligence Artificielle An Estimation of Distribution Particle Swarm Optimization Algorithm Mudassar Iqbal

More information

Introduction to Optimization Using Metaheuristics. Thomas J. K. Stidsen

Introduction to Optimization Using Metaheuristics. Thomas J. K. Stidsen Introduction to Optimization Using Metaheuristics Thomas J. K. Stidsen Outline General course information Motivation, modelling and solving Hill climbers Simulated Annealing 1 Large-Scale Optimization

More information

First approach to solve linear system of equations by using Ant Colony Optimization

First approach to solve linear system of equations by using Ant Colony Optimization First approach to solve linear system equations by using Ant Colony Optimization Kamil Ksia z ek Faculty Applied Mathematics Silesian University Technology Gliwice Poland Email: kamiksi862@studentpolslpl

More information

A study of hybridizing Population based Meta heuristics

A study of hybridizing Population based Meta heuristics Volume 119 No. 12 2018, 15989-15994 ISSN: 1314-3395 (on-line version) url: http://www.ijpam.eu ijpam.eu A study of hybridizing Population based Meta heuristics Dr.J.Arunadevi 1, R.Uma 2 1 Assistant Professor,

More information

THE DEVELOPMENT OF THE POTENTIAL AND ACADMIC PROGRAMMES OF WROCLAW UNIVERISTY OF TECHNOLOGY METAHEURISTICS

THE DEVELOPMENT OF THE POTENTIAL AND ACADMIC PROGRAMMES OF WROCLAW UNIVERISTY OF TECHNOLOGY METAHEURISTICS METAHEURISTICS 1. Objectives The goals of the laboratory workshop are as follows: to learn basic properties of evolutionary computation techniques and other metaheuristics for solving various global optimization

More information

Pre-requisite Material for Course Heuristics and Approximation Algorithms

Pre-requisite Material for Course Heuristics and Approximation Algorithms Pre-requisite Material for Course Heuristics and Approximation Algorithms This document contains an overview of the basic concepts that are needed in preparation to participate in the course. In addition,

More information

Particle Swarm Optimization

Particle Swarm Optimization Dario Schor, M.Sc., EIT schor@ieee.org Space Systems Department Magellan Aerospace Winnipeg Winnipeg, Manitoba 1 of 34 Optimization Techniques Motivation Optimization: Where, min x F(x), subject to g(x)

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

Introduction (7.1) Genetic Algorithms (GA) (7.2) Simulated Annealing (SA) (7.3) Random Search (7.4) Downhill Simplex Search (DSS) (7.

Introduction (7.1) Genetic Algorithms (GA) (7.2) Simulated Annealing (SA) (7.3) Random Search (7.4) Downhill Simplex Search (DSS) (7. Chapter 7: Derivative-Free Optimization Introduction (7.1) Genetic Algorithms (GA) (7.2) Simulated Annealing (SA) (7.3) Random Search (7.4) Downhill Simplex Search (DSS) (7.5) Jyh-Shing Roger Jang et al.,

More information

Comparative Study of Meta-heuristics Optimization Algorithm using Benchmark Function

Comparative Study of Meta-heuristics Optimization Algorithm using Benchmark Function International Journal of Electrical and Computer Engineering (IJECE) Vol. 7, No. 3, June 2017, pp. 1643~1650 ISSN: 2088-8708, DOI: 10.11591/ijece.v7i3.pp1643-1650 1643 Comparative Study of Meta-heuristics

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

Cuckoo Search Inspired Hybridization of the Nelder- Mead Simplex Algorithm Applied to Optimization of Photovoltaic Cells

Cuckoo Search Inspired Hybridization of the Nelder- Mead Simplex Algorithm Applied to Optimization of Photovoltaic Cells Appl. Math. Inf. Sci. 10, No. 3, 961-973 (2016) 961 Applied Mathematics & Information Sciences An International Journal http://dx.doi.org/10.18576/amis/100314 Cuckoo Search Inspired Hybridization of the

More information

RELEVANCE OF ARTIFICIAL BEE COLONY ALGORITHM OVER OTHER SWARM INTELLIGENCE ALGORITHMS

RELEVANCE OF ARTIFICIAL BEE COLONY ALGORITHM OVER OTHER SWARM INTELLIGENCE ALGORITHMS RELEVANCE OF ARTIFICIAL BEE COLONY ALGORITHM OVER OTHER SWARM INTELLIGENCE ALGORITHMS Punam Bajaj Assistant Professor Department of Computer Engineering Chandigarh Engineering College, Landran Punjab,

More information

International Conference on Modeling and SimulationCoimbatore, August 2007

International Conference on Modeling and SimulationCoimbatore, August 2007 International Conference on Modeling and SimulationCoimbatore, 27-29 August 2007 OPTIMIZATION OF FLOWSHOP SCHEDULING WITH FUZZY DUE DATES USING A HYBRID EVOLUTIONARY ALGORITHM M.S.N.Kiran Kumara, B.B.Biswalb,

More information

IMPLEMENTATION OF A FIXING STRATEGY AND PARALLELIZATION IN A RECENT GLOBAL OPTIMIZATION METHOD

IMPLEMENTATION OF A FIXING STRATEGY AND PARALLELIZATION IN A RECENT GLOBAL OPTIMIZATION METHOD IMPLEMENTATION OF A FIXING STRATEGY AND PARALLELIZATION IN A RECENT GLOBAL OPTIMIZATION METHOD Figen Öztoprak, Ş.İlker Birbil Sabancı University Istanbul, Turkey figen@su.sabanciuniv.edu, sibirbil@sabanciuniv.edu

More information

x n+1 = x n f(x n) f (x n ), (1)

x n+1 = x n f(x n) f (x n ), (1) 1 Optimization The field of optimization is large and vastly important, with a deep history in computer science (among other places). Generally, an optimization problem is defined by having a score function

More information

Introduction to Stochastic Optimization Methods (meta-heuristics) Modern optimization methods 1

Introduction to Stochastic Optimization Methods (meta-heuristics) Modern optimization methods 1 Introduction to Stochastic Optimization Methods (meta-heuristics) Modern optimization methods 1 Efficiency of optimization methods Robust method Efficiency Specialized method Enumeration or MC kombinatorial

More information

Parallel population training metaheuristics for the routing problem

Parallel population training metaheuristics for the routing problem Parallel population training metaheuristics for the routing problem Wojciech Bożejko 1 and Mieczys law Wodecki 2 1 Institute of Computer Engineering, Control and Robotics, Wroc law University of Technology

More information

Introduction to Optimization Using Metaheuristics. The Lecturer: Thomas Stidsen. Outline. Name: Thomas Stidsen: Nationality: Danish.

Introduction to Optimization Using Metaheuristics. The Lecturer: Thomas Stidsen. Outline. Name: Thomas Stidsen: Nationality: Danish. The Lecturer: Thomas Stidsen Name: Thomas Stidsen: tks@imm.dtu.dk Outline Nationality: Danish. General course information Languages: Danish and English. Motivation, modelling and solving Education: Ph.D.

More information

PARTICLE SWARM OPTIMIZATION (PSO)

PARTICLE SWARM OPTIMIZATION (PSO) PARTICLE SWARM OPTIMIZATION (PSO) J. Kennedy and R. Eberhart, Particle Swarm Optimization. Proceedings of the Fourth IEEE Int. Conference on Neural Networks, 1995. A population based optimization technique

More information

Simple mechanisms for escaping from local optima:

Simple mechanisms for escaping from local optima: The methods we have seen so far are iterative improvement methods, that is, they get stuck in local optima. Simple mechanisms for escaping from local optima: I Restart: re-initialise search whenever a

More information

Today. Golden section, discussion of error Newton s method. Newton s method, steepest descent, conjugate gradient

Today. Golden section, discussion of error Newton s method. Newton s method, steepest descent, conjugate gradient Optimization Last time Root finding: definition, motivation Algorithms: Bisection, false position, secant, Newton-Raphson Convergence & tradeoffs Example applications of Newton s method Root finding in

More information

A Meta-heuristic Approach to CVRP Problem: Search Optimization Based on GA and Ant Colony

A Meta-heuristic Approach to CVRP Problem: Search Optimization Based on GA and Ant Colony Journal of Advances in Computer Research Quarterly pissn: 2345-606x eissn: 2345-6078 Sari Branch, Islamic Azad University, Sari, I.R.Iran (Vol. 7, No. 1, February 2016), Pages: 1-22 www.jacr.iausari.ac.ir

More information

A Comparative Study on Nature Inspired Algorithms with Firefly Algorithm

A Comparative Study on Nature Inspired Algorithms with Firefly Algorithm International Journal of Engineering and Technology Volume 4 No. 10, October, 2014 A Comparative Study on Nature Inspired Algorithms with Firefly Algorithm M. K. A. Ariyaratne, T. G. I. Fernando Department

More information

CHAPTER 2 CONVENTIONAL AND NON-CONVENTIONAL TECHNIQUES TO SOLVE ORPD PROBLEM

CHAPTER 2 CONVENTIONAL AND NON-CONVENTIONAL TECHNIQUES TO SOLVE ORPD PROBLEM 20 CHAPTER 2 CONVENTIONAL AND NON-CONVENTIONAL TECHNIQUES TO SOLVE ORPD PROBLEM 2.1 CLASSIFICATION OF CONVENTIONAL TECHNIQUES Classical optimization methods can be classified into two distinct groups:

More information

Introduction to unconstrained optimization - derivative-free methods

Introduction to unconstrained optimization - derivative-free methods Introduction to unconstrained optimization - derivative-free methods Jussi Hakanen Post-doctoral researcher Office: AgC426.3 jussi.hakanen@jyu.fi Learning outcomes To understand the basic principles of

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

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

New Trials on Test Data Generation: Analysis of Test Data Space and Design of Improved Algorithm

New Trials on Test Data Generation: Analysis of Test Data Space and Design of Improved Algorithm New Trials on Test Data Generation: Analysis of Test Data Space and Design of Improved Algorithm So-Yeong Jeon 1 and Yong-Hyuk Kim 2,* 1 Department of Computer Science, Korea Advanced Institute of Science

More information

Luo, W., and Li, Y. (2016) Benchmarking Heuristic Search and Optimisation Algorithms in Matlab. In: 22nd International Conference on Automation and Computing (ICAC), 2016, University of Essex, Colchester,

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

Cooperative Coevolution using The Brain Storm Optimization Algorithm

Cooperative Coevolution using The Brain Storm Optimization Algorithm Cooperative Coevolution using The Brain Storm Optimization Algorithm Mohammed El-Abd Electrical and Computer Engineering Department American University of Kuwait Email: melabd@auk.edu.kw Abstract The Brain

More information

Test functions for optimization needs

Test functions for optimization needs Test functions for optimization needs Marcin Molga, Czesław Smutnicki 3 kwietnia 5 Streszczenie This paper provides the review of literature benchmarks (test functions) commonl used in order to test optimization

More information

Fast Blackbox Optimization: Iterated Local Search and the Strategy of Powell. Oliver Kramer. Algorithm Engineering Report TR Feb.

Fast Blackbox Optimization: Iterated Local Search and the Strategy of Powell. Oliver Kramer. Algorithm Engineering Report TR Feb. Fast Blackbox Optimization: Iterated Local Search and the Strategy of Powell Oliver Kramer Algorithm Engineering Report TR9-2-3 Feb. 29 ISSN 1864-453 Faculty of Computer Science Algorithm Engineering (Ls11)

More information

Evolutionary Methods for Solving Optimization Problems

Evolutionary Methods for Solving Optimization Problems Babeş-Bolyai University of Cluj-Napoca Faculty of Mathematics and Informatics Evolutionary Methods for Solving Optimization Problems PhD Candidate: Flavia Zamfirache Supervisor: Prof. Dr. Militon Frenţiu

More information

ACCELERATING THE ANT COLONY OPTIMIZATION

ACCELERATING THE ANT COLONY OPTIMIZATION ACCELERATING THE ANT COLONY OPTIMIZATION BY SMART ANTS, USING GENETIC OPERATOR Hassan Ismkhan Department of Computer Engineering, University of Bonab, Bonab, East Azerbaijan, Iran H.Ismkhan@bonabu.ac.ir

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

Simulated Raindrop Algorithm for Global Optimization

Simulated Raindrop Algorithm for Global Optimization CCECE 2014 1569888639 Simulated Raindrop Algorithm for Global Optimization Amin Ibrahim, IEEE Member Department of Electrical, Computer, and Software Engineering University of Ontario Institute of Technology

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

Non-deterministic Search techniques. Emma Hart

Non-deterministic Search techniques. Emma Hart Non-deterministic Search techniques Emma Hart Why do local search? Many real problems are too hard to solve with exact (deterministic) techniques Modern, non-deterministic techniques offer ways of getting

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

Evolutionary Non-Linear Great Deluge for University Course Timetabling

Evolutionary Non-Linear Great Deluge for University Course Timetabling Evolutionary Non-Linear Great Deluge for University Course Timetabling Dario Landa-Silva and Joe Henry Obit Automated Scheduling, Optimisation and Planning Research Group School of Computer Science, The

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

Optimization of Benchmark Functions Using Artificial Bee Colony (ABC) Algorithm

Optimization of Benchmark Functions Using Artificial Bee Colony (ABC) Algorithm IOSR Journal of Engineering (IOSRJEN) e-issn: 2250-3021, p-issn: 2278-8719 Vol. 3, Issue 10 (October. 2013), V4 PP 09-14 Optimization of Benchmark Functions Using Artificial Bee Colony (ABC) Algorithm

More information

Accelerated Bat Algorithm for Solving Integer Programming Problems

Accelerated Bat Algorithm for Solving Integer Programming Problems Accelerated Bat Algorithm for Solving Integer Programming Problems Ahmed Fouad Ali Computer Science Department, Faculty of Computers and Information Suez Canal University, Ismailia, Egypt. ahmed fouad@ci.suez.edu.eg

More information

Note: In physical process (e.g., annealing of metals), perfect ground states are achieved by very slow lowering of temperature.

Note: In physical process (e.g., annealing of metals), perfect ground states are achieved by very slow lowering of temperature. Simulated Annealing Key idea: Vary temperature parameter, i.e., probability of accepting worsening moves, in Probabilistic Iterative Improvement according to annealing schedule (aka cooling schedule).

More information

Simple League Championship Algorithm

Simple League Championship Algorithm Simple League Championship Algorithm M. James Stephen Prasad Reddy P.V.G.D Research Scholar, Dept. of CS&SE, Andhra University, India Professor, Dept. of CS&SE, Andhra University, Visakhapatnam, India

More information

Hybrid Seeker Optimization Algorithm for Global Optimization

Hybrid Seeker Optimization Algorithm for Global Optimization Appl. Math. Inf. Sci. 7, No. 3, 867-875 (2013) 867 Applied Mathematics & Information Sciences An International Journal Hybrid Seeker Optimization Algorithm for Global Optimization Milan Tuba 1, Ivona Brajevic

More information

Constructive meta-heuristics

Constructive meta-heuristics Constructive meta-heuristics Heuristic algorithms Giovanni Righini University of Milan Department of Computer Science (Crema) Improving constructive algorithms For many problems constructive algorithms

More information

Parallel Computing in Combinatorial Optimization

Parallel Computing in Combinatorial Optimization Parallel Computing in Combinatorial Optimization Bernard Gendron Université de Montréal gendron@iro.umontreal.ca Course Outline Objective: provide an overview of the current research on the design of parallel

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

Exploration vs. Exploitation in Differential Evolution

Exploration vs. Exploitation in Differential Evolution Exploration vs. Exploitation in Differential Evolution Ângela A. R. Sá 1, Adriano O. Andrade 1, Alcimar B. Soares 1 and Slawomir J. Nasuto 2 Abstract. Differential Evolution (DE) is a tool for efficient

More information