C# Class SharpNeat.Network.NetworkNode

Concrete implementation of an INetworkNode.
Inheritance: INetworkNode
显示文件 Open project: colgreen/sharpneat Class Usage Examples

Public Methods

Method Description
NetworkNode ( uint id, NodeType nodeType, int activationFnId )

Constructs with the provided node ID, type and activation function ID.

NetworkNode ( uint id, NodeType nodeType, int activationFnId, double auxState )

Constructs with the provided node ID, type, activation function ID and auxiliary state data.

Method Details

NetworkNode() public method

Constructs with the provided node ID, type and activation function ID.
public NetworkNode ( uint id, NodeType nodeType, int activationFnId )
id uint
nodeType NodeType
activationFnId int

NetworkNode() public method

Constructs with the provided node ID, type, activation function ID and auxiliary state data.
public NetworkNode ( uint id, NodeType nodeType, int activationFnId, double auxState )
id uint
nodeType NodeType
activationFnId int
auxState double