Esempio n. 1
0
 public void CreateUndirectedEdge(int v1, int v2, float weight = 1)
 {
     _adjacencyMatrix.AddUndirectedEdge(v1, v2, weight);
 }