C# Class Encog.Neural.NEAT.NEATNeuron

Mostra file Open project: encog/encog-silverlight-core Class Usage Examples

Public Methods

Method Description
NEATNeuron ( ) : System

Default constructor, used for persistance.

NEATNeuron ( NEATNeuronType neuronType_0, long neuronID_1, double splitY_2, double splitX_3, double activationResponse_4 ) : System

Construct a NEAT neuron.

NeuronType2String ( NEATNeuronType t ) : String

Convert NEAT neuron type to string.

String2NeuronType ( String t ) : NEATNeuronType

Convert a string to a NEAT neuron type.

ToString ( ) : String

Method Details

NEATNeuron() public method

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

NEATNeuron() public method

Construct a NEAT neuron.
public NEATNeuron ( NEATNeuronType neuronType_0, long neuronID_1, double splitY_2, double splitX_3, double activationResponse_4 ) : System
neuronType_0 NEATNeuronType The type of neuron.
neuronID_1 long The id of the neuron.
splitY_2 double The split for y.
splitX_3 double THe split for x.
activationResponse_4 double The activation response.
return System

NeuronType2String() public static method

Convert NEAT neuron type to string.
public static NeuronType2String ( NEATNeuronType t ) : String
t NEATNeuronType The neuron type.
return String

String2NeuronType() public static method

Convert a string to a NEAT neuron type.
public static String2NeuronType ( String t ) : NEATNeuronType
t String The string.
return NEATNeuronType

ToString() public method

public ToString ( ) : String
return String