Open main menu
Home
Random
Recent changes
Special pages
Community portal
Preferences
About Wikipedia
Disclaimers
Incubator escapee wiki
Search
User menu
Talk
Dark mode
Contributions
Create account
Log in
Editing
Crossover (evolutionary algorithm)
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
{{short description|Operator used to vary the programming of chromosomes from one generation to the next}} {{Evolutionary algorithms}} '''Crossover''' in [[evolutionary algorithm]]s and [[evolutionary computation]], also called '''recombination''', is a [[genetic operator]] used to combine the [[chromosome (genetic algorithm)|genetic information]] of two parents to generate new offspring. It is one way to [[stochastic|stochastically]] generate new [[candidate solution|solutions]] from an existing population, and is analogous to the [[chromosomal crossover|crossover]] that happens during [[sexual reproduction]] in [[biology]]. New solutions can also be generated by [[cloning (programming)|cloning]] an existing solution, which is analogous to [[asexual reproduction]]. Newly generated solutions may be [[mutation (genetic algorithm)|mutated]] before being added to the population. The aim of recombination is to transfer good characteristics from two different parents to one child. Different algorithms in evolutionary computation may use different data structures to store genetic information, and each [[genetic representation]] can be recombined with different crossover operators. Typical [[data structure|data structures]] that can be recombined with crossover are [[bit array|bit arrays]], vectors of real numbers, or [[tree (data structure)|trees]]. The list of operators presented below is by no means complete and serves mainly as an exemplary illustration of this dyadic [[genetic operator]] type. More operators and more details can be found in the literature.<ref name=":0">{{Cite book |title=Handbook of genetic algorithms |date=1991 |publisher=Van Nostrand Reinhold |last=Davis |first=Lawrence |isbn=0-442-00173-8 |location=New York |oclc=23081440}}</ref><ref name=":1">{{Cite book |last1=Eiben |first1=A.E. |url=http://link.springer.com/10.1007/978-3-662-44874-8 |title=Introduction to Evolutionary Computing |last2=Smith |first2=J.E. |date=2015 |publisher=Springer |isbn=978-3-662-44873-1 |edition=2nd |series=Natural Computing Series |location=Berlin, Heidelberg |pages=49–78 |language=en |chapter=Representation, Mutation, and Recombination |doi=10.1007/978-3-662-44874-8 |s2cid=20912932}}</ref><ref>{{Cite book |last1=Yu |first1=Xinjie |url=https://www.worldcat.org/oclc/654380156 |title=Introduction to evolutionary algorithms |last2=Gen |first2=Mitsuo |date=2010 |publisher=Springer |isbn=978-1-84996-129-5 |series=Decision Engineering |location=London |pages=40–63 |language=en |chapter=Encoding and Operators |doi=10.1007/978-1-84996-129-5 |oclc=654380156}}</ref><ref>{{Cite book |last1=Yu |first1=Xinjie |url=http://link.springer.com/10.1007/978-1-84996-129-5 |title=Introduction to Evolutionary Algorithms |last2=Gen |first2=Mitsuo |date=2010 |publisher=Springer |isbn=978-1-84996-128-8 |series=Decision Engineering |volume= |location=London |pages=285–299 |chapter=Variation Operators for Permutation Code |doi=10.1007/978-1-84996-129-5}}</ref><ref name=":5">{{Cite book |last1=Booker |first1=Lashon B. |url=https://www.worldcat.org/oclc/45730387 |title=Evolutionary computation. Vol. 1, Basic algorithms and operators |last2=Fogel |first2=David B. |last3=Whitley |first3=Darrell |last4=Angeline |first4=Peter J. |last5=Eiben |first5=A.E. |date=2000 |publisher=Institute of Physics Pub |isbn=0-585-30560-9 |editor-last=Bäck |editor-first=Thomas |location=Bristol |pages=256–307 |language=en |chapter=Recombination |oclc=45730387 |editor-last2=Fogel |editor-first2=David B. |editor-last3=Michalewicz |editor-first3=Zbigniew}}</ref> ==Crossover for binary arrays== Traditional genetic algorithms store genetic information in a [[chromosome (genetic algorithm)|chromosome]] represented by a [[bit array]]. Crossover methods for bit arrays are popular and an illustrative example of [[genetic recombination]]. ===One-point crossover=== A point on both parents' chromosomes is picked randomly, and designated a 'crossover point'. Bits to the right of that point are swapped between the two parent chromosomes. This results in two offspring, each carrying some genetic information from both parents. [[File:OnePointCrossover.svg]] ===Two-point and k-point crossover=== In two-point crossover, two crossover points are picked randomly from the parent chromosomes. The bits in between the two points are swapped between the parent organisms. [[File:TwoPointCrossover.svg|TwoPointCrossover.svg]] Two-point crossover is equivalent to performing two single-point crossovers with different crossover points. This strategy can be generalized to k-point crossover for any positive integer k, picking k crossover points. === Uniform crossover=== In uniform crossover, typically, each bit is chosen from either parent with equal probability.<ref>{{Citation |last=Syswerda |first=Gilbert |title=Uniform crossover in genetic algorithms |date=1989 |work=Proceedings of the 3rd International Conference on Genetic Algorithms (ICGA) |pages=2–9 |editor-last=Schaffer |editor-first=J.D. |place=San Francisco |publisher=Morgan Kaufmann |isbn=1558600663 }}</ref> Other mixing ratios are sometimes used, resulting in offspring which inherit more genetic information from one parent than the other. In a uniform crossover, we don’t divide the chromosome into segments, rather we treat each gene separately. In this, we essentially flip a coin for each chromosome to decide whether or not it will be included in the off-spring. ==Crossover for integer or real-valued genomes== [[File:Discrete Recombination-3Dim.png|thumb|242x242px|Example of a discrete recombination in the three-dimensional case. The two possible offspring lie on the corners of the cuboid marked in blue.]] For the crossover operators presented above and for most other crossover operators for bit strings, it holds that they can also be applied accordingly to integer or real-valued genomes whose genes each consist of an integer or real-valued number. Instead of individual bits, integer or real-valued numbers are then simply copied into the child genome. The offspring lie on the remaining corners of the hyperbody spanned by the two parents <math>P_1=(1.5, 6, 8)</math> and <math>P_2=(7, 2, 1)</math>, as exemplified in the accompanying image for the three-dimensional case. === Discrete recombination === If the rules of the uniform crossover for bit strings are applied during the generation of the offspring, this is also called ''discrete recombination''.<ref name=":6">{{Cite book |last1=Eiben |first1=A.E. |url=http://link.springer.com/10.1007/978-3-662-44874-8 |title=Introduction to Evolutionary Computing |last2=Smith |first2=J.E. |date=2015 |publisher=Springer |isbn=978-3-662-44873-1 |edition=2nd |series=Natural Computing Series |location=Berlin, Heidelberg |pages=65–67 |chapter=Recombination Operators for Real-Valued Representation |doi=10.1007/978-3-662-44874-8 |s2cid=20912932}}</ref> === Intermediate recombination === [[File:Intermediate Recombination.png|thumb|242x242px|In the two-dimensional case, the two offspring of discrete recombination lie on the corners marked in blue, while the entire gray area is in question for the offspring of intermediate recombination.]] In this recombination operator, the allele values of the child genome <math>a_i</math> are generated by mixing the alleles of the two parent genomes <math>a_{i,P_1}</math> and <math>a_{i,P_2}</math>:<ref name=":6" /><ref>{{Cite book |last1=Yu |first1=Xinjie |title=Introduction to Evolutionary Algorithms |last2=Gen |first2=Mitsuo |date=2010 |publisher=Springer |isbn=978-1-84996-128-8 |series=Decision Engineering |volume= |location=London |pages=45–63 |language=en |chapter=Real Code and Related Operators |doi=10.1007/978-1-84996-129-5}}</ref> :<math>\alpha_i = \alpha_{i,P_1}\cdot\beta_i + \alpha_{i,P_2}\cdot\left (1 - \beta_i\right) \quad \mathsf{with} \quad \beta_i \in \left [ -d, 1+d \right ]</math> randomly equally distributed per gene <math>i</math> The choice of the interval <math>[-d, 1+d]</math> causes that besides the interior of the hyperbody spanned by the allele values of the parent genes additionally a certain environment for the range of values of the offspring is in question. A value of <math>0.25</math> is recommended for <math>d</math> to counteract the tendency to reduce the allele values that otherwise exists at <math>d=0</math>.<ref>{{Cite journal |last1=Mühlenbein |first1=Heinz |last2=Schlierkamp-Voosen |first2=Dirk |date=1993 |title=Predictive Models for the Breeder Genetic Algorithm I. Continuous Parameter Optimization |url=https://direct.mit.edu/evco/article/1/1/25-49/1093 |journal=Evolutionary Computation |language=en |volume=1 |issue=1 |pages=25–49 |doi=10.1162/evco.1993.1.1.25 |s2cid=16085506 |issn=1063-6560|url-access=subscription }}</ref> The adjacent figure shows for the two-dimensional case the range of possible new alleles of the two exemplary parents <math>P_1=(3,6)</math> and <math>P_2=(9,2)</math> in intermediate recombination. The offspring of discrete recombination <math>C_1</math> and <math>C_2</math> are also plotted. Intermediate recombination satisfies the arithmetic calculation of the allele values of the child genome required by virtual alphabet theory.<ref>{{Cite journal |last=Goldberg |first=David E. |date=1991 |title=Real-coded Genetic Algorithms, Virtual Alphabets, and Blocking |url=https://www.complex-systems.com/abstracts/v05_i02_a02/ |journal=Complex Syst. |volume=5 |issue=2 |pages=139–167}}</ref><ref>{{Cite book |last1=Stender |first1=J. |url= |title=Genetic algorithms in optimisation, simulation, and modelling |last2=Hillebrand |first2=E. |last3=Kingdon |first3=J. |date=1994 |publisher=IOS Press |isbn=90-5199-180-0 |location=Amsterdam |language=en |oclc=47216370}}</ref> Discrete and intermediate recombination are used as a standard in the [[evolution strategy]].<ref>{{Cite book |last=Schwefel |first=Hans-Paul |url=https://ls11-www.cs.tu-dortmund.de/lehre/wiley/ |title=Evolution and optimum seeking |date=1995 |publisher=Wiley |isbn=0-471-57148-2 |location=New York |language=en |oclc=30701094}}</ref> == Crossover for permutations == For [[Combinatorial optimization|combinatorial tasks]], [[permutation]]s are usually used that are specifically designed for genomes that are themselves permutations of a [[Set (mathematics)|set]]. The underlying set is usually a subset of <math>\mathbb{N}</math> or <math>\mathbb{N}_0</math>. If 1- or n-point or uniform crossover for integer genomes is used for such genomes, a child genome may contain some values twice and others may be missing. This can be remedied by ''[[Genotypic and phenotypic repair|genetic repair]]'', e.g. by replacing the redundant genes in positional fidelity for missing ones from the other child genome. In order to avoid the generation of invalid offspring, special crossover operators for permutations have been developed<ref name=":2">{{Cite journal |last1=Larrañaga |first1=P. |last2=Kuijpers |first2=C.M.H. |last3=Murga |first3=R.H. |last4=Inza |first4=I. |last5=Dizdarevic |first5=S. |date=1999 |title=Genetic Algorithms for the Travelling Salesman Problem: A Review of Representations and Operators |url=http://link.springer.com/10.1023/A:1006529012972 |journal=Artificial Intelligence Review |volume=13 |issue=2 |pages=129–170 |doi=10.1023/A:1006529012972|s2cid=10284682 |url-access=subscription }}</ref> which fulfill the basic requirements of such operators for permutations, namely that all elements of the initial permutation are also present in the new one and only the order is changed. It can be distinguished between combinatorial tasks, where all sequences are admissible, and those where there are constraints in the form of inadmissible partial sequences. A well-known representative of the first task type is the [[Travelling salesman problem|traveling salesman problem]] (TSP), where the goal is to visit a set of cities exactly once on the shortest tour. An example of the constrained task type is the [[Schedule|scheduling]] of multiple [[Workflow|workflows]]. Workflows involve sequence constraints on some of the individual work steps. For example, a thread cannot be cut until the corresponding hole has been drilled in a workpiece. Such problems are also called ''order-based permutations''. In the following, two crossover operators are presented as examples, the partially mapped crossover (PMX) motivated by the TSP and the order crossover (OX1) designed for order-based permutations. A second offspring can be produced in each case by exchanging the parent chromosomes. === Partially mapped crossover (PMX) === The PMX operator was designed as a recombination operator for TSP like Problems.<ref>{{Citation |last1=Goldberg |first1=David E. |last2=Lingle |first2=R. |title=Alleles, loci, and the traveling salesman problem |work=Proceedings of the First International Conference on Genetic Algorithms and Their Applications (ICGA) |date=1985 |publisher=Lawrence Erlbaum Associates |editor-last=Grefenstette |editor-first=John J. |isbn=0-8058-0426-9 |location=Hillsdale, N.J. |pages=154–159 |language=en |oclc=19702892}}</ref><ref name=":3">{{Cite book |last1=Eiben |first1=A.E. |url=http://link.springer.com/10.1007/978-3-662-44874-8 |title=Introduction to Evolutionary Computing |last2=Smith |first2=J.E. |date=2015 |publisher=Springer |isbn=978-3-662-44873-1 |edition=2nd |series=Natural Computing Series |location=Berlin, Heidelberg |pages=70–74 |language=en |chapter=Recombination for Permutation Representation |doi=10.1007/978-3-662-44874-8 |s2cid=20912932}}</ref> The explanation of the procedure is illustrated by an example: {| |- | '''Procedure''' | | '''''Example''''' | | '''''Example Chromosome''''' |- | colspan=5 | <hr style="background-color:black; height:2px;"> |- style="vertical-align: top; " | | | ''Let be given two permutations of the same set.'' | | <math>P_0 = \left( A,B,C,D,E,F,G,H \right)</math> and <math>P_1 = \left( C,G,E,A,F,H,B,D \right)</math> |- | colspan=5 | <hr style="background-color:gray;"> |- style="vertical-align: top; " | Randomly select two crossover points forming a gene segment in <math>P_0</math>. | | ''Here from gene position 4 to 6.'' | | style="vertical-align: middle;" | <math>P_0 = \left( A,B,C,\underline {D,E,F},G,H \right)</math> |- | colspan=5 | <hr style="background-color:gray;"> |- style="vertical-align: top;" | The selected section is copied to the child chromosome in the same position. | | ''The open positions are indicated by question marks.'' | | style="vertical-align: middle;" | <math>P_C = \left( ?,?,?,\underline {D,E,F},?,? \right)</math> |- | colspan=5 | <hr style="background-color:gray;"> |- style="vertical-align: top;" | rowspan=2 | Look for genes that have not been copied in the corresponding segment of <math>P_1</math> starting at the first crossover point. For each gene found (called <math>m</math>), look up in the offspring which element (called <math>n</math>) was copied in its place from <math>P_0</math>. Copy <math>m</math> to the position held by <math>n</math> in <math>P_1</math> if it is not occupied. Otherwise, continue with the next step. | | ''Gene <math>A</math> is the first uncopied gene in the corresponding segment of <math>P_1</math>: <math>\left(..., A,F,H,... \right)</math>. Gene <math>D</math> was copied from <math>P_0</math> in its place in <math>P_C</math>.'' | | style="vertical-align: middle;" | <math>P_C = \left( ?,?,?,\underline {\bold{D},E,F},?,? \right)</math> |- style="vertical-align: top;" | | ''The position of <math>D</math> in <math>P_1</math> is the furthest right position and <math>A</math> will be placed there in <math>P_C</math>.'' | | style="vertical-align: middle;" | <math>P_C = \left( ?,?,?,\underline {D,E,F},?,A \right)</math> |- | colspan=5 | <hr style="background-color:gray;"> |- style="vertical-align: top; " | If the place taken by <math>n</math> in <math>P_1</math> is already occupied by an element <math>k</math> in the descendant, <math>m</math> is put in the place taken by <math>k</math> in <math>P_1</math>. | | ''The next gene in <math>\left(..., A,F,H,... \right)</math> is <math>F</math> and this has already been copied into the child chromosome. Thus, the next gene to be handled is <math>H</math>. Its position in the offspring would be the position of <math>F</math> in <math>P_1</math>. However, this place is already occupied by gene <math>E</math>. So <math>H</math> is copied to the position of <math>E</math> in <math>P_1</math>.'' | | style="vertical-align: middle;" | <math>P_C = \left( ?,?,H,\underline {D,E,F},?,A \right)</math> |- | colspan=5 | <hr style="background-color:gray;"> |- style="vertical-align: top; " | After processing the genes from the selected segment in <math>P_1</math>, the remaining positions in the offspring are filled with the genes from <math>P_1</math> that have not yet been copied, in the order of their appearance. This results in the finished child genome. | | ''The genes copied from <math>P_1</math> are <math>C, G</math> and <math>B</math>.'' | |style="vertical-align: top;" | <math>P_C = \left( C,G,H,\underline {D,E,F},B,A \right)</math> |- | colspan=5 | <hr style="background-color:gray;"> |} === Order crossover (OX1) === The order crossover goes back to Davis<ref name=":0" /> in its original form and is presented here in a slightly generalized version with more than two crossover points. It transfers information about the relative order from the second parent to the offspring. First, the number and position of the crossover points are determined randomly. The resulting gene sequences are then processed as described below: {| |- | '''Procedure''' | | '''''Example''''' | | '''''Example Chromosome''''' |- | colspan=5 | <hr style="background-color:black; height:2px;"> |- style="vertical-align: top; " | style="width:38%;" | | style="width:1%;" | | style="width:30%;" | ''Let be given two permutations of the same set.'' | style="width:1%;" | | style="width:30%;" | <math>P_0 = \left( A,B,C,D,E,F,G,H,I,J \right)</math> and <math>P_1 = \left( B,D,A,H,J,C,E,G,F,I \right)</math> |- | colspan=5 | <hr style="background-color:gray;"> |- style="vertical-align: top; " | Randomly select gene segments in <math>P_0</math>. | | ''Here two segments from gene position 1 to 2 and from 6 to 8.'' | | style="vertical-align: middle;" | <math>P_0 = \left( \underline {A,B},C,D,E,\underline {F,G,H},I,J \right)</math> |- | colspan=5 | <hr style="background-color:gray;"> |- style="vertical-align: top;" | As a child permutation, a permutation is generated that contains the selected gene segments of <math>P_0</math> in the same position. | | ''The open positions are indicated by question marks.'' | | style="vertical-align: middle;" | <math>P_C = \left( A,B,?,?,?,F,G,H,?,? \right)</math> |- | colspan=5 | <hr style="background-color:gray;"> |- style="vertical-align: top;" | The remaining missing genes are now also transferred, but in the order in which they appear in <math>P_1</math>. | | ''The missing genes of <math>P_0</math> in the example are:'' | | <math>P_\text{missing} = \left\{ C,D,E,I,J \right\}</math> <math>P_{\text{in order from } P_1} = \left( D,J,C,E,I \right)</math> |- | colspan=5 | <hr style="background-color:gray;"> |- style="vertical-align: top;" | This results in the completed child genome. | | ''The transferred genes are underlined:'' | | <math>P_C = \left( A,B,\underline {D,J,C},F,G,H,\underline {E,I} \right)</math> |- | colspan=5 | <hr style="background-color:gray;"> |} Among other things, order crossover is well suited for scheduling multiple workflows, when used in conjunction with 1- and n-point crossover.<ref>{{Citation |last1=Jakob |first1=Wilfried |title=Fast Multi-objective Scheduling of Jobs to Constrained Resources Using a Hybrid Evolutionary Algorithm |date=2008 |url=http://link.springer.com/10.1007/978-3-540-87700-4_102 |work=Parallel Problem Solving from Nature – PPSN X |volume=LNCS 5199 |pages=1031–1040 |editor-last=Rudolph |editor-first=Günter |place=Berlin, Heidelberg |publisher=Springer |doi=10.1007/978-3-540-87700-4_102 |isbn=978-3-540-87699-1 |access-date=2023-01-14 |last2=Quinte |first2=Alexander |last3=Stucky |first3=Karl-Uwe |last4=Süß |first4=Wolfgang |editor2-last=Jansen |editor2-first=Thomas |editor3-last=Beume |editor3-first=Nicola |editor4-last=Lucas |editor4-first=Simon|url-access=subscription }}</ref> === Further crossover operators for permutations === Over time, a large number of crossover operators for permutations have been proposed, so the following list is only a small selection. For more information, the reader is referred to the literature.<ref name=":0" /><ref name=":5" /><ref name=":3" /><ref name=":2" /> # cycle crossover (CX)<ref>{{Citation |last1=Oliver |first1=I.M. |last2=Smith |first2=D.J. |last3=Holland |first3=J. |title=A study of permutation crossover operators on the travelling salesman problem |work=Proceedings of the Second International Conference on Genetic Algorithms and Their Applications (ICGA) |date=1987 |publisher=Lawrence Erlbaum Associates |editor-last=Grefenstette |editor-first=John J. |isbn=978-0-8058-0158-3 |location=Hillsdale, N.J. |pages=224–230 |language=en }}</ref><ref name=":3" /> # order-based crossover (OX2)<ref name=":5" /><ref name=":4">{{Cite book |last=Syswerda |first=Gilbert |title=Handbook of genetic algorithms |date=1991 |publisher=Van Nostrand Reinhold |isbn=0-442-00173-8 |editor-last=Davis |editor-first=Lawrence |location=New York |pages=332–349 |language=en |chapter=Schedule Optimization Using Genetic Algorithms |oclc=23081440 }}</ref> # position-based crossover (POS)<ref name=":5" /><ref name=":4" /> # edge recombination<ref>{{Citation |last1=Whitley |first1=Darrell |last2=Starkweather |first2=Timothy |last3=Fuquay |first3=D'Ann |title=Scheduling Problems and Traveling Salesmen: The Genetic Edge Recombination Operator |date=1989 |work=Proceedings of the 3rd International Conference on Genetic Algorithms (ICGA) |pages=133–140 |editor-last=Schaffer |editor-first=J.D. |place=San Francisco |publisher=Morgan Kaufmann |isbn=1558600663 }}</ref><ref name=":3" /> # voting recombination (VR)<ref name=":2" /> # alternating-positions crossover (AP)<ref name=":2" /> # maximal preservative crossover (MPX)<ref name=":5" /><ref>{{Citation |last1=Dzubera |first1=John |title=Advanced correlation analysis of operators for the traveling salesman problem |date=1994 |url=http://link.springer.com/10.1007/3-540-58484-6_251 |work=Parallel Problem Solving from Nature — PPSN III |volume=866 |pages=68–77 |editor-last=Davidor |editor-first=Yuval |place=Berlin, Heidelberg |publisher=Springer |doi=10.1007/3-540-58484-6_251 |isbn=978-3-540-58484-1 |access-date=2023-01-15 |last2=Whitley |first2=Darrell |editor2-last=Schwefel |editor2-first=Hans-Paul |editor3-last=Männer |editor3-first=Reinhard|url-access=subscription }}</ref> # merge crossover (MX)<ref name=":5" /><ref>{{Citation |last1=Blanton |first1=Joe L. |last2=Wainwright |first2=Roger L. |title=Multiple Vehicle Routing with Time and Capacity Constraints Using Genetic Algorithms |date=1993 |work=Proceedings of the 5th International Conference on Genetic Algorithms (ICGA) |pages=452–459 |editor-last=Forrest |editor-first=Stephanie |place=San Francisco |publisher=Morgan Kaufmann |isbn=978-1-55860-299-1 }}</ref> # sequential constructive crossover operator (SCX)<ref>{{cite thesis |last=Ahmed |first=Zakir Hussain |date=2000 |title=Sequential Constructive Sampling and Related approaches to Combinatorial Optimization |type=PhD |publisher=Tezpur University, India }}</ref> The usual approach to solving TSP-like problems by genetic or, more generally, evolutionary algorithms, presented earlier, is either to [[Genotypic and phenotypic repair|repair]] illegal descendants or to adjust the operators appropriately so that illegal offspring do not arise in the first place. Alternatively, Riazi suggests the use of a double chromosome representation, which avoids illegal offspring.<ref>{{cite journal |last1=Riazi |first1=Amin |title=Genetic algorithm and a double-chromosome implementation to the traveling salesman problem |journal=SN Applied Sciences |date=14 October 2019 |volume=1 |issue=11 |doi=10.1007/s42452-019-1469-1|doi-access= }}</ref> == See also == * [[Evolutionary algorithm]] * [[Genetic representation]] * [[Fitness function]] * [[Selection (genetic algorithm)]] ==Bibliography== * John Holland (1975). ''Adaptation in Natural and Artificial Systems'', PhD thesis, [[University of Michigan Press]], Ann Arbor, Michigan. {{ISBN|0-262-58111-6}}. * {{Cite book |last=Schwefel |first=Hans-Paul |title=Evolution and Optimum Seeking |publisher=John Wiley & Sons |year=1995 |isbn=0-471-57148-2 |location=New York |language=en |url=https://www.researchgate.net/publication/220690578}} * {{Cite book |last=Davis |first=Lawrence |title=Handbook of genetic algorithms |date=1991 |publisher=Van Nostrand Reinhold |isbn=0-442-00173-8 |location=New York |oclc=23081440}} * {{Cite book |last1=Eiben |first1=A.E. |url=https://link.springer.com/10.1007/978-3-662-44874-8 |title=Introduction to Evolutionary Computing |last2=Smith |first2=J.E. |date=2015 |publisher=Springer |isbn=978-3-662-44873-1 |series=Natural Computing Series |location=Berlin, Heidelberg |language=en |doi=10.1007/978-3-662-44874-8|s2cid=20912932 }} * {{Cite book |last1=Yu |first1=Xinjie |url=http://link.springer.com/10.1007/978-1-84996-129-5 |title=Introduction to Evolutionary Algorithms |last2=Gen |first2=Mitsuo |date=2010 |publisher=Springer |isbn=978-1-84996-128-8 |series=Decision Engineering |volume= |location=London |language=en |doi=10.1007/978-1-84996-129-5}} * {{Cite book |title=Evolutionary computation. Vol. 1, Basic algorithms and operators |date=1999 |publisher=Institute of Physics Pub |isbn=0-585-30560-9 |editor-last2=Fogel |editor-first2=David B. |location=Bristol |url=https://www.worldcat.org/oclc/45730387 |oclc=45730387 |editor-last=Bäck |editor-first=Thomas |editor-last3=Michalewicz |editor-first3=Zbigniew}} == References == <references /> == External links == * [http://www.faqs.org/faqs/ai-faq/genetic/part2/ Newsgroup: comp.ai.genetic FAQ] - see section on crossover (also known as recombination). {{Evolutionary computation}} {{DEFAULTSORT:Crossover (Genetic Algorithm)}} [[Category:Evolutionary algorithms|+]]
Edit summary
(Briefly describe your changes)
By publishing changes, you agree to the
Terms of Use
, and you irrevocably agree to release your contribution under the
CC BY-SA 4.0 License
and the
GFDL
. You agree that a hyperlink or URL is sufficient attribution under the Creative Commons license.
Cancel
Editing help
(opens in new window)
Pages transcluded onto the current version of this page
(
help
)
:
Template:Citation
(
edit
)
Template:Cite book
(
edit
)
Template:Cite journal
(
edit
)
Template:Cite thesis
(
edit
)
Template:Evolutionary algorithms
(
edit
)
Template:Evolutionary computation
(
edit
)
Template:ISBN
(
edit
)
Template:Short description
(
edit
)