<?xml version="1.0" encoding="UTF-8"?>
<TEI xml:space="preserve" xmlns="http://www.tei-c.org/ns/1.0" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xsi:schemaLocation="http://www.tei-c.org/ns/1.0 https://raw.githubusercontent.com/kermitt2/grobid/master/grobid-home/schemas/xsd/Grobid.xsd"
 xmlns:xlink="http://www.w3.org/1999/xlink">
	<teiHeader xml:lang="en">
		<fileDesc>
			<titleStmt>
				<title level="a" type="main">Genetic Algorithm Applied to the Graph Coloring Problem</title>
			</titleStmt>
			<publicationStmt>
				<publisher/>
				<availability status="unknown"><licence/></availability>
			</publicationStmt>
			<sourceDesc>
				<biblStruct>
					<analytic>
						<author>
							<persName><forename type="first">Musa</forename><forename type="middle">M</forename><surname>Hindi</surname></persName>
							<affiliation key="aff0">
								<orgName type="department">Computer Engineering and Computer Science J.B. Speed School of Engineering Louisville</orgName>
								<address>
									<settlement>Kentucky</settlement>
								</address>
							</affiliation>
						</author>
						<author>
							<persName><forename type="first">Roman</forename><forename type="middle">V</forename><surname>Yampolskiy</surname></persName>
							<affiliation key="aff0">
								<orgName type="department">Computer Engineering and Computer Science J.B. Speed School of Engineering Louisville</orgName>
								<address>
									<settlement>Kentucky</settlement>
								</address>
							</affiliation>
						</author>
						<title level="a" type="main">Genetic Algorithm Applied to the Graph Coloring Problem</title>
					</analytic>
					<monogr>
						<imprint>
							<date/>
						</imprint>
					</monogr>
					<idno type="MD5">899B2CC93962B145BE1702CAFF753C10</idno>
				</biblStruct>
			</sourceDesc>
		</fileDesc>
		<encodingDesc>
			<appInfo>
				<application version="0.7.2" ident="GROBID" when="2023-03-24T17:00+0000">
					<desc>GROBID - A machine learning software for extracting information from scholarly documents</desc>
					<ref target="https://github.com/kermitt2/grobid"/>
				</application>
			</appInfo>
		</encodingDesc>
		<profileDesc>
			<abstract>
<div xmlns="http://www.tei-c.org/ns/1.0"><p>In this paper we present a hybrid technique that applies a genetic algorithm followed by wisdom of artificial crowds approach to solving the graph-coloring problem. The genetic algorithm described here utilizes more than one parent selection and mutation methods depending on the state of fitness of its best solution. This results in shifting the solution to the global optimum more quickly than using a single parent selection or mutation method. The algorithm is tested against the standard DIMACS benchmark tests while limiting the number of usable colors to the known chromatic numbers. The proposed algorithm succeeded at solving the sample data set and even outperformed a recent approach in terms of the minimum number of colors needed to color some of the graphs.</p></div>
			</abstract>
		</profileDesc>
	</teiHeader>
	<text xml:lang="en">
		<body>
