ICrossover.Cross Method

GeneticSharp

ICrossover Cross Method GeneticSharp
Cross the specified parents generating the children.

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

Syntax

IList<IChromosome> Cross(
	IList<IChromosome> parents
)
IList<IChromosome> Cross(
	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