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

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

Constructs a connection between the specified source and target nodes and of the specified weight.
public GraphConnection ( GraphNode sourceNode, GraphNode targetNode, float weight )
sourceNode GraphNode
targetNode GraphNode
weight float
        public GraphConnection(GraphNode sourceNode, GraphNode targetNode, float weight) 
        {
            _sourceNode = sourceNode;
            _targetNode = targetNode;
            _weight = weight;
        }
GraphConnection