<div xmlns="http://www.tei-c.org/ns/1.0"><p>The Graph Coloring Problem (GCP) is a well-known NPcomplete problem. Graph coloring includes both vertex coloring and edge coloring. However, the term graph coloring usually refers to vertex coloring rather than edge coloring.</p><p>Given a number of vertices, which form a connected graph, the objective is to color each vertex such that if two vertices are connected in the graph (i.e. adjacent) they will be colored with different colors. Moreover, the number of different colors that can be used to color the vertices is limited and a secondary objective is to find the minimum number of different colors needed to color a certain graph without violating the adjacency constraint. That number for a given graph (G) is known as the Chromatic Number (χ(G)) (Isabel Méndez <ref type="bibr" target="#b4">Díaz and Paula Zabala 1999)</ref>.</p><p>If k = {1, 2, 3... <ref type="bibr">} and P(G, k)</ref> is the number of possible solutions for coloring the graph G with k colors, then χ(G) = min(k: P(G, k) &gt; 0)</p><p>(1)</p><p>Graph coloring problems are very interesting from the theoretical standpoint since they are a class of NP-complete problems that also belong to Constraint Satisfaction Problems (CSPs). The practical applications of Graph Coloring Problems include but are not limited to: In this paper we demonstrate the use of genetic algorithms in solving the graph-coloring problem while strictly adhering to the usage of no more than the number of colors equal to the chromatic index to color the various test graphs.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head>Prior Work</head><p>A great deal of research has been done to tackle the theoretical aspects of the Graph Coloring Problem in terms of its generalization as a Constraint Satisfaction Problem (Isabel Méndez <ref type="bibr" target="#b4">Díaz and Paula Zabala 1999)</ref>. The problem's various applications and solutions have been discussed in detail in <ref type="bibr">Porumbel's paper (Daniel Cosmin Porumbel 2009)</ref>. Evolutionary computation and parameter control has been detailed in a number of papers including ones by Back, Hammel, and Schwefel (T. Back, U. Hammel and H. P. Schwefel 1997) as well as work by Eiben, Hinterding and Michalewicz (A. E. Eiben, R. Hinterding and Z. Michalewicz 1999). Srinivas and Patnaik examined crossover and mutation probabilities for optimizing genetic algorithm performance (M. Srinivas and L. M. Patnaik 1994). Genetic algorithms and evolutionary approaches have been used extensively in solutions for the Graph Coloring Problem and its applications (F. F. <ref type="bibr">Ali, et al. 1999;</ref><ref type="bibr" target="#b10">K. Tagawa, et al. 1999;</ref><ref type="bibr" target="#b3">Cornelius Croitoru, et al. 2002;</ref><ref type="bibr" target="#b6">C. A. Glass and A. Prugel-Bennett 2003;</ref><ref type="bibr" target="#b9">Justine W. Shen 2003;</ref><ref type="bibr" target="#b5">Greg Durrett, Muriel Médard and Una-May O'Reilly 2010;</ref><ref type="bibr" target="#b8">Lixia Han and Zhanli Han 2010)</ref>. Most recent work utilized a parallel genetic algorithm on a similar dataset to the one used in this paper (Reza <ref type="bibr" target="#b0">Abbasian and Malek Mouhoub 2011)</ref>.</p><p>The concept of utilizing a crowd of individuals for solving NP complete problems has also been the topic of various papers. Most notably the Wisdom of Crowds concept has been used in solving the Traveling Salesman Problem (Sheng Kung <ref type="bibr" target="#b11">Michael Yi, et al. 2010b</ref>) as well as the Minimum Spanning Tree Problem (Sheng Kung <ref type="bibr" target="#b11">Michael Yi, et al. 2010a)</ref>. In this paper we attempt to supplement the solution produced by the genetic algorithm utilizing an artificial crowd (Leif H. Ashby and Roman V. Yampolskiy 2011; Roman V. Yampolskiy and Ahmed El-Barkouky 2011).</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head>Proposed Approach</head><p>Genetic algorithms share an overall structure and workflow yet they vary in the specific details according to the particular problem. The algorithm consists of a parent selection method, a crossover method and a mutation method.</p><p>The general algorithm is: The goal of the previous algorithm is to improve the fitness of the population by mating its fittest individuals to produce superior offspring that offer a better solution to the problem. This process continues until a terminating condition is reached which could be simply that the total number of generations has been run or any other parameter like non-improvement of fitness over a certain number of generations or that a solution for the problem has been found.</p><p>The chromosome representation of the GCP is simply an array with the length set to the number of vertices in the graph. Each cell in the array is assigned a value from 0 to the number of colors -1. The adjacencies between the vertices are represented by an adjacency matrix of dimensions n×n where n: the number of vertices.</p><p>Figure <ref type="figure" target="#fig_1">1</ref> displays the chromosome representation of a graph of 7 vertices using 4 colors:</p><p>The ultimate goal when solving GCPs is to reach a solution where no two adjacent vertices have the same color. Therefore, the GA process continues until it either finds a solution (i.e. 0 conflicts) or the algorithm has been run for the predefined number of generations. In addition to the GA, if a run fails to reach a solution a Wisdom of Crowds approach will be applied to the top performers in an attempt to produce a better solution.</p><p>The overall genetic algorithm in this approach is a generational genetic algorithm. The population size is kept constant at all times and with each generation the bottom performing half of the population is removed and new randomly generated chromosomes are added. The population size is set to 50 chromosomes. The value was chosen after testing a number of different population sizes. The value 50 was the least value that produced the desired results.</p><p>The GA uses two different parent selection methods, a single crossover method and two different mutation methods. Which of the parent selection and mutation methods ends up selected depends on the state of the population and how close it is to finding a solution. The parent selection, crossover and mutation methods are outlined as follows: A bad edge is defined as an edge connecting two vertices that have the same color. The number of bad edges is the fitness score for any chromosome. As mentioned above, the alteration between the two different parent selection and mutation methods depends on the best fitness. If the best fitness is greater than 4 then parentSelection1 and mutation1 are used. If the best fitness is 4 or less then parentSelection2 and mutation2 are used. This alteration is the result of experimenting with the different data sets. It was observed that when the best fitness score is low (i.e. approaching an optimum) the usage of parent selection 2 (which copies the best chromosome as the new child) along with mutation2 (which randomly selects a color for the violating vertex) results in a solution more often and more quickly than using the other two respective methods.</p><p>Finally, the algorithm is run for 20,000 generations or until a solution with 0 bad edges is found. If a solution is not found after 20,000 generations the wisdomOfArtificialCrowds algorithm is run. The algorithm used is a localized wisdom of crowds algorithm that only builds a consensus out of the violating edges in the best solution. Moreover, it uses the best half of the final population to produce an aggregate solution. Only a localized consensus is generated so as not to produce a result that alters the correctly colored vertices. Also, it takes the best half because they share the most similarity and thus will most likely be different at the level of the bad edges rather than the good ones. A number of lines follow the header with each line denoting the connected edges and their vertex indices: e 1 100 16 files were chosen from the DIMACS collection. The graphs the files represent vary in vertex count, edge count and overall complexity. The vertex count ranges between 11 and 561 and the edge count ranges from 20 to 11654. The rationale behind the selection of these graphs other than the wide range of variation is that there is a known chromatic number for each of them, or at least a good approximation.</p><p>The following files were used in this approach: (myciel3.col, myciel4.col, myciel5.col, queen5_5.col, queen6_6.col, queen7_ 7.col, queen8_8.col, huck.col, jean.col, david.col. games120.col, miles250.col, miles1000.col, anna.col, fpsol2.i.1.col, homer.col).</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head>Results</head><p>Table <ref type="table" target="#tab_2">1</ref> displays the following statistics for each file: The tests were run on a desktop PC with the following specifications: CPU: Intel Core i7 860 @2.8Ghz RAM: 8 GB DDR3 @1333MHz The following graphs plot the relationship between the fitness and the generation for a sample set of the files used: Figures 2 and 3 are not very interesting since the solutions are found after a few generations. The next plot, however, is of particular interest since it clearly represents the erratic behavior of the fitness score between the initial rapid drop until a solution is ultimately found. In standard genetic algorithms the fitness score continues to increase or decrease (depending of the definition of better fitness) until the end of the run. This is not the case here. This factor plays a huge role in obtaining the global optimum with a higher probability than without it as will be discussed later.   </p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head>Discussion</head><p>During the design of this approach, the issue of designing good operators was a constant concern. The goal of any good operator is to bring the chromosomes of a population closer to the desired solution. However, during the process, a chromosome's fitness often improves but eventually ends up in a local optimum. The overall design of this approach aimed to improve fitness towards the global optimum while avoiding the pitfalls of local optima.</p><p>To achieve that, a number of factors need to be considered. Initially, the crossover function is applied to parents that result from the first parent selection method. This method selects parents by conducting a small tournament between random pairs of chromosomes. Two pairs are chosen randomly and the fitter of each pair becomes a parent. These fit parents are then used as input to this crossover method. The crossover conducts a simple one-point crossover with the cross point being chosen at random. The result of this crossover is then subjected to the first mutation method. The mutation is carried out at a high rate of 0.7. This mutation examines each vertex and if a vertex violates the coloring constraint a valid color is chosen at random.</p><p>This process is very effective in reducing the number of conflicts rapidly which can be seen in all the plots through an almost perpendicular drop in fitness. However, in spite of this method's effectiveness at increasing fitness rapidly, it has the side effect of keeping the solution at a local optimum.</p><p>To fix that, another parent selection and mutation method is introduced. The two methods are applied when the overall fitness of the best solution drops below 5 conflicts.</p><p>After that point crossover is no longer applied. The top performer is selected and is subjected to the second mutation method. This method finds the conflicting vertices and replaces their conflicting colors with random colors; which could be invalid as well. This has the potential to either find a globally optimum solution (i.e. 0 conflicts) or produce a solution that is worse! This can be observed by the erratic pattern in some of the graphs after the sharp descent and before the actual resolution of the problem.</p><p>This seemingly worsening fitness is not bad however. In fact, it is partly due to this worsening of the fitness that some solutions are found at all! When the solution becomes worse the fitness score increases. This will force the algorithm back to using the first parent selection and mutation methods. But, the population now contains a solution that hadn't been there before, which increases the possibility of reaching the global optimum. The continuous back and forth between parent selection and mutation methods plays a crucial role in shifting the solution from a local optimum to a global optimum.</p><p>Finally, if a solution is not found after 20,000 generations, a Wisdom of Artificial Crowds algorithm is applied to the resultant population to produce a better solution. The genetic algorithm had been producing optimal results and thus, per the algorithmic workflow, the Wisdom of Artificial Crowds postprocessor wouldn't be applied. However, in order to test its effectiveness, a test was conducted by decreasing the generation count to 10,000 to intentionally produce a suboptimal solution. The test was carried out on the miles1000.col file. Before the postprocessor was applied the best solution had 5 conflicting edges. After application of the Wisdom of Artificial Crowds postprocessor the graph was colored slightly differently but still had 5 conflicting edges. It is worth noting that the postprocessor added an average of 250 ms to the overall process.</p><p>The test cases used were very useful in both testing and tuning the algorithm. The algorithm was able to scale across the different graphs and produce optimum solutions in each case. A recent 2011 publication presented a parallel genetic algorithm for the GCP (Reza <ref type="bibr" target="#b0">Abbasian and Malek Mouhoub 2011)</ref>. This paper used most of the same test files that were used in Abbasian's approach. That approach's proposed algorithm failed to solve three of the graphs and only produced solutions when the color count was increased by 1. The files representing these graphs are queen6_6.col, queen7_7.col and queen8_8.col. The algorithm used in our approach successfully solved these three files using the specified known chromatic number as the number of colors used. Our approach is also generally faster at finding a solution. It is faster in all cases except four. Three of those cases are the three aforementioned files, which the comparative method did not succeed at finding a solution using the known chromatic index. The fourth case is miles1000.col.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head>Conclusion</head><p>The overarching algorithm used in this approach is a genetic algorithm with a subsequent Wisdom of Crowds post-processor. Within the genetic algorithm itself is a set of operators that utilize methods from the genetic algorithm domain as well as applying various heuristics in a stochastic manner. The end result is an quick progressive climb to the peak of the globally optimum solution.</p><p>The algorithms described here can also be applied to the various subsets of the general GCP. In particular, Sudoku can benefit from these algorithms where it can be represented as a graph with 81 vertices that must be colored using no more than 9 different colors (i.e. different numbers).</p></div><figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_0"><head></head><label></label><figDesc>single run of a genetic algorithm function gaRun() { parents = getParents(); child = crossover(parents); child = mutate(child); population.add(child); }</figDesc></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_1"><head>Figure 1 :</head><label>1</label><figDesc>Figure 1: Chromosome representation of a colored connected graph</figDesc><graphic coords="2,318.72,183.84,237.36,237.36" type="bitmap" /></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_2"><head>•</head><label></label><figDesc>The number of vertices |V| • The number of edges |E| • The expected chromatic number χ(G) • The minimum number of colors used by this algorithm k min • The minimum number of colors used by a comparative publication using a Hybrid Parallel Genetic Algorithm (HPGAGCP) • Average time it took to find a solution The genetic algorithm was developed in Java utilizing JDK 1.6 and JUNG (Java Universal Network/Graph) framework for graph visualization (Joshua O'Madadhain, Danyel Fisher and Tom Nelson 2011). Performance plots were generated using MATLAB R2010a.</figDesc></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_3"><head>Figure 2 :Figure 3 :</head><label>23</label><figDesc>Figure 2: Fitness score over the number of generations for myciel3.col</figDesc><graphic coords="4,325.44,282.24,223.92,168.48" type="bitmap" /></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_4"><head>Figure 4 :</head><label>4</label><figDesc>Figure 4: Fitness score over the number of generations for queen6.col</figDesc><graphic coords="5,60.48,190.80,224.40,168.48" type="bitmap" /></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_5"><head>Figure 5 :</head><label>5</label><figDesc>Figure 5: GCP solution for myciel5.col</figDesc><graphic coords="5,54.00,439.92,237.36,245.28" type="bitmap" /></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_6"><head>Figure 6 :Figure 7 :</head><label>67</label><figDesc>Figure 6: GCP solution for games120.col</figDesc><graphic coords="5,318.72,54.72,237.12,246.24" type="bitmap" /></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" type="table" xml:id="tab_0"><head>•</head><label></label><figDesc>Map coloring (B. H. Gwee, M. H. Lim and J. S.</figDesc><table><row><cell>Ho 1993)</cell></row><row><cell>• Scheduling (Daniel Marx and D Aniel Marx 2004)</cell></row><row><cell>• Radio Frequency Assignment (W. K. Hale 1980;</cell></row><row><cell>S. Singha, T. Bhattacharya and S. R. B. Chaudhuri</cell></row><row><cell>2008)</cell></row><row><cell>• Register allocation (Wu Shengning and Li Sikun</cell></row><row><cell>2007)</cell></row><row><cell>• Pattern Matching</cell></row><row><cell>• Sudoku</cell></row></table></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" type="table" xml:id="tab_1"><head>Algorithm7: wisdomOfArtificialCrowds define: aggregateChromosome, newColor, expertChromosomes;</head><label></label><figDesc></figDesc><table><row><cell cols="2">expertChromosomes = best half of the final population;</cell></row><row><cell cols="2">aggregateChromosome = best performing chromosome;</cell></row><row><cell>for</cell><cell>each (vertex in graph) {</cell></row><row><cell cols="2">if (vertex is part of a bad edge) {</cell></row><row><cell></cell><cell>newColor = most used color for vertex among</cell></row><row><cell></cell><cell>expertChromosomes;</cell></row><row><cell></cell><cell>aggregateChromosome.setColor(vertex, newColor)</cell></row><row><cell>}</cell><cell></cell></row><row><cell>}</cell><cell></cell></row><row><cell></cell><cell>Data</cell></row><row><cell cols="2">Data used to test our approach are derived from the</cell></row><row><cell cols="2">DIMACS benchmarking graph collection. DIMACS is the</cell></row><row><cell cols="2">Center for Discrete Mathematics and Theoretical Computer</cell></row><row><cell cols="2">Science. It is part of Rutgers University (The State</cell></row><row><cell cols="2">University of New Jersey Rutgers, et al. 2011). The data</cell></row><row><cell cols="2">are frequently used in challenges involving constraint</cell></row><row><cell cols="2">satisfaction problems. The files used have a .col extension.</cell></row><row><cell cols="2">Each file contains a header with the number of vertices (p)</cell></row><row><cell cols="2">and the number of edges (e):</cell></row><row><cell cols="2">p edge 496 11654</cell></row></table></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" type="table" xml:id="tab_2"><head>Table 1 : Results of running the proposed algorithm on 16 .col files from the DIMACS collection</head><label>1</label><figDesc></figDesc><table><row><cell>File</cell><cell>|V|</cell><cell>|E|</cell><cell>Expected</cell><cell cols="2">k min HPGAGCP</cell><cell>Time</cell></row><row><cell></cell><cell></cell><cell></cell><cell>χ(G)</cell><cell></cell><cell>Result</cell><cell>(s)</cell></row><row><cell>myciel3.col</cell><cell>11</cell><cell>20</cell><cell>4</cell><cell>4</cell><cell>4</cell><cell>0.003</cell></row><row><cell>myciel4.col</cell><cell>23</cell><cell>71</cell><cell>5</cell><cell>5</cell><cell>5</cell><cell>0.006</cell></row><row><cell>queen5_5.col</cell><cell>23</cell><cell>160</cell><cell>5</cell><cell>5</cell><cell>5</cell><cell>0.031</cell></row><row><cell>queen6_6.col</cell><cell>25</cell><cell>290</cell><cell>7</cell><cell>7</cell><cell>8</cell><cell>6.100</cell></row><row><cell>myciel5.col</cell><cell>36</cell><cell>236</cell><cell>6</cell><cell>6</cell><cell>6</cell><cell>0.014</cell></row><row><cell>queen7_7.col</cell><cell>49</cell><cell>476</cell><cell>7</cell><cell>7</cell><cell>8</cell><cell>6.270</cell></row><row><cell>queen8_8.col</cell><cell>64</cell><cell>728</cell><cell>9</cell><cell>9</cell><cell>10</cell><cell>47.482</cell></row><row><cell>huck.col</cell><cell>74</cell><cell>301</cell><cell>11</cell><cell>11</cell><cell>11</cell><cell>0.015</cell></row><row><cell>jean.col</cell><cell>80</cell><cell>254</cell><cell>10</cell><cell>10</cell><cell>10</cell><cell>0.015</cell></row><row><cell>david.col</cell><cell>87</cell><cell>406</cell><cell>11</cell><cell>11</cell><cell>11</cell><cell>0.019</cell></row><row><cell>games120.col</cell><cell>120</cell><cell>638</cell><cell>9</cell><cell>9</cell><cell>9</cell><cell>0.027</cell></row><row><cell>miles250.col</cell><cell>128</cell><cell>387</cell><cell>8</cell><cell>8</cell><cell>8</cell><cell>0.076</cell></row><row><cell>miles1000.col</cell><cell>128</cell><cell>3216</cell><cell>42</cell><cell>42</cell><cell>42</cell><cell>48.559</cell></row><row><cell>anna.col</cell><cell>138</cell><cell>493</cell><cell>11</cell><cell>11</cell><cell>11</cell><cell>0.058</cell></row><row><cell>fpsol2.i.1.col</cell><cell>496</cell><cell>11654</cell><cell>65</cell><cell>65</cell><cell>65</cell><cell>22.656</cell></row><row><cell>homer.col</cell><cell>561</cell><cell>1629</cell><cell>13</cell><cell>13</cell><cell>13</cell><cell>0.760</cell></row></table></figure>
		</body>
		<back>
			<div type="references">

				<listBibl>

