Esempio n. 1
0
 public static GraphProperties NondirectedGraph(string graphName)
 {
     graphProperties = new GraphProperties(graphName, false);
     return(graphProperties);
 }
Esempio n. 2
0
 public static GraphProperties DirectedGraph(string graphName)
 {
     graphProperties = new GraphProperties(graphName, true);
     return(graphProperties);
 }