C# Class Encog.Neural.NEAT.Training.NEATLinkGene

Inheritance: Encog.ML.Genetic.Genes.BasicGene
Mostrar archivo Open project: encog/encog-silverlight-core Class Usage Examples

Public Methods

Method Description
Copy ( IGene gene ) : void

Copy from another gene.

NEATLinkGene ( ) : System

Default constructor, used mainly for persistence.

NEATLinkGene ( long fromNeuronID_0, long toNeuronID_1, bool enabled, long innovationID, double weight_2, bool recurrent_3 ) : System

Construct a NEAT link gene.

ToString ( ) : String

Method Details

Copy() public method

Copy from another gene.
public Copy ( IGene gene ) : void
gene IGene The other gene.
return void

NEATLinkGene() public method

Default constructor, used mainly for persistence.
public NEATLinkGene ( ) : System
return System

NEATLinkGene() public method

Construct a NEAT link gene.
public NEATLinkGene ( long fromNeuronID_0, long toNeuronID_1, bool enabled, long innovationID, double weight_2, bool recurrent_3 ) : System
fromNeuronID_0 long The source neuron.
toNeuronID_1 long The target neuron.
enabled bool Is this link enabled.
innovationID long The innovation id.
weight_2 double The weight.
recurrent_3 bool Is this a recurrent link?
return System

ToString() public method

public ToString ( ) : String
return String