Encog.Neural.Networks.Structure.NeuralStructure.NeuralStructure C# (CSharp) Method

NeuralStructure() public method

Construct a structure object for the specified network.
public NeuralStructure ( BasicNetwork network ) : System
network BasicNetwork
return System
        public NeuralStructure(BasicNetwork network)
        {
            _layers = new List<ILayer>();
            _network = network;
        }