Evaluation of Genetic Algorithm Concepts Using Model Problems. Part 2; Multi-Objective Optimization

Evaluation of Genetic Algorithm Concepts Using Model Problems. Part 2; Multi-Objective Optimization

Author: National Aeronautics and Space Adm Nasa

Publisher:

Published: 2018-09-19

Total Pages: 46

ISBN-13: 9781723834097

DOWNLOAD EBOOK

A genetic algorithm approach suitable for solving multi-objective optimization problems is described and evaluated using a series of simple model problems. Several new features including a binning selection algorithm and a gene-space transformation procedure are included. The genetic algorithm is suitable for finding pareto optimal solutions in search spaces that are defined by any number of genes and that contain any number of local extrema. Results indicate that the genetic algorithm optimization approach is flexible in application and extremely reliable, providing optimal results for all optimization problems attempted. The binning algorithm generally provides pareto front quality enhancements and moderate convergence efficiency improvements for most of the model problems. The gene-space transformation procedure provides a large convergence efficiency enhancement for problems with non-convoluted pareto fronts and a degradation in efficiency for problems with convoluted pareto fronts. The most difficult problems --multi-mode search spaces with a large number of genes and convoluted pareto fronts-- require a large number of function evaluations for GA convergence, but always converge.Holst, Terry L. and Pulliam, Thomas H.Ames Research CenterGENETIC ALGORITHMS; MATHEMATICAL MODELS; OPTIMIZATION; OPERATORS (MATHEMATICS); CONVERGENCE; VECTOR ANALYSIS; STOCHASTIC PROCESSES...


Evaluation of Genetic Algorithm Concepts Using Model Problems

Evaluation of Genetic Algorithm Concepts Using Model Problems

Author: Nasa Technical Reports Server (Ntrs)

Publisher: BiblioGov

Published: 2013-06

Total Pages: 34

ISBN-13: 9781289148089

DOWNLOAD EBOOK

A genetic-algorithm-based optimization approach is described and evaluated using a simple hill-climbing model problem. The model problem utilized herein allows for the broad specification of a large number of search spaces including spaces with an arbitrary number of genes or decision variables and an arbitrary number hills or modes. In the present study, only single objective problems are considered. Results indicate that the genetic algorithm optimization approach is flexible in application and extremely reliable, providing optimal results for all problems attempted. The most difficult problems - those with large hyper-volumes and multi-mode search spaces containing a large number of genes - require a large number of function evaluations for GA convergence, but they always converge.


Multi-Objective Optimization using Evolutionary Algorithms

Multi-Objective Optimization using Evolutionary Algorithms

Author: Kalyanmoy Deb

Publisher: John Wiley & Sons

Published: 2001-07-05

Total Pages: 540

ISBN-13: 9780471873396

DOWNLOAD EBOOK

Optimierung mit mehreren Zielen, evolutionäre Algorithmen: Dieses Buch wendet sich vorrangig an Einsteiger, denn es werden kaum Vorkenntnisse vorausgesetzt. Geboten werden alle notwendigen Grundlagen, um die Theorie auf Probleme der Ingenieurtechnik, der Vorhersage und der Planung anzuwenden. Der Autor gibt auch einen Ausblick auf Forschungsaufgaben der Zukunft.


Evolutionary Algorithms for Solving Multi-Objective Problems

Evolutionary Algorithms for Solving Multi-Objective Problems

Author: Carlos Coello Coello

Publisher: Springer Science & Business Media

Published: 2007-09-18

Total Pages: 810

ISBN-13: 0387332545

DOWNLOAD EBOOK

This textbook is a second edition of Evolutionary Algorithms for Solving Multi-Objective Problems, significantly expanded and adapted for the classroom. The various features of multi-objective evolutionary algorithms are presented here in an innovative and student-friendly fashion, incorporating state-of-the-art research. The book disseminates the application of evolutionary algorithm techniques to a variety of practical problems. It contains exhaustive appendices, index and bibliography and links to a complete set of teaching tutorials, exercises and solutions.


Genetic Algorithm Essentials

Genetic Algorithm Essentials

Author: Oliver Kramer

Publisher: Springer

Published: 2017-01-07

Total Pages: 94

ISBN-13: 331952156X

DOWNLOAD EBOOK

This book introduces readers to genetic algorithms (GAs) with an emphasis on making the concepts, algorithms, and applications discussed as easy to understand as possible. Further, it avoids a great deal of formalisms and thus opens the subject to a broader audience in comparison to manuscripts overloaded by notations and equations. The book is divided into three parts, the first of which provides an introduction to GAs, starting with basic concepts like evolutionary operators and continuing with an overview of strategies for tuning and controlling parameters. In turn, the second part focuses on solution space variants like multimodal, constrained, and multi-objective solution spaces. Lastly, the third part briefly introduces theoretical tools for GAs, the intersections and hybridizations with machine learning, and highlights selected promising applications.


Genetic Algorithms and Engineering Optimization

