Esempio n. 1
0
 public void CreateDirectedEdge(int fromIndex, int toIndex, float weight = 1)
 {
     _adjacencyMatrix.AddDirectedEdge(fromIndex, toIndex, weight);
 }