예제 #1
0
 public void AddEdge(GraphPoint point, int edgeWeight)
 {
     AddEdge(new GraphEdge(point, edgeWeight));
 }
예제 #2
0
 public GraphEdge(GraphPoint connectedPoint, int weight)
 {
     ConnectedPoint = connectedPoint;
     EdgeWeight     = weight;
 }