Genetic Algorithms and Engineering Optimization

Author: Mitsuo Gen

Publisher: John Wiley & Sons

Published: 1999-12-28

Total Pages: 520

ISBN-13: 9780471315315

DOWNLOAD EBOOK

Im Mittelpunkt dieses Buches steht eines der wichtigsten Optimierungsverfahren der industriellen Ingenieurtechnik: Mit Hilfe genetischer Algorithmen lassen sich Qualität, Design und Zuverlässigkeit von Produkten entscheidend verbessern. Das Verfahren beruht auf der Wahrscheinlichkeitstheorie und lehnt sich an die Prinzipien der biologischen Vererbung an: Die Eigenschaften des Produkts werden, unter Beachtung der äußeren Randbedingungen, schrittweise optimiert. Ein hochaktueller Band international anerkannter Autoren. (03/00)


OPTIMIZATION with MATLAB USING the GENETIC ALGORITHM. MULTIOBJECTIVE OPTIMIZATION

OPTIMIZATION with MATLAB USING the GENETIC ALGORITHM. MULTIOBJECTIVE OPTIMIZATION

Author: J Lopez

Publisher:

Published: 2019-06-28

Total Pages: 380

ISBN-13: 9781076750457

DOWNLOAD EBOOK

Global Optimization Toolbox provides functions that search for global solutions to problems that contain multiple maxima or minima. Toolbox solvers include surrogate, pattern search, genetic algorithm, particle swarm, simulated annealing, multi start, and global search. The genetic algorithm is a method for solving both constrained and unconstrained optimization problems that is based on natural selection, the process that drives biological evolution. The genetic algorithm repeatedly modifies a population of individual solutions. At each step, the genetic algorithm selects individuals at random from the current population to be parents and uses them to produce the children for the next generation. Over successive generations, the population "evolves" toward an optimal solution. You can apply the genetic algorithm to solve a variety of optimization problems that are not well suited for standard optimization algorithms, including problems in which the objective function is discontinuous, nondifferentiable, stochastic, or highly nonlinear. The genetic algorithm can address problems of mixed integer programming, where some components are restricted to be integer-valued.A surrogate is a function that approximates an objective function. The surrogate is useful because it takes little time to evaluate. So, for example, to search for a point that minimizes an objective function, simply evaluate the surrogate on thousands of points, and take the best value as an approximation to the minimizer of the objective function. Surrogate optimization is best suited to time-consuming objective functions. The objective function need not be smooth, but the algorithm works best when the objective function is continuous. Surrogate optimization attempts to fin a global minimum of an objective function using few objective function evaluations. To do so, the algorithm tries to balance the optimization process between two goals: exploration and speed.Simulated annealing is a method for solving unconstrained and bound-constrained optimization problems. The method models the physical process of heating a material and then slowly lowering the temperature to decrease defects, thus minimizing the system energy. At each iteration of the simulated annealing algorithm, a new point is randomly generated. The distance of the new point from the current point, or the extent of the search, is based on a probability distribution with a scale proportional to the temperature. The algorithm accepts all new points that lower the objective, but also, with a certain probability, points that raise the objective. By accepting points that raise the objective, the algorithm avoids being trapped in local minima, and is able to explore globally for more possible solutions. An annealing schedule is selected to systematically decrease the temperature as the algorithm proceeds. As the temperature decreases, the algorithm reduces the extent of its search to converge to a minimum.


Multiobjective Optimization Methodology

Multiobjective Optimization Methodology

Author: K.S. Tang

Publisher: CRC Press

Published: 2018-09-03

Total Pages: 283

ISBN-13: 1351832522

DOWNLOAD EBOOK

The first book to focus on jumping genes outside bioscience and medicine, Multiobjective Optimization Methodology: A Jumping Gene Approach introduces jumping gene algorithms designed to supply adequate, viable solutions to multiobjective problems quickly and with low computational cost. Better Convergence and a Wider Spread of Nondominated Solutions The book begins with a thorough review of state-of-the-art multiobjective optimization techniques. For readers who may not be familiar with the bioscience behind the jumping gene, it then outlines the basic biological gene transposition process and explains the translation of the copy-and-paste and cut-and-paste operations into a computable language. To justify the scientific standing of the jumping genes algorithms, the book provides rigorous mathematical derivations of the jumping genes operations based on schema theory. It also discusses a number of convergence and diversity performance metrics for measuring the usefulness of the algorithms. Practical Applications of Jumping Gene Algorithms Three practical engineering applications showcase the effectiveness of the jumping gene algorithms in terms of the crucial trade-off between convergence and diversity. The examples deal with the placement of radio-to-fiber repeaters in wireless local-loop systems, the management of resources in WCDMA systems, and the placement of base stations in wireless local-area networks. Offering insight into multiobjective optimization, the authors show how jumping gene algorithms are a useful addition to existing evolutionary algorithms, particularly to obtain quick convergence solutions and solutions to outliers.