<biblStruct xml:id="b0">
	<analytic>
		<title level="a" type="main">An efficient hierarchical parallel genetic algorithm for graph coloring problem</title>
		<author>
			<persName><forename type="first">Reza</forename><surname>Abbasian</surname></persName>
		</author>
		<author>
			<persName><surname>Mouhoub</surname></persName>
		</author>
		<author>
			<persName><forename type="first">;</forename><surname>Malek</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Yen-Wei</forename></persName>
		</author>
		<author>
			<persName><forename type="first">Chen</forename></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Proceedings of The 13th annual conference on Genetic and evolutionary computation</title>
				<meeting>The 13th annual conference on Genetic and evolutionary computation<address><addrLine>Dublin, Ireland</addrLine></address></meeting>
		<imprint>
			<publisher>IEEE</publisher>
			<date type="published" when="1999">2011. 1999</date>
			<biblScope unit="page" from="527" to="532" />
		</imprint>
	</monogr>
	<note>Proceedings of The International Conference on Systems, Man, and Cybernetics</note>
</biblStruct>

<biblStruct xml:id="b1">
	<analytic>
		<title level="a" type="main">Genetic Algorithm and Wisdom of Artificial Crowds Algorithm Applied to Light Up</title>
		<author>
			<persName><forename type="first">Leif</forename><forename type="middle">H</forename><surname>Ashby</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Roman</forename><forename type="middle">V</forename><surname>Yampolskiy</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">The 16th International Conference on Computer Games: AI, Animation, Mobile, Interactive Multimedia, Educational &amp; Serious Games</title>
				<meeting><address><addrLine>Louisville, KY, USA</addrLine></address></meeting>
		<imprint>
			<date type="published" when="2011-07-27">2011. July 27 -30, 2011</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b2">
	<analytic>
		<title level="a" type="main">Evolutionary computation: comments on the history and current state</title>
		<author>
			<persName><forename type="first">T</forename><surname>Back</surname></persName>
		</author>
		<author>
			<persName><forename type="first">U</forename><surname>Hammel</surname></persName>
		</author>
		<author>
			<persName><forename type="first">H</forename><forename type="middle">P</forename><surname>Schwefel</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">IEEE Transactions on Evolutionary Computation</title>
		<imprint>
			<biblScope unit="volume">1</biblScope>
			<biblScope unit="page" from="3" to="17" />
			<date type="published" when="1997">1997</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b3">
	<analytic>
		<title level="a" type="main">A New Genetic Graph Coloring Heuristic</title>
		<author>
			<persName><forename type="first">Cornelius</forename><surname>Croitoru</surname></persName>
		</author>
		<author>
			<persName><surname>Luchian</surname></persName>
		</author>
		<author>
			<persName><surname>Henri</surname></persName>
		</author>
		<author>
			<persName><surname>Gheorghies</surname></persName>
		</author>
		<author>
			<persName><surname>Ovidiu</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Adriana</forename><surname>Apetrei</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Proceedings of The Computational Symposium on Graph Coloring and its Generalizations</title>
				<meeting>The Computational Symposium on Graph Coloring and its Generalizations<address><addrLine>Ithaca, New York, USA</addrLine></address></meeting>
		<imprint>
			<date type="published" when="2002">2002</date>
			<biblScope unit="page" from="63" to="74" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b4">
	<analytic>
		<title level="a" type="main">A Generalization of the Graph Coloring Problem</title>
		<author>
			<persName><forename type="first">Isabel</forename><surname>Díaz</surname></persName>
		</author>
		<author>
			<persName><surname>Méndez</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Paula</forename><surname>Zabala</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="s">Departamento de Computacion</title>
		<imprint>
			<date type="published" when="1999">1999</date>
		</imprint>
		<respStmt>
			<orgName>Universidad de Buenes Aires</orgName>
		</respStmt>
	</monogr>
