📄 092-095.html
字号:
<HTML>
<HEAD>
<META name=vsisbn content="0849398010">
<META name=vstitle content="Industrial Applications of Genetic Algorithms">
<META name=vsauthor content="Charles Karr; L. Michael Freeman">
<META name=vsimprint content="CRC Press">
<META name=vspublisher content="CRC Press LLC">
<META name=vspubdate content="12/01/98">
<META name=vscategory content="Web and Software Development: Artificial Intelligence: Other">
<TITLE>Industrial Applications of Genetic Algorithms:Genetic Algorithms for Constrained Service Provisioning</TITLE>
<!-- HEADER -->
<STYLE type="text/css">
<!--
A:hover {
color : Red;
}
-->
</STYLE>
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
<!--ISBN=0849398010//-->
<!--TITLE=Industrial Applications of Genetic Algorithms//-->
<!--AUTHOR=Charles Karr//-->
<!--AUTHOR=L. Michael Freeman//-->
<!--PUBLISHER=CRC Press LLC//-->
<!--IMPRINT=CRC Press//-->
<!--CHAPTER=6//-->
<!--PAGES=092-095//-->
<!--UNASSIGNED1//-->
<!--UNASSIGNED2//-->
<CENTER>
<TABLE BORDER>
<TR>
<TD><A HREF="091-092.html">Previous</A></TD>
<TD><A HREF="../ewtoc.html">Table of Contents</A></TD>
<TD><A HREF="095-097.html">Next</A></TD>
</TR>
</TABLE>
</CENTER>
<P><BR></P>
<P><FONT SIZE="+1"><B>RELATED WORK</B></FONT></P>
<P>The optimization problem considered here has some aspects in common with other problems which have been studied:
</P>
<DL>
<DD><B>•</B> A potentially large number of constraints. For the simplified problem discussed here, the complexity of the constraints will be minimized but in the “real world” there are diverse constraints.
<DD><B>•</B> Multiple objectives for the optimization.
</DL>
<P>The Web-based Genetic Algorithms Digest [2] is helpful as a forum for an informal exchange of ideas and was consulted for this project.
</P>
<P>Michalewicz [3] is an excellent book that describes many genetic algorithm issues and problems. Chapter 9 suggests a representation for the transportation problem (quite similar to the problem of this project) which uses a special initialization algorithm (p.145) and a permutation technique which works quite well for the current problem.</P>
<P>Cox et al. [4] consider the problem of designing dynamic routing in communications networks. This work is applicable to the current project in that similar constraint (meeting service needs without using excessive resources) considerations exist. Also, since the problem is to find a <I>dynamic</I> solution, it starts from a given routing and looks for improvements as call traffic fluctuates.</P>
<P>Davis and Coombs [5] apply genetic algorithms with some interesting approaches to constraints. They developed Stochastic constraints (things are “OK” if the constraint is satisfied “most of the time,” defined in the paper), Ice Age constraints (constraints are only applied during “Ice Ages,” i.e., rarely, instead of every generation), and “LaMarck Operators” which handle constraints by fixing them up occasionally. They also applied Object-Oriented programming techniques to genetic algorithms for handling constraints. Their approach to “Ice Age” constraints was used in one of the investigations of this project.</P>
<P>Surry and Radcliffe [6] treat multiple constraints as a Pareto optimization problem, with satisfaction of each constraint taken as another objective function. A special method is developed: COMOGA (Constrained Optimization by Multi-Objective Genetic Algorithms). This entails the calculation of constraint violations, Pareto ranking, fitness evaluation, and selection. The selection operation “compromises” between picking the “best” members (based on fitness) and the “best” members based on constraint satisfaction. The approach for this investigation uses a variation of the Pareto approach for tournament ranking as discussed in the Investigations section below.</P>
<P>Michalewicz [7] is a survey article that outlines many of the popular methods of dealing with constraints. One interesting method, useful in dealing with <I>convex</I> problems, is to avoid constraint violation by considering crossover as a linear combination of (feasible) individuals.</P>
<P><FONT SIZE="+1"><B>GENETIC ALGORITHM MODEL</B></FONT></P>
<P><FONT SIZE="+1"><B><I>Genetic Algorithm Approach for this Problem</I></B></FONT></P>
<P>The strategy employed here is based on a genetic algorithm approach as described in Goldberg [1] with certain variations. The remainder of this chapter assumes familiarity with the concepts and terminology of genetic algorithms as presented in Goldberg [1]. This section describes the formulation of the chromosomes, the methods of selection, reproduction, mutation, and the fitness functions.
</P>
<P><FONT SIZE="+1"><B><I>Problem Size</I></B></FONT></P>
<P>For this approach to be useful commercially, it should be successful on problems using up to 100 resources and 100 services. Here, only small to medium size problems are considered, with up to 10 resources and 10 services.
</P>
<P><FONT SIZE="+1"><B><I>Chromosome Formulation</I></B></FONT></P>
<P>Chromosomes are a two-dimensional matrix P (for “provisioning”). The rows of P are the resource pools to be used. The columns of P are the services to be provisioned. P(r,s) represents the amount of service “s” provided through resource “r”. The length of the chromosome is |R| × |S|. Thus, a typical chromosome might be:
</P>
<P>( 5 2 0 0 0 3 7 8 1 9 4 2 2 3 0 1 6 8 4 4 3 )</P>
<P>representing the following provisioning:</P>
<TABLE WIDTH="100%" BORDER><TR>
<TD>
<TH ALIGN="LEFT" COLSPAN="7">Services
<TR>
<TH ALIGN="LEFT" WIDTH="14%">Resource
<TH ALIGN="LEFT" WIDTH="12%">Svc #1
<TH ALIGN="LEFT" WIDTH="12%">Svc #2
<TH ALIGN="LEFT" WIDTH="12%">Svc #3
<TH ALIGN="LEFT" WIDTH="12%">Svc #4
<TH ALIGN="LEFT" WIDTH="12%">Svc #5
<TH ALIGN="LEFT" WIDTH="12%">Svc #6
<TH ALIGN="LEFT" WIDTH="14%">Svc #7
<TR>
<TD>Res #1
<TD>5
<TD>2
<TD>0
<TD>0
<TD>0
<TD>3
<TD>7
<TR>
<TD>Res #2
<TD>8
<TD>1
<TD>9
<TD>4
<TD>2
<TD>2
<TD>3
<TR>
<TD>Res #3
<TD>0
<TD>1
<TD>6
<TD>8
<TD>4
<TD>4
<TD>3
</TABLE>
<P><FONT SIZE="+1"><B><I>Allele Formulation</I></B></FONT></P>
<P>The entries in the chromosomes are taken here to be small integers. As discussed below, alleles will be preserved under crossover.
</P>
<P>The approach taken here is a compromise between the traditional genetic algorithm approach and a linear programming approach. Traditionally, a genetic algorithm would encode data into a binary (or small cardinality) alphabet string using discretization of the solution space. This makes the search space more manageable but also requires early commitment to a specific set of possible solutions which is overly restrictive in the current problem domain.</P>
<P>In contrast, a linear programming approach would generally use floating point operations to find a solution (if one exists, if all constraints are linear, etc.) to a high level of precision. This level of precision is unwarranted here, both due to the “softness” of the constraints mentioned above and due to the fact that a provisioning of services is ultimately carried out by people making commitments of resources to provide services. For example, six channels might be committed to service A, but not 6.037429 channels, even though the latter solution might be more optimal in a mathematical sense.</P><P><BR></P>
<CENTER>
<TABLE BORDER>
<TR>
<TD><A HREF="091-092.html">Previous</A></TD>
<TD><A HREF="../ewtoc.html">Table of Contents</A></TD>
<TD><A HREF="095-097.html">Next</A></TD>
</TR>
</TABLE>
</CENTER>
<hr width="90%" size="1" noshade>
<div align="center">
<font face="Verdana,sans-serif" size="1">Copyright © <a href="/reference/crc00001.html">CRC Press LLC</a></font>
</div>
<!-- all of the reference materials (books) have the footer and subfoot reveresed -->
<!-- reference_subfoot = footer -->
<!-- reference_footer = subfoot -->
</BODY>
</HTML>
<!-- END FOOTER -->
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -