Talk:Floyd–Warshall algorithm: Difference between revisions

Content deleted Content added
Pseudocode error?
Line 13:
==Is the main function correct? ==
Where it appears:
next[i][j] ← next[i][k]
 
Should it be?:
next[i][j] ← next[k][j] ?
 
==Is there a bug in the main loop? ==