C# Class Encog.Solve.Genetic.Genes.BasicGene

Implements the basic functionality for a gene. This is an abstract class.
Inheritance: IGene
Afficher le fichier Open project: encog/encog-silverlight-core

Méthodes publiques

Méthode Description
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.

Method Details

BasicGene() public méthode

Default constructor.
public BasicGene ( ) : System
Résultat System

CompareTo() public méthode

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

Copy() public abstract méthode

Copy another gene to this one.
public abstract Copy ( IGene gene ) : void
gene IGene The other gene to copy.
Résultat void