Beispiel #1
0
 public Edge(Vertex from, Vertex to, int weight)
 {
     From   = from;
     To     = to;
     Weight = weight;
 }
Beispiel #2
0
 public Edge(Vertex from, Vertex to)
 {
     From = from;
     To   = to;
 }