USING THE EVOLUTION STRATEGIES' SELF-ADAPTATION MECHANISM AND TOURNAMENT SELECTION FOR GLOBAL OPTIMIZATION
|
|
|
- Morgan Grant
- 10 years ago
- Views:
Transcription
1 1 USING THE EVOLUTION STRATEGIES' SELF-ADAPTATION MECHANISM AND TOURNAMENT SELECTION FOR GLOBAL OPTIMIZATION EFRÉN MEZURA-MONTES AND CARLOS A. COELLO COELLO Evolutionary Computation Group at CINVESTAV-IPN (EVOCINV) Depto. de Ingeniería Eléctrica Sección de Computación Av. IPN No. 2508, Col. San Pedro Zacatenco, México D.F , MEXICO, ABSTRACT An approach based on a (µ+1)-es and three simple tournament rules is proposed to solve global optimization problems. The proposed approach does not use a penalty function and does not require any extra parameters other than the original parameters of an evolution strategy. This approach is validated with respect to the state-of-the-art techniques in evolutionary constrained optimization using a well-known benchmark. The results obtained are very competitive with respect to the approaches against which our approach was compared. INTRODUCTION Having a strong theoretical background (Schwefel, 1995; Bäck, 1996; Beyer, 2000), Evolution Strategies (ES) have been found efficient in solving a wide variety of optimization problems (Asselmeyer, 1997). However, as other evolutionary Algorithms (EAs), ES lack an explicit mechanism to deal with constrained search spaces. Several approaches to incorporate constraints into the fitness function of an EA (Michalewicz, 1996; Coello, 2002) have been proposed. The most common approach used to incorporate the constraints of the problem to the fitness function of an EA is the use of penalty functions, where the amount of constraint violation is used to punish or penalize an infeasible solution so that feasible solutions are favored by the selection process. Without concerning their simplicity, they have many drawbacks from which the main one is that they require a careful fine tuning of the penalty factors that accurately estimates the degree of penalization to be applied so that we can approach efficiently the feasible region (Smith, 1997; Coello 2002). In this paper, we argue that the self-adaptation mechanism of a conventional evolution strategy combined with some (very simple) tournament rules based on feasibility can provide us with a highly competitive evolutionary algorithm for constrained optimization.
2 2 COMPARING DIFFERENT TYPES OF ES The motivation of this work is based in the fact that some of the most recent and competitive approaches to incorporate constraints into an evolutionary algorithm use an ES (see for example (Runarsson, 2000; Hamida, 2002)). We then hypothesized that the self-adaptation mechanis of an ES plays an important role when solving numerical optimization problems. In order to verify our hypothesis, we performed a small comparative study among different types of ES. In order to determine the most useful type of ES to deal with constrained spaces, we performed a numerical comparison using five different types of ES. Both a (µ+λ)-es and a (µ,λ)-es were implemented with and without correlated mutation. Additionally, we also implemented a (µ+1)-es using the 1/5-success rule. We decided to adopt a very simple constraint-handling approach which shares similarities with some previous proposals (e.g., (Jimenez, 1999; Deb, 2000)). Note however, that all of these previous proposals require an additional mechanism to maintain diversity in the population. In our proposal, however, no extra mechanisms are provided to maintain diversity. The tournament rules adopted in the five types of ES implemented are the following: Between 2 feasible solutions, the one with the highest fitness value wins. If one solution is feasible and the other one is infeasible, the feasible solution wins. If both solutions are infeasible, the one with the lowest sum of constraint violation is preferred. We decided to use ten (out of 13) of the test functions described in (Runarsson, 2000) to evaluate our five types of ES. The test functions chosen contain characteristics that are representative of what can be considered difficult global optimization problems for an evolutionary algorithm. The expressions of the test functions can be seen in (Mezura-Montes, 2003). TF optimal Best Mean Median Worst St. Dev. g g g g g g g g g g Table 1. Statistical Results of the (µ+1)-es after the first set of experiments. We set a total of fitness function evaluations and performed 30 runs for each problem and for each type of ES. Equality constraints were transformed into inequalities using a tolerance value of For the (µ+1)-es the initial values are: σ=4.0, C=0.99, µ=5, and maximum number of generations = For the (µ+λ)-es and (µ,λ)-es, we adopted panmictic discrete recombination both for the strategy parameters and for the decision variables. The learning rates values were calculated as indicated in (Schwefel, 1995). The initial values for the standard deviations were 3.0 for all the decision variables. The initial values for the remaining ES are: µ=100, λ=300, and maximum number of generations = 1166.
3 3 Due to space limitations we only show the statistical results of the (µ+1)-es in Table 1 (the complete statistical results can be found in (Mezura-Montes, 2003)), which had the best overall performance, both in terms of the best solution found and in terms of its statistical measures. We found this a little bit surprising, because this is the most simple type of ES implemented in our comparative study. Based on the encouraging results that we obtained from this study, we decided to compare our (µ+1)-es with respect to other approaches. The details of the selected approach (we decided to call it Simple Evolution Strategy, or SES) are in the pseudo-code shown in Figure 1. We adopted the 1/5-success rule to self-adapt the only sigma value used in the algorithm. At each generation µ individuals are created but none of them is evaluated. In fact, we only evaluate the offspring created by the union of the mutated individuals produced. The low computational cost of the approach is owing to the fact that it requires only one sigma value to adapt and one fitness function evaluation per generation. Begin t=0 Create a random initial solution x 0 Evaluate f(x 0 ) For t=1 to MAX_GENERATIONS Do Produce µ mutations of x t-1 using: x i j =x i t-1 +σ [t] N i (0,1) forall i n, j=1,2,, µ Generate one child x c by the combination of the µ mutations using m=randint(1, µ) x i c = x i m, forall i n Evaluate f(x c ) Apply comparison criteria to select the best individual x t between x t-1 and x c t=t+1 If (t mod n = 0) Then If (p s >1/5) Then σ [t]= σ[t-n]/c Else If (p s <1/5) Then σ [t]= σ[t-n] c Else If (p s =1/5) Then σ [t]= σ[t-n] End For End Figure 1. SES algorithm (n is the number of decision variables of the problem, ps is the success rate of mutations in order to apply the 1/5 success rule )
4 4 It is worth emphasizing that our algorithm is based on two mechanisms: (1) the natural self-adaptative mechanism of the ES, which helps the approach to sample the search space well enough as to reach the feasible region reasonably fast and (2) the comparison criteria of our tournaments, which select the most promising solution in order to be used as a new starting point for the search. COMPARING SES AGAINST OTHER APPROACHES In the second part of our experiment, we compared the performance of our approach with respect to three techniques that are representative of the state-ofthe-art in the area: the homomorphous maps HM (Koziel, 1999), the stochastic ranking SR (Runarsson, 2000) and the adaptive segregational constraint handling evolutionary algorithm ASCHEA (Hamida, 2002). In Tables 2, 3 and 4, we show the results of the comparison. Best Mean Worst TF optimal SES HM SES HM SES HM g g g g g g g g g g Table 2. Comparison of results between our approach (SES) and the Homomorphous Maps (HM) Best Mean Worst TF optimal SES SR SES SR SES SR g g g g g g g g g g Table 3. Comparison of results between our approach (SES) and the Stochastic Ranking (SR)
5 5 Best Mean Worst TF optimal SES ASCHEA SES ASCHEA SES ASCHEA g NA g NA g NA g NA g NA g NA g NA g NA g NA g NA 1 NA 1 NA Table 4. Comparison of results between our approach (SES) and the Adaptive Segregational Constraint Handling Evolutionary Algorithm (ASCHEA) (NA means not available). There are several issues derived from this comparison that deserve some discussion: Our SES was able to converge to the global optimum in 8 of the test 10 functions used (g01, g03, g04, g06, g08, g09, g11 and g12), and it was able to converge very closely to the optimum in the other two.also, with respect to the homomorphous maps (see Table 2), SES converged to a better best solution in 7 problems, and it obtained better average solutions in 8 problems. It also found a better worst solution in 6 problems. Thus, it should be clear that SES had a highly competitive performance, even improving the results of the homomorphous maps in some test functions. With respect to stochastic ranking (see Table 3), SES was able to converge to similar best solutions in 8 problems and it obtained similar average and worst results in 2 problems. SES found a better average and worst result only in one problem (g06). Finally, with respect to ASCHEA (see Table 4), the SES converged to similar best results in 7 problems and found better best results in problem g02. SES also obtained better average results in 3 problems and matched ASCHEA's average results in three more. DISCUSSION OF RESULTS The results described before indicate a competitive performance of our approach with respect to three techniques representative of the state-of-the-art in constrained evolutionary optimization. Besides being a very simple approach, it is worth reminding that SES does not require any extra parameters (besides those used with an evolution strategy). In contrast, the homomorphous maps require an additional parameter (called v) which has to be found empirically (Koziel, 1999). Stochastic ranking requires the definition of a parameter called P f, whose value has an important impact on the performance of the approach (Runarsson, 2000). ASCHEA also requires the definition of several extra parameters and in its latest version, it uses niching, which is a process that also has at least one additional parameter (Hamida, 2002). Finally, the number of fitness funtion evaluations of our approach is less or equal to that requiered by the compared approaches: Stochastic ranking performed the same number of evaluations as SES (350000), but the homomorphous maps performed 1,400,000 fitness function evaluations, and ASCHEA performed 1,500,000 fitness function evaluations.
6 6 CONCLUSIONS AND FUTURE WORK The self-adaptation mechanism of an evolution strategy combined with a set of simple tournament rules was used to deal with constrained search spaces. Based on the results obtained, we claim that the proposed approach is a viable alternative for constrained optimization. Its main advantage is that it does not require a penalty function or any extra parameters (other than the original parameters of an evolution strategy) to bias the search towards the feasible region of a problem. Additionally, our approach has a low computational cost and it is easy to implement. Our future work consists on experimenting with a different random numbers distribution (a Gaussian distribution was used in this paper) to avoid convergence to local optima, since this happens in some cases. ACKNOWLEDGMENTS The first author acknowledges support from the mexican Consejo Nacional de Ciencia y Tecnología (CONACyT) through a scholarship to pursue graduate studies at CINVESTAV-IPN s Electrical Engineering Department. The second author acknowledges support from CONACyT through project No A. REFERENCES Asselmayer, T., Ebeling, W., and Rosé, H., 1997, Evolutionary strategies of optimization., Phys. Rev. E, 56(1): , July. Bäck, T., 1996, Evolutionary Algorithms in Theory and Practice., Oxford University Press, New York. Beyer, H.G., 2001, The theory of Evolution Strategies., Springer, Berlin. Coello Coello, C.A., 2002, Theoretical and Numerical Constraint Handling Techniques used with Evolutionary Algorithms: A Survey of the State of the Art., Computer Methods in Applied Mechanics and Engineering, 191(11-12): , January. Deb, K., 2000, An Efficient Constraint Handling Method for Genetic Algorithms., Computer Methods in Applied Mechanics and Engineering, 186(2/4): Hamida, S.B. and Schoenauer, M., 2002, (ASCHEA): New Results Using Adaptive Segregational Constraint Handling., In Proceedings of the Congress on Evolutionary Computation 2002 (CEC'2002), volume 1, pages , Piscataway, New Jersey, May, IEEE Service Center. Jiménez, F. and Verdegay, J.L., 1999, Evolutionary techniques for constrained optimization problems., In Hans-Jurgen Zimmermann, editor, 7th European Congress on Intelligent Techniques and Soft Computing (EUFIT'99), Aachen, Germany, Verlag Mainz. ISBN X. Koziel, S. and Michalewicz, Z., 1999, Evolutionary Algorithms, Homomorphous Mappings, and Constrained Parameter Optimization., Evolutionary Computation, 7(1): Mezura-Montes, E. and Coello Coello, C.A., 2003, An Empirical Study about the Usefulness of the Evolution Strategies Natural Self-Adaptive Mechanism to Handle Constraints in Global Optimization., Technical Report EVOCINV , Evolutionary Computation Group at CINVESTAV, Sección de Computación, Departamento de Ingeniería Eléctrica, CINVESTAV- IPN, México D.F., México. Available at Michalewicz, Z. and Schoenauer, M., 1996, Evolutionary Algorithms for Constrained Parameter Optimization Problems. Evolutionary Computation, 4(1): Runarsson, T.P. and Yao, X., 2000, Stochastic Ranking for Constrained Evolutionary Optimization. IEEE Transactions on Evolutionary Computation, 4(3): , September. Schwefel, H.P., 1995, Evolution and Optimal Seeking, John Wiley & Sons Inc., New York. Smith, A.E. and Coit, D.W., 1997, Constraint Handling Techniques---Penalty Functions. In Thomas Back, David B. Fogel, and Zbigniew Michalewicz, editors, Handbook of Evolutionary Computation, chapter C 5.2. Oxford University Press and Institute of Physics Publishing.
A Novel Constraint Handling Strategy for Expensive Optimization Problems
th World Congress on Structural and Multidisciplinary Optimization 7 th - 2 th, June 25, Sydney Australia A Novel Constraint Handling Strategy for Expensive Optimization Problems Kalyan Shankar Bhattacharjee,
Improved Particle Swarm Optimization in Constrained Numerical Search Spaces
Improved Particle Swarm Optimization in Constrained Numerical Search Spaces Efrén Mezura-Montes and Jorge Isacc Flores-Mendoza Abstract This chapter presents a study about the behavior of Particle Swarm
Introduction To Genetic Algorithms
1 Introduction To Genetic Algorithms Dr. Rajib Kumar Bhattacharjya Department of Civil Engineering IIT Guwahati Email: [email protected] References 2 D. E. Goldberg, Genetic Algorithm In Search, Optimization
Hiroyuki Sato. Minami Miyakawa. Keiki Takadama ABSTRACT. Categories and Subject Descriptors. General Terms
Controlling election Area of Useful Infeasible olutions and Their Archive for Directed Mating in Evolutionary Constrained Multiobjective Optimization Minami Miyakawa The University of Electro-Communications
Simple Population Replacement Strategies for a Steady-State Multi-Objective Evolutionary Algorithm
Simple Population Replacement Strategies for a Steady-State Multi-Objective Evolutionary Christine L. Mumford School of Computer Science, Cardiff University PO Box 916, Cardiff CF24 3XF, United Kingdom
Solving Three-objective Optimization Problems Using Evolutionary Dynamic Weighted Aggregation: Results and Analysis
Solving Three-objective Optimization Problems Using Evolutionary Dynamic Weighted Aggregation: Results and Analysis Abstract. In this paper, evolutionary dynamic weighted aggregation methods are generalized
Management of Software Projects with GAs
MIC05: The Sixth Metaheuristics International Conference 1152-1 Management of Software Projects with GAs Enrique Alba J. Francisco Chicano Departamento de Lenguajes y Ciencias de la Computación, Universidad
A Study of Local Optima in the Biobjective Travelling Salesman Problem
A Study of Local Optima in the Biobjective Travelling Salesman Problem Luis Paquete, Marco Chiarandini and Thomas Stützle FG Intellektik, Technische Universität Darmstadt, Alexanderstr. 10, Darmstadt,
A Fast and Elitist Multiobjective Genetic Algorithm: NSGA-II
182 IEEE TRANSACTIONS ON EVOLUTIONARY COMPUTATION, VOL. 6, NO. 2, APRIL 2002 A Fast and Elitist Multiobjective Genetic Algorithm: NSGA-II Kalyanmoy Deb, Associate Member, IEEE, Amrit Pratap, Sameer Agarwal,
Model-based Parameter Optimization of an Engine Control Unit using Genetic Algorithms
Symposium on Automotive/Avionics Avionics Systems Engineering (SAASE) 2009, UC San Diego Model-based Parameter Optimization of an Engine Control Unit using Genetic Algorithms Dipl.-Inform. Malte Lochau
Optimising Patient Transportation in Hospitals
Optimising Patient Transportation in Hospitals Thomas Hanne 1 Fraunhofer Institute for Industrial Mathematics (ITWM), Fraunhofer-Platz 1, 67663 Kaiserslautern, Germany, [email protected] 1 Introduction
A Brief Study of the Nurse Scheduling Problem (NSP)
A Brief Study of the Nurse Scheduling Problem (NSP) Lizzy Augustine, Morgan Faer, Andreas Kavountzis, Reema Patel Submitted Tuesday December 15, 2009 0. Introduction and Background Our interest in the
Solving Engineering Optimization Problems with the Simple Constrained Particle Swarm Optimizer
Informatica 32 (2008) 319 326 319 Solving Engineering Optimization Problems with the Simple Constrained Particle Swarm Optimizer Leticia C. Cagnina and Susana C. Esquivel LIDIC, Universidad Nacional de
The Influence of Binary Representations of Integers on the Performance of Selectorecombinative Genetic Algorithms
The Influence of Binary Representations of Integers on the Performance of Selectorecombinative Genetic Algorithms Franz Rothlauf Working Paper 1/2002 February 2002 Working Papers in Information Systems
Adaptive Business Intelligence
Adaptive Business Intelligence Zbigniew Michalewicz 1 Business Intelligence What is Business Intelligence? Business Intelligence is a collection of tools, methods, technologies, and processes needed to
ISSN: 2319-5967 ISO 9001:2008 Certified International Journal of Engineering Science and Innovative Technology (IJESIT) Volume 2, Issue 3, May 2013
Transistor Level Fault Finding in VLSI Circuits using Genetic Algorithm Lalit A. Patel, Sarman K. Hadia CSPIT, CHARUSAT, Changa., CSPIT, CHARUSAT, Changa Abstract This paper presents, genetic based algorithm
A New Multi-objective Evolutionary Optimisation Algorithm: The Two-Archive Algorithm
A New Multi-objective Evolutionary Optimisation Algorithm: The Two-Archive Algorithm Kata Praditwong 1 and Xin Yao 2 The Centre of Excellence for Research in Computational Intelligence and Applications(CERCIA),
Large Scale Global Optimization: Experimental Results with MOS-based Hybrid Algorithms
Large Scale Global Optimization: Experimental Results with MOS-based Hybrid Algorithms Antonio LaTorre, Santiago Muelas, José-María Peña DATSI, Facultad de Informática, Universidad Politécnica de Madrid
THE TWO major steps in applying any heuristic search algorithm
124 IEEE TRANSACTIONS ON EVOLUTIONARY COMPUTATION, VOL. 3, NO. 2, JULY 1999 Parameter Control in Evolutionary Algorithms Ágoston Endre Eiben, Robert Hinterding, and Zbigniew Michalewicz, Senior Member,
Estimation of the COCOMO Model Parameters Using Genetic Algorithms for NASA Software Projects
Journal of Computer Science 2 (2): 118-123, 2006 ISSN 1549-3636 2006 Science Publications Estimation of the COCOMO Model Parameters Using Genetic Algorithms for NASA Software Projects Alaa F. Sheta Computers
ECONOMIC GENERATION AND SCHEDULING OF POWER BY GENETIC ALGORITHM
ECONOMIC GENERATION AND SCHEDULING OF POWER BY GENETIC ALGORITHM RAHUL GARG, 2 A.K.SHARMA READER, DEPARTMENT OF ELECTRICAL ENGINEERING, SBCET, JAIPUR (RAJ.) 2 ASSOCIATE PROF, DEPARTMENT OF ELECTRICAL ENGINEERING,
Evaluation of Crossover Operator Performance in Genetic Algorithms With Binary Representation
Evaluation of Crossover Operator Performance in Genetic Algorithms with Binary Representation Stjepan Picek, Marin Golub, and Domagoj Jakobovic Faculty of Electrical Engineering and Computing, Unska 3,
Lab 4: 26 th March 2012. Exercise 1: Evolutionary algorithms
Lab 4: 26 th March 2012 Exercise 1: Evolutionary algorithms 1. Found a problem where EAs would certainly perform very poorly compared to alternative approaches. Explain why. Suppose that we want to find
The ACO Encoding. Alberto Moraglio, Fernando E. B. Otero, and Colin G. Johnson
The ACO Encoding Alberto Moraglio, Fernando E. B. Otero, and Colin G. Johnson School of Computing and Centre for Reasoning, University of Kent, Canterbury, UK {A.Moraglio, F.E.B.Otero, C.G.Johnson}@kent.ac.uk
APPLICATION OF ADVANCED SEARCH- METHODS FOR AUTOMOTIVE DATA-BUS SYSTEM SIGNAL INTEGRITY OPTIMIZATION
APPLICATION OF ADVANCED SEARCH- METHODS FOR AUTOMOTIVE DATA-BUS SYSTEM SIGNAL INTEGRITY OPTIMIZATION Harald Günther 1, Stephan Frei 1, Thomas Wenzel, Wolfgang Mickisch 1 Technische Universität Dortmund,
Alpha Cut based Novel Selection for Genetic Algorithm
Alpha Cut based Novel for Genetic Algorithm Rakesh Kumar Professor Girdhar Gopal Research Scholar Rajesh Kumar Assistant Professor ABSTRACT Genetic algorithm (GA) has several genetic operators that can
A Service Revenue-oriented Task Scheduling Model of Cloud Computing
Journal of Information & Computational Science 10:10 (2013) 3153 3161 July 1, 2013 Available at http://www.joics.com A Service Revenue-oriented Task Scheduling Model of Cloud Computing Jianguang Deng a,b,,
A Fast Computational Genetic Algorithm for Economic Load Dispatch
A Fast Computational Genetic Algorithm for Economic Load Dispatch M.Sailaja Kumari 1, M.Sydulu 2 Email: 1 [email protected] 1, 2 Department of Electrical Engineering National Institute of Technology,
Evolutionary Prefetching and Caching in an Independent Storage Units Model
Evolutionary Prefetching and Caching in an Independent Units Model Athena Vakali Department of Informatics Aristotle University of Thessaloniki, Greece E-mail: avakali@csdauthgr Abstract Modern applications
D-optimal plans in observational studies
D-optimal plans in observational studies Constanze Pumplün Stefan Rüping Katharina Morik Claus Weihs October 11, 2005 Abstract This paper investigates the use of Design of Experiments in observational
Numerical Research on Distributed Genetic Algorithm with Redundant
Numerical Research on Distributed Genetic Algorithm with Redundant Binary Number 1 Sayori Seto, 2 Akinori Kanasugi 1,2 Graduate School of Engineering, Tokyo Denki University, Japan [email protected],
APPLICATION OF GENETIC ALGORITHMS IN INVENTORY MANAGEMENT
DAAAM INTERNATIONAL SCIENTIFIC BOOK 2010 pp. 245-258 CHAPTER 25 APPLICATION OF GENETIC ALGORITHMS IN INVENTORY MANAGEMENT DANIA, W.A.P. Abstract: Inventory cost is a main component of total logistic costs.
New binary representation in Genetic Algorithms for solving TSP by mapping permutations to a list of ordered numbers
Proceedings of the 5th WSEAS Int Conf on COMPUTATIONAL INTELLIGENCE, MAN-MACHINE SYSTEMS AND CYBERNETICS, Venice, Italy, November 0-, 006 363 New binary representation in Genetic Algorithms for solving
Learning in Abstract Memory Schemes for Dynamic Optimization
Fourth International Conference on Natural Computation Learning in Abstract Memory Schemes for Dynamic Optimization Hendrik Richter HTWK Leipzig, Fachbereich Elektrotechnik und Informationstechnik, Institut
Multi-Objective Optimization using Evolutionary Algorithms
Multi-Objective Optimization using Evolutionary Algorithms Kalyanmoy Deb Department of Mechanical Engineering, Indian Institute of Technology, Kanpur, India JOHN WILEY & SONS, LTD Chichester New York Weinheim
Modified Version of Roulette Selection for Evolution Algorithms - the Fan Selection
Modified Version of Roulette Selection for Evolution Algorithms - the Fan Selection Adam S lowik, Micha l Bia lko Department of Electronic, Technical University of Koszalin, ul. Śniadeckich 2, 75-453 Koszalin,
Least Squares Estimation
Least Squares Estimation SARA A VAN DE GEER Volume 2, pp 1041 1045 in Encyclopedia of Statistics in Behavioral Science ISBN-13: 978-0-470-86080-9 ISBN-10: 0-470-86080-4 Editors Brian S Everitt & David
Resource-constrained Scheduling of a Real Project from the Construction Industry: A Comparison of Software Packages for Project Management
Resource-constrained Scheduling of a Real Project from the Construction Industry: A Comparison of Software Packages for Project Management N. Trautmann, P. Baumann Department of Business Administration,
HYBRID GENETIC ALGORITHMS FOR SCHEDULING ADVERTISEMENTS ON A WEB PAGE
HYBRID GENETIC ALGORITHMS FOR SCHEDULING ADVERTISEMENTS ON A WEB PAGE Subodha Kumar University of Washington [email protected] Varghese S. Jacob University of Texas at Dallas [email protected]
International Journal of Advanced Research in Electrical, Electronics and Instrumentation Engineering
DOI: 10.15662/ijareeie.2014.0307061 Economic Dispatch of Power System Optimization with Power Generation Schedule Using Evolutionary Technique Girish Kumar 1, Rameshwar singh 2 PG Student [Control system],
CHAPTER 3 SECURITY CONSTRAINED OPTIMAL SHORT-TERM HYDROTHERMAL SCHEDULING
60 CHAPTER 3 SECURITY CONSTRAINED OPTIMAL SHORT-TERM HYDROTHERMAL SCHEDULING 3.1 INTRODUCTION Optimal short-term hydrothermal scheduling of power systems aims at determining optimal hydro and thermal generations
Solving LEGO brick layout problem using Evolutionary Algorithms
Solving LEGO brick layout problem using Evolutionary Algorithms Pavel Petrovic Evolutionary Computation and Artificial Life Group (EVAL) Department of Computer and Information Science, Norwegian University
NEUROEVOLUTION OF AUTO-TEACHING ARCHITECTURES
NEUROEVOLUTION OF AUTO-TEACHING ARCHITECTURES EDWARD ROBINSON & JOHN A. BULLINARIA School of Computer Science, University of Birmingham Edgbaston, Birmingham, B15 2TT, UK [email protected] This
Multi-objective Approaches to Optimal Testing Resource Allocation in Modular Software Systems
Multi-objective Approaches to Optimal Testing Resource Allocation in Modular Software Systems Zai Wang 1, Ke Tang 1 and Xin Yao 1,2 1 Nature Inspired Computation and Applications Laboratory (NICAL), School
An evolutionary learning spam filter system
An evolutionary learning spam filter system Catalin Stoean 1, Ruxandra Gorunescu 2, Mike Preuss 3, D. Dumitrescu 4 1 University of Craiova, Romania, [email protected] 2 University of Craiova, Romania,
Test Problem Construction for Single-Objective Bilevel Optimization
Test Problem Construction for Single-Objective Bilevel Optimization Ankur Sinha, Pekka Malo Department of Information and Service Economy Aalto University School of Business, Finland {Firstname.Lastname}@aalto.fi
Genetic Algorithms for Bridge Maintenance Scheduling. Master Thesis
Genetic Algorithms for Bridge Maintenance Scheduling Yan ZHANG Master Thesis 1st Examiner: Prof. Dr. Hans-Joachim Bungartz 2nd Examiner: Prof. Dr. rer.nat. Ernst Rank Assistant Advisor: DIPL.-ING. Katharina
International Journal of Software and Web Sciences (IJSWS) www.iasir.net
International Association of Scientific Innovation and Research (IASIR) (An Association Unifying the Sciences, Engineering, and Applied Research) ISSN (Print): 2279-0063 ISSN (Online): 2279-0071 International
Genetic Algorithm. Based on Darwinian Paradigm. Intrinsically a robust search and optimization mechanism. Conceptual Algorithm
24 Genetic Algorithm Based on Darwinian Paradigm Reproduction Competition Survive Selection Intrinsically a robust search and optimization mechanism Slide -47 - Conceptual Algorithm Slide -48 - 25 Genetic
A REINFORCED EVOLUTION-BASED APPROACH TO MULTI-RESOURCE LOAD BALANCING
A REINFORCED EVOLUTION-BASED APPROACH TO MULTI-RESOURCE LOAD BALANCING 1 Leszek Sliwko 1 Institute of Applied Informatics, Wrocław University of Technology, Wrocław, Poland E-mail: [email protected] ABSTRACT
Performance of Hybrid Genetic Algorithms Incorporating Local Search
Performance of Hybrid Genetic Algorithms Incorporating Local Search T. Elmihoub, A. A. Hopgood, L. Nolle and A. Battersby The Nottingham Trent University, School of Computing and Technology, Burton Street,
A Multi-Objective Performance Evaluation in Grid Task Scheduling using Evolutionary Algorithms
A Multi-Objective Performance Evaluation in Grid Task Scheduling using Evolutionary Algorithms MIGUEL CAMELO, YEZID DONOSO, HAROLD CASTRO Systems and Computer Engineering Department Universidad de los
A Forecasting Decision Support System
A Forecasting Decision Support System Hanaa E.Sayed a, *, Hossam A.Gabbar b, Soheir A. Fouad c, Khalil M. Ahmed c, Shigeji Miyazaki a a Department of Systems Engineering, Division of Industrial Innovation
Using Ant Colony Optimization for Infrastructure Maintenance Scheduling
Using Ant Colony Optimization for Infrastructure Maintenance Scheduling K. Lukas, A. Borrmann & E. Rank Chair for Computation in Engineering, Technische Universität München ABSTRACT: For the optimal planning
A Stock Trading Algorithm Model Proposal, based on Technical Indicators Signals
Informatica Economică vol. 15, no. 1/2011 183 A Stock Trading Algorithm Model Proposal, based on Technical Indicators Signals Darie MOLDOVAN, Mircea MOCA, Ştefan NIŢCHI Business Information Systems Dept.
Original Article Efficient Genetic Algorithm on Linear Programming Problem for Fittest Chromosomes
International Archive of Applied Sciences and Technology Volume 3 [2] June 2012: 47-57 ISSN: 0976-4828 Society of Education, India Website: www.soeagra.com/iaast/iaast.htm Original Article Efficient Genetic
Un algorithme génétique hybride à gestion adaptative de diversité pour le problème de tournées de véhicules et ses variantes
Un algorithme génétique hybride à gestion adaptative de diversité pour le problème de tournées de véhicules et ses variantes Thibaut VIDAL LOSI et CIRRELT Université de Technologie de Troyes et Université
New Modifications of Selection Operator in Genetic Algorithms for the Traveling Salesman Problem
New Modifications of Selection Operator in Genetic Algorithms for the Traveling Salesman Problem Radovic, Marija; and Milutinovic, Veljko Abstract One of the algorithms used for solving Traveling Salesman
A Novel Binary Particle Swarm Optimization
Proceedings of the 5th Mediterranean Conference on T33- A Novel Binary Particle Swarm Optimization Motaba Ahmadieh Khanesar, Member, IEEE, Mohammad Teshnehlab and Mahdi Aliyari Shoorehdeli K. N. Toosi
Core problems in the bi-criteria {0,1}-knapsack: new developments
Core problems in the bi-criteria {0,}-knapsack: new developments Carlos Gomes da Silva (2,3, ), João Clímaco (,3) and José Figueira (3,4) () Faculdade de Economia da Universidade de Coimbra Av. Dias da
Using Genetic Algorithms for Data Mining Optimization in an Educational Web-based System
Using Genetic Algorithms for Data Mining Optimization in an Educational Web-based System Behrouz Minaei-Bidgoli 1, William F. Punch III 1 1 Genetic Algorithms Research and Applications Group (GARAGe) Department
Computer Handholders Investment Software Research Paper Series TAILORING ASSET ALLOCATION TO THE INDIVIDUAL INVESTOR
Computer Handholders Investment Software Research Paper Series TAILORING ASSET ALLOCATION TO THE INDIVIDUAL INVESTOR David N. Nawrocki -- Villanova University ABSTRACT Asset allocation has typically used
EVOLUTIONARY PROBLEM SOLVING. Thomas Philip Runarsson
EVOLUTIONARY PROBLEM SOLVING Thomas Philip Runarsson Faculty of Engineering Reykjavik 2000 Copyright 2000 Thomas Philip Runarsson All Rights Reserved ISBN 9979-9494-1-4 Háskólaútgáfan University of Iceland
Solving Method for a Class of Bilevel Linear Programming based on Genetic Algorithms
Solving Method for a Class of Bilevel Linear Programming based on Genetic Algorithms G. Wang, Z. Wan and X. Wang Abstract The paper studies and designs an genetic algorithm (GA) of the bilevel linear programming
Genetic algorithms for solving portfolio allocation models based on relative-entropy, mean and variance
Journal of Scientific Research and Development 2 (12): 7-12, 2015 Available online at www.jsrad.org ISSN 1115-7569 2015 JSRAD Genetic algorithms for solving portfolio allocation models based on relative-entropy,
A joint control framework for supply chain planning
17 th European Symposium on Computer Aided Process Engineering ESCAPE17 V. Plesu and P.S. Agachi (Editors) 2007 Elsevier B.V. All rights reserved. 1 A joint control framework for supply chain planning
A Multi-objective Genetic Algorithm for Employee Scheduling
A Multi-objective Genetic Algorithm for Scheduling Russell Greenspan University of Illinois December, [email protected] ABSTRACT A Genetic Algorithm (GA) is applied to an employee scheduling optimization
A Comparison of Genotype Representations to Acquire Stock Trading Strategy Using Genetic Algorithms
2009 International Conference on Adaptive and Intelligent Systems A Comparison of Genotype Representations to Acquire Stock Trading Strategy Using Genetic Algorithms Kazuhiro Matsui Dept. of Computer Science
PLAANN as a Classification Tool for Customer Intelligence in Banking
PLAANN as a Classification Tool for Customer Intelligence in Banking EUNITE World Competition in domain of Intelligent Technologies The Research Report Ireneusz Czarnowski and Piotr Jedrzejowicz Department
Fleet Assignment Using Collective Intelligence
Fleet Assignment Using Collective Intelligence Nicolas E Antoine, Stefan R Bieniawski, and Ilan M Kroo Stanford University, Stanford, CA 94305 David H Wolpert NASA Ames Research Center, Moffett Field,
Highway Maintenance Scheduling Using Genetic Algorithm with Microscopic Traffic Simulation
Wang, Cheu and Fwa 1 Word Count: 6955 Highway Maintenance Scheduling Using Genetic Algorithm with Microscopic Traffic Simulation Ying Wang Research Scholar Department of Civil Engineering National University
Privacy-Aware Scheduling for Inter-Organizational Processes
Privacy-Aware Scheduling for Inter-Organizational Processes Christoph Hochreiner Distributed Systems Group, Vienna University of Technology, Austria [email protected] Abstract Due to the
