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

Method main

Programs/Floyd_Warshall_Algorithm.java:52–63  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

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}

Callers

nothing calls this directly

Calls 1

floydWarshallMethod · 0.95

Tested by

no test coverage detected