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

A simple cross over where genes are simply "spliced". Genes are allowed to repeat.
상속: 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 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