(String a[])
| 8 | } |
| 9 | |
| 10 | public static void main(String a[]) |
| 11 | { |
| 12 | Graph g = createNewGraph(); |
| 13 | Node[] n = g.getNodes(); |
| 14 | Node start = n[3]; |
| 15 | Node end = n[5]; |
| 16 | System.out.println(search(g, start, end)); |
| 17 | } |
| 18 | |
| 19 | public static Graph createNewGraph() |
| 20 | { |
nothing calls this directly
no test coverage detected