Exemplo n.º 1
0
 public void Add(int from, int to) => edgeContainer.Add(from, new GraphEdge(to));
Exemplo n.º 2
0
 public void Add(int from, int to, T value, S data) => edgeContainer.Add(from, new WEdge <T, S>(to, value, data));
 public void Add(int from, int to, T value) => edgeContainer.Add(from, new WEdge <T>(to, value));
Exemplo n.º 4
0
 public void Add(int from, int to, T data) => edgeContainer.Add(from, new GraphEdge <T>(to, data));