(String[] args)
| 50 | } |
| 51 | |
| 52 | public static void main (String[] args) |
| 53 | { |
| 54 | |
| 55 | int graph[][] = { {0, 5, INF, 10}, |
| 56 | {INF, 0, 3, INF}, |
| 57 | {INF, INF, 0, 1}, |
| 58 | {INF, INF, INF, 0} |
| 59 | }; |
| 60 | AllPairShortestPath a = new AllPairShortestPath(); |
| 61 | |
| 62 | a.floydWarshall(graph); |
| 63 | } |
| 64 | } |
nothing calls this directly
no test coverage detected