CycleCrossover.PerformCross Method

GeneticSharp

CycleCrossover PerformCross Method GeneticSharp
Performs the cross with specified parents generating the children.

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

Syntax

protected override IList<IChromosome> PerformCross(
	IList<IChromosome> parents
)
protected override IList<IChromosome> PerformCross(
	IList<IChromosome> parents
)

Parameters

parents
Type: OnlineSystem.Collections.Generic IList IChromosome 
Parents.

Return Value

Type: OnlineIList IChromosome 
The offspring (children) of the parents.
See Also