(String[] args)
| 66 | } |
| 67 | |
| 68 | public static void main(String[] args) throws java.lang.Exception { |
| 69 | int graph[][] = new int[][] { { 0, 8, 0, 0, 3, 0 }, { 0, 0, 9, 0, 0, 0 }, { 0, 0, 0, 0, 7, 2 }, |
| 70 | { 0, 0, 0, 0, 0, 5 }, { 0, 0, 7, 4, 0, 0 }, { 0, 0, 0, 0, 0, 0 } }; |
| 71 | FordFulkerson m = new FordFulkerson(); |
| 72 | |
| 73 | System.out.println("Max Flow: " + m.fordFulkerson(graph, 0, 5)); |
| 74 | |
| 75 | } |
| 76 | } |
nothing calls this directly
no test coverage detected