C# Class SharpNeat.View.Graph.NetworkGraphFactory

A factory that creates IOGraph objects from INetworkDefinition(s).
Mostra file Open project: colgreen/sharpneat

Public Methods

Method Description
CreateGraph ( INetworkDefinition networkDef ) : IOGraph

Create an IOGraph that represents the structure described by the provided INetworkDefinition.

Protected Methods

Method Description
CreateGraphNodeAuxData ( INetworkNode node ) : object[]

Create auxiliary data for the specified INetworkNode. This version places the node activation function ID into element 0 of the aux data array.

Method Details

CreateGraph() public method

Create an IOGraph that represents the structure described by the provided INetworkDefinition.
public CreateGraph ( INetworkDefinition networkDef ) : IOGraph
networkDef INetworkDefinition
return IOGraph

CreateGraphNodeAuxData() protected method

Create auxiliary data for the specified INetworkNode. This version places the node activation function ID into element 0 of the aux data array.
protected CreateGraphNodeAuxData ( INetworkNode node ) : object[]
node INetworkNode
return object[]