</biblStruct>

<biblStruct xml:id="b5">
	<analytic>
		<title level="a" type="main">A Genetic Algorithm to Minimize Chromatic Entropy</title>
		<author>
			<persName><forename type="first">Greg</forename><surname>Durrett</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Muriel</forename><surname>Médard</surname></persName>
		</author>
		<author>
			<persName><forename type="first">O'</forename><surname>Reilly</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Una-May ; P</forename><surname>Cowling</surname></persName>
		</author>
		<author>
			<persName><forename type="first">P</forename><surname>Merz</surname></persName>
		</author>
		<author>
			<persName><forename type="first">;</forename><surname>Michalewicz</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Z</forename></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">IEEE Transactions on Evolutionary Computation</title>
		<imprint>
			<biblScope unit="volume">2</biblScope>
			<biblScope unit="page" from="124" to="141" />
			<date type="published" when="1999">2010. 1999</date>
		</imprint>
	</monogr>
	<note>Parameter control in evolutionary algorithms</note>
</biblStruct>

<biblStruct xml:id="b6">
	<analytic>
		<title level="a" type="main">Genetic algorithm for graph coloring: Exploration of Galinier and Hao&apos;s algorithm</title>
		<author>
			<persName><forename type="first">C</forename><forename type="middle">A</forename><surname>Glass</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Prugel-Bennett</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">Journal of Combinatorial Optimization</title>
		<imprint>
			<biblScope unit="volume">3</biblScope>
			<biblScope unit="page" from="229" to="236" />
			<date type="published" when="2003">2003</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b7">
	<analytic>
		<title level="a" type="main">Solving fourcolouring map problem using genetic algorithm</title>
		<author>
			<persName><forename type="first">B</forename><forename type="middle">H</forename><surname>Gwee</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><forename type="middle">H</forename><surname>Lim</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><forename type="middle">S</forename><surname>Ho</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Proceedings of First New Zealand International Two-Stream Conference on Artificial Neural Networks and Expert Systems</title>
				<meeting>First New Zealand International Two-Stream Conference on Artificial Neural Networks and Expert Systems</meeting>
		<imprint>
			<publisher>New Zealand Hale</publisher>
			<date type="published" when="1980">1993. 1980</date>
			<biblScope unit="volume">12</biblScope>
			<biblScope unit="page" from="1497" to="1514" />
		</imprint>
	</monogr>
	<note>Proceedings of the IEEE</note>
