Skip to content

Commit

Permalink
Fix doc tests
Browse files Browse the repository at this point in the history
  • Loading branch information
IoannisPanagiotas committed Feb 12, 2024
1 parent 9ee71bb commit 2968680
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/modules/ROOT/pages/algorithms/dijkstra-source-target.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -266,8 +266,8 @@ ORDER BY index
[opts="header"]
|===
| index | sourceNodeName | targetNodeName | totalCost | nodeNames | costs | path
| 0 | "A" | "D" | 90.0 | [A, B, D] | [0.0, 50.0, 90.0] | [Node[0], Node[1], Node[3]]
| 1 | "A" | "F" | 160.0 | [A, B, D, E, F] | [0.0, 50.0, 90.0, 120.0, 160.0] | [Node[0], Node[1], Node[3], Node[4], Node[5]]
| 0 | "A" | "D" | 90.0 | ["A", "B", "D"] | [0.0, 50.0, 90.0] | [Node[0], Node[1], Node[3]]
| 1 | "A" | "F" | 160.0 | ["A", "B", "D", "E", "F"] | [0.0, 50.0, 90.0, 120.0, 160.0] | [Node[0], Node[1], Node[3], Node[4], Node[5]]
|===
--

Expand Down

0 comments on commit 2968680

Please sign in to comment.