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