C# Class SharpNeat.Decoders.HyperNeat.SubstrateNodeSet

Represents a set of nodes on a substrate. Nodesets are used to represent sets such as the input and output nodes. Hidden nodes can be represented as layers with each layer being represented by a set. This allows connection mapping to be defined between sets.
Show file Open project: colgreen/sharpneat Class Usage Examples

Public Methods

Method Description
SubstrateNodeSet ( ) : System.Collections.Generic

Construct an empty nodeset. Node can be added after construction.

SubstrateNodeSet ( List nodePosList ) : System.Collections.Generic

Construct a nodeset with the provided list of nodes.

SubstrateNodeSet ( int capacity ) : System.Collections.Generic

Construct an empty nodeset with an initial capacity. Node can be added after construction.

Method Details

SubstrateNodeSet() public method

Construct an empty nodeset. Node can be added after construction.
public SubstrateNodeSet ( ) : System.Collections.Generic
return System.Collections.Generic

SubstrateNodeSet() public method

Construct a nodeset with the provided list of nodes.
public SubstrateNodeSet ( List nodePosList ) : System.Collections.Generic
nodePosList List
return System.Collections.Generic

SubstrateNodeSet() public method

Construct an empty nodeset with an initial capacity. Node can be added after construction.
public SubstrateNodeSet ( int capacity ) : System.Collections.Generic
capacity int
return System.Collections.Generic