Talk:Floyd–Warshall algorithm: Difference between revisions

Content deleted Content added
m Archiving 2 discussion(s) to Talk:Floyd–Warshall algorithm/Archive 1) (bot
Pseudocode error?
Line 10:
{{WikiProject Computer science|class=B|importance=high}}
{{archives}}
 
==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? ==