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