C# 클래스 Encog.Solve.Genetic.Genes.BasicGene

Implements the basic functionality for a gene. This is an abstract class.
상속: IGene
파일 보기 프로젝트 열기: encog/encog-silverlight-core

공개 메소드들

메소드 설명
BasicGene ( ) : System

Default constructor.

CompareTo ( IGene o ) : int

Compare to another gene, sort by innovation id's.

Copy ( IGene gene ) : void

Copy another gene to this one.

메소드 상세

BasicGene() 공개 메소드

Default constructor.
public BasicGene ( ) : System
리턴 System

CompareTo() 공개 메소드

Compare to another gene, sort by innovation id's.
public CompareTo ( IGene o ) : int
o IGene The other object to compare to.
리턴 int

Copy() 공개 추상적인 메소드

Copy another gene to this one.
public abstract Copy ( IGene gene ) : void
gene IGene The other gene to copy.
리턴 void