Crossover (genetic algorithm)
Encyclopedia
In genetic algorithm
Genetic algorithm
A genetic algorithm is a search heuristic that mimics the process of natural evolution. This heuristic is routinely used to generate useful solutions to optimization and search problems...

s, crossover is a genetic operator
Genetic operator
A genetic operator is an operator used in genetic algorithms to maintain genetic diversity, known as Mutation and to combine existing solutions into others, Crossover...

 used to vary the programming of a chromosome or chromosomes
Chromosome (genetic algorithm)
In genetic algorithms, a chromosome is a set of parameters which define a proposed solution to the problem that the genetic algorithm is trying to solve...

 from one generation to the next. It is analogous to reproduction and biological crossover
Chromosomal crossover
Chromosomal crossover is an exchange of genetic material between homologous chromosomes. It is one of the final phases of genetic recombination, which occurs during prophase I of meiosis in a process called synapsis. Synapsis begins before the synaptonemal complex develops, and is not completed...

, upon which genetic algorithms are based. Cross over is a process of taking more than one parent solutions and producing a child solution from them.
There are methods for selection of the chromosomes.Those are also given below.

Methods of selection of chromosomes for crossover

  • Roulette wheel selection

It is also known as fitness proportionate selection.The individual is selected on the basis of fitness.The probability of an individual to be selected increases with the fitness of the individual greater or less than its competitor's fitness.
  • Boltzmann selection

  • Tournament selection

  • Rank selection

  • Steady state selection

Crossover techniques

Many crossover techniques exist for organisms which use different data structures to store themselves.

One-point crossover

A single crossover point on both parents' organism strings is selected. All data beyond that point in either organism string is swapped between the two parent organisms. The resulting organisms are the children:


Two-point crossover

Two-point crossover calls for two points to be selected on the parent organism strings. Everything between the two points is swapped between the parent organisms, rendering two child organisms:


"Cut and splice"

Another crossover variant, the "cut and splice" approach, results in a change in length of the children strings. The reason for this difference is that each parent string has a separate choice of crossover point.


Uniform Crossover and Half Uniform Crossover

The Uniform Crossover uses a fixed mixing ratio between two parents. Unlike one- and two-point crossover, the Uniform Crossover enables the parent chromosomes to contribute the gene level rather than the segment level.
If the mixing ratio is 0.5, the offspring has approximately half of the genes from first parent and the other half from second parent, although cross over points can be randomly chosen as seen below
The Uniform Crossover evaluates each bit in the parent strings for exchange with a probability of 0.5. Even though the uniform crossover is a poor method, empirical evidence suggest that it is a more exploratory approach to crossover than the traditional exploitative approach that maintains longer schemata. This results in a more complete search of the design space with maintaining the exchange of good information. Unfortunately, no satisfactory theory exists to explain the discrepancies between the Uniform Crossover and the traditional approaches.
In the uniform crossover scheme (UX) individual bits in the string are compared between two parents. The bits are swapped with a fixed probability, typically 0.2.

In the half uniform crossover scheme (HUX), exactly half of the nonmatching bits are swapped. Thus first the Hamming distance
Hamming distance
In information theory, the Hamming distance between two strings of equal length is the number of positions at which the corresponding symbols are different...

 (the number of differing bits) is calculated. This number is divided by two. The resulting number is how many of the bits that do not match between the two parents will be swapped.

Three parent crossover

In this technique,the child is derived from three parents.They are randomly chosen.Each bit of first parent is checked with bit of second parent whether they are same.If same then the bit is taken for the offspring otherwise the bit from the third parent is taken for the offspring.

parent1 1 1 0 1 0 0 0 1 0

parent2 0 1 1 0 0 1 0 0 1

parent3 1 1 0 1 1 0 1 0 1

offspring 1 1 0 1 0 0 0 0 1

Crossover for Ordered Chromosomes

Depending on how the chromosome represents the solution, a direct swap may not be possible.

One such case is when the chromosome is an ordered list, such as an ordered list of the cities to be travelled for the traveling salesman problem.
There are many crossover methods for ordered chromosomes. The already mentioned N-point crossover can be applied for ordered chromosomes also, but this always need a corresponding repair process, actually, some ordered crossover menthod are derived from the idea. However, sometimes a crossover of chromosomes produces recombinations which violate the constraint of ordering and thus need to be repaired. Several examples for crossover operators (also mutation operator) preserving a given order are given in :
  1. partially-matched crossover (PMX): In this method, two crossover points are selected at random and PMX proceeds by position wise exchanges.The two crossover points give matching selection.It affects cross by position-by-position exchange operations.In this method parents are mapped to each other hence we can also call it partially mapped crossover.
  2. cycle crossover (CX): Beginning at any gene in parent 1, the -th gene in parent 2 becomes replaced by it. The same is repeated for the displaced gene until the gene which is equal to the first inserted gene becomes replaced (cycle).
  3. order crossover operator (OX1): A portion of one parent is mapped to a portion of the other parent. From the replaced portion on, the rest is filled up by the remaining genes, where already present genes are omitted and the order is preserved.
  4. order-based crossover operator (OX2)
  5. position-based crossover operator (POS)
  6. voting recombination crossover operator (VR)
  7. alternating-position crossover operator (AP)
  8. sequential constrictive crossover operator (SCX)


Other possible methods include the edge recombination operator
Edge recombination operator
The edge recombination operator is an operator that creates a path that is similar to a set of existing paths by looking at the edges rather than the vertices...

 and partially mapped crossover.

Crossover biases

For crossover operators which exchange contiguous sections of the chromosomes (e.g. k-point) the ordering of the variables may become important. This is particularly true when good solutions contain building blocks which might be disrupted by a non-respectful crossover operator.

See also

  • Mutation (genetic algorithm)
    Mutation (genetic algorithm)
    In genetic algorithms of computing, mutation is a genetic operator used to maintain genetic diversity from one generation of a population of algorithm chromosomes to the next...

  • Chromosome (genetic algorithm)
    Chromosome (genetic algorithm)
    In genetic algorithms, a chromosome is a set of parameters which define a proposed solution to the problem that the genetic algorithm is trying to solve...

  • Fitness function
    Fitness function
    A fitness function is a particular type of objective function that is used to summarise, as a single figure of merit, how close a given design solution is to achieving the set aims....

  • Fitness approximation
    Fitness approximation
    In function optimization, fitness approximation is a method for decreasing the number of fitness function evaluations to reach a target solution...


External links

The source of this article is wikipedia, the free encyclopedia.  The text of this article is licensed under the GFDL.
 
x
OK