MCPcopy Create free account
hub / github.com/PrajaktaSathe/Java / main

Method main

Programs/FordFulkerson.java:68–75  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

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}

Callers

nothing calls this directly

Calls 1

fordFulkersonMethod · 0.95

Tested by

no test coverage detected