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