C# Class Encog.Neural.NEAT.NEATLink

Mostrar archivo Open project: encog/encog-silverlight-core Class Usage Examples

Public Methods

Method Description
NEATLink ( ) : System

Default constructor, used mainly for persistance.

NEATLink ( double weight, NEATNeuron fromNeuron, NEATNeuron toNeuron, bool recurrent ) : System

Construct a NEAT link.

ToString ( ) : String

Method Details

NEATLink() public method

Default constructor, used mainly for persistance.
public NEATLink ( ) : System
return System

NEATLink() public method

Construct a NEAT link.
public NEATLink ( double weight, NEATNeuron fromNeuron, NEATNeuron toNeuron, bool recurrent ) : System
weight double The weight between the two neurons.
fromNeuron NEATNeuron The source neuron.
toNeuron NEATNeuron The target neuron.
recurrent bool Is this a recurrent link.
return System

ToString() public method

public ToString ( ) : String
return String