Artificial Mind Help

Gene.CrossOver Method 

Crossover (recombines) two genes.

public abstract Gene CrossOver(
   Gene crossOverWith
);

Parameters

crossOverWith
The second parent.

Return Value

A child produced by crossover of two parents.

Remarks

Some algorithms mentioned that crossover operation returns two children. This is because crossover performed twice: Dad with Mom and Mom with Dad.

See Also

Gene Class | AnticipatingMinds.ArtificialMind.GeneticAlgorithms Namespace