UniformCrossover Class

GeneticSharp

UniformCrossover Class GeneticSharp
The Uniform Crossover uses a fixed mixing ratio between two parents. Unlike one-point and two-point crossover, the Uniform Crossover enables the parent chromosomes to contribute the gene level rather than the segment level.
Remarks

If the mix probability 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. OnlineWikipedia
Inheritance Hierarchy

OnlineSystem Object  GeneticSharp.Domain.Crossovers CrossoverBase
    GeneticSharp.Domain.Crossovers UniformCrossover

Namespace: GeneticSharp.Domain.Crossovers
Assembly: GeneticSharp.Domain (in GeneticSharp.Domain.dll) Version: 1.0.5010.36434

Syntax

public class UniformCrossover : CrossoverBase
public class UniformCrossover : CrossoverBase
See Also