Ejemplo n.º 1
0
 public void AddEdge(GraphPoint point, int edgeWeight)
 {
     AddEdge(new GraphEdge(point, edgeWeight));
 }
Ejemplo n.º 2
0
 public GraphEdge(GraphPoint connectedPoint, int weight)
 {
     ConnectedPoint = connectedPoint;
     EdgeWeight     = weight;
 }