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

A simple cross over where genes are simply "spliced". Genes are allowed to repeat.
Наследование: 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 cutLength ) : System

Construct a splice cross over object.

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

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.Solve.Genetic.Genome.Chromosome The mother.
father Encog.Solve.Genetic.Genome.Chromosome The father.
offspring1 Encog.Solve.Genetic.Genome.Chromosome The first offspring.
offspring2 Encog.Solve.Genetic.Genome.Chromosome The second offspring.
Результат void

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

Construct a splice cross over object.
public Splice ( int cutLength ) : System
cutLength int
Результат System