Пример #1
0
 public void AddEdge(IVertex newNeighbour, bool inMatching)
 {
     AddOutboundArc(newNeighbour, inMatching);
     newNeighbour.AddOutboundArc(this, inMatching);
 }