Example #1
0
 private void RunWithDefaultGraph()
 {
     graph.PopulateGraphWithDefaultValues();
     DataDisplay.PrintGraphOfNodes(graph);
     EvaluateRouteAndPrint();
 }
Example #2
0
 private void RunWithFileReadGraph()
 {
     ReadGraphFromFile();
     DataDisplay.PrintGraphOfNodes(graph);
     EvaluateRouteAndPrint();
 }