C# Класс Encog.ML.Genetic.Crossover.Splice

Наследование: ICrossover
Показать файл Открыть проект

Открытые методы

Метод Описание
Mate ( Chromosome mother, Chromosome father, Chromosome offspring1, Chromosome offspring2 ) : void

Assuming this chromosome is the "mother" mate with the passed in "father".

Splice ( int theCutLength ) : Encog.ML.Genetic.Genome

Create a slice crossover with the specified cut length.

Описание методов

Mate() публичный Метод

Assuming this chromosome is the "mother" mate with the passed in "father".
public Mate ( Chromosome mother, Chromosome father, Chromosome offspring1, Chromosome offspring2 ) : void
mother Encog.ML.Genetic.Genome.Chromosome The mother.
father Encog.ML.Genetic.Genome.Chromosome The father.
offspring1 Encog.ML.Genetic.Genome.Chromosome Returns the first offspring
offspring2 Encog.ML.Genetic.Genome.Chromosome Returns the second offspring.
Результат void

Splice() публичный Метод

Create a slice crossover with the specified cut length.
public Splice ( int theCutLength ) : Encog.ML.Genetic.Genome
theCutLength int The cut length.
Результат Encog.ML.Genetic.Genome