Skip to content
This repository was archived by the owner on Apr 22, 2020. It is now read-only.

Commit c9574ab

Browse files
authored
shortest paths now undirected (#710)
* shortest paths now undirected * david feedback
1 parent 975c8ef commit c9574ab

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

doc/asciidoc/algorithms-path-finding.adoc

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,15 @@ The following path finding algorithms help find the shortest path or evaluate th
2525
* <<algorithms-random-walk, Random Walk>> (`algo.randomWalk`)
2626
// end::summary[]
2727

28+
[WARNING]
29+
====
30+
As of the 3.4.7.0 release, all the Shortest Path procedures assume that they are being executed on undirected graphs.
31+
Therefore, the direction of a relationship can be ignored.
32+
33+
If you are running these algorithms on a graph where the direction is important, you can use the `direction` parameter.
34+
For example, `direction:"INCOMING"` or `direction:"OUTGOING"`.
35+
====
36+
2837
include::minimum-weight-spanning-tree.adoc[leveloffset=2]
2938

3039
include::shortest-path.adoc[leveloffset=2]

0 commit comments

Comments
 (0)