SharpNeat.View.Graph.IOGraph.IOGraph C# (CSharp) Метод

IOGraph() публичный Метод

Construct with the specified connection weight range. Weight range is used to determine each connection's strength relative to the overall range.
public IOGraph ( float connectionWeightRange ) : System.Collections.Generic
connectionWeightRange float
Результат System.Collections.Generic
        public IOGraph(float connectionWeightRange)
        {
            _inputNodeList = new List<GraphNode>();
            _outputNodeList = new List<GraphNode>();
            _hiddenNodeList = new List<GraphNode>();
            _connectionWeightRange = connectionWeightRange;
        }

Same methods

IOGraph::IOGraph ( int inputCount, int outputCount, int hiddenCount, float connectionWeightRange, int depth ) : System.Collections.Generic
IOGraph