</biblStruct>

<biblStruct xml:id="b8">
	<analytic>
		<title level="a" type="main">A Novel Bi-objective Genetic Algorithm for the Graph Coloring Problem</title>
		<author>
			<persName><forename type="first">Lixia</forename><surname>Han</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Zhanli</forename><surname>Han</surname></persName>
		</author>
		<ptr target="http://jung.sourceforge.net/" />
	</analytic>
	<monogr>
		<title level="m">Graph Coloring Problems and Their Applications in Scheduling, John von Neumann PhD Students Conference</title>
				<meeting><address><addrLine>Sanya, China; Budapest, Hungary O&apos;Madadhain; Joshua, Fisher, Danyel, and Nelson, Tom</addrLine></address></meeting>
		<imprint>
			<date type="published" when="2004">2010. 2004. 2011. Oct. 1 2011</date>
			<biblScope unit="page" from="3" to="6" />
		</imprint>
	</monogr>
	<note>JUNG: Java Universal Network/Graph framework</note>
</biblStruct>

<biblStruct xml:id="b9">
	<analytic>
		<title level="a" type="main">An Approach for Reducing Crosstalk in Restricted Channel Routing Using Graph Coloring Problem and Genetic Algorithm</title>
		<author>
			<persName><forename type="first">Daniel</forename><surname>Porumbel</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Justine</forename><forename type="middle">W</forename><surname>Cosmin ; Shen</surname></persName>
		</author>
		<author>
			<persName><forename type="first">;</forename><surname>Stanford ; Wu</surname></persName>
		</author>
		<author>
			<persName><forename type="first">S</forename><forename type="middle">R</forename><surname>Chaudhuri</surname></persName>
		</author>
		<author>
			<persName><forename type="first">;</forename><surname>Patnaik</surname></persName>
		</author>
		<author>
			<persName><forename type="first">L</forename></persName>
		</author>
		<ptr target="http://dimacs.rutgers.edu/" />
	</analytic>
	<monogr>
		<title level="m">Proceedings of The International Conference on Computer and Electrical Engineering</title>
		<title level="s">Center for Discrete Mathematics and Theoretical Computer Science</title>
		<meeting>The International Conference on Computer and Electrical Engineering<address><addrLine>Haikou, Hainan</addrLine></address></meeting>
		<imprint>
			<date type="published" when="1994">2009. 2011. Nov. 1, 2011. 2003. 2007. 2008. 1994</date>
			<biblScope unit="volume">4</biblScope>
			<biblScope unit="page" from="656" to="667" />
		</imprint>
		<respStmt>
			<orgName>Département Informatique, Université d&apos;Angers Rutgers, The State University of New Jersey, Research, AT&amp;T Labs, Jersey, Cancer Institute of New, University, Princeton, Labs, Alcatel-Lucent Bell, America, NEC Laboratories, and Sciences, Applied Communication ; DIMACS) ; Bookstore Shengning</orgName>
		</respStmt>
	</monogr>
	<note type="report_type">Thesis Draft</note>
	<note>Adaptive probabilities of crossover and mutation in genetic algorithms</note>
