C# 클래스 Encog.ML.Genetic.Crossover.Splice

상속: ICrossover
파일 보기 프로젝트 열기: encog/encog-silverlight-core

공개 메소드들

메소드 설명
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