Пример #1
0
 public void RemoveEdge(Vertex firstVertex, Vertex secondVertex)
 {
     firstVertex.RemoveNeighbor(secondVertex);
     secondVertex.RemoveNeighbor(firstVertex);
 }