</biblStruct>

<biblStruct xml:id="b10">
	<analytic>
		<title level="a" type="main">Distance based hybrid genetic algorithm: an application for the graph coloring problem</title>
		<author>
			<persName><forename type="first">K</forename><surname>Tagawa</surname></persName>
		</author>
		<author>
			<persName><forename type="first">K</forename><surname>Kanesige</surname></persName>
		</author>
		<author>
			<persName><forename type="first">K</forename><surname>Inoue</surname></persName>
		</author>
		<author>
			<persName><forename type="first">H</forename><surname>Haneda</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Proceedings of Congress on Evolutionary Computation</title>
				<meeting>Congress on Evolutionary Computation<address><addrLine>Washington DC Yampolskiy</addrLine></address></meeting>
		<imprint>
			<date type="published" when="1999">1999. 2011</date>
			<biblScope unit="volume">6</biblScope>
			<biblScope unit="page" from="358" to="369" />
		</imprint>
	</monogr>
	<note>Wisdom of Artificial Crowds Algorithm for Solving NP-Hard Problems</note>
</biblStruct>

<biblStruct xml:id="b11">
	<analytic>
		<title level="a" type="main">Wisdom of the Crowds in Minimum Spanning Tree Problems</title>
		<author>
			<persName><forename type="first">Sheng</forename><forename type="middle">Kung</forename><surname>Yi</surname></persName>
		</author>
		<author>
			<persName><surname>Michael</surname></persName>
		</author>
		<author>
			<persName><surname>Steyvers</surname></persName>
		</author>
		<author>
			<persName><surname>Mark</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Michael</forename><forename type="middle">D</forename><surname>Lee</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Matthew</forename><surname>Dry</surname></persName>
		</author>
		<ptr target="http://www.socsci.uci.edu/~mdlee/YiEtAl2010.pdf" />
	</analytic>
	<monogr>
		<title level="m">Proceedings of The 32nd Annual Conference of the Cognitive Science Society</title>
				<editor>
			<persName><forename type="first">Kung</forename><surname>Michael</surname></persName>
		</editor>
		<editor>
			<persName><surname>Steyvers</surname></persName>
		</editor>
		<editor>
			<persName><surname>Mark</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">Michael</forename><forename type="middle">D</forename><surname>Lee</surname></persName>
		</editor>
		<editor>
			<persName><surname>Dry</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">J</forename><surname>Matthew</surname></persName>
		</editor>
		<meeting>The 32nd Annual Conference of the Cognitive Science Society<address><addrLine>Portland</addrLine></address></meeting>
		<imprint>
			<date type="published" when="2010">2010a. 2010b</date>
		</imprint>
	</monogr>
	<note>Wisdom of the Crowds in Traveling Salesman Problems</note>
</biblStruct>

				</listBibl>
			</div>
		</back>
	</text>
</TEI>
