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

Commit

Permalink
shortest paths now undirected (#710)
Browse files Browse the repository at this point in the history
* shortest paths now undirected

* david feedback
  • Loading branch information
mneedham authored Apr 2, 2019
1 parent 975c8ef commit c9574ab
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions doc/asciidoc/algorithms-path-finding.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,15 @@ The following path finding algorithms help find the shortest path or evaluate th
* <<algorithms-random-walk, Random Walk>> (`algo.randomWalk`)
// end::summary[]

[WARNING]
====
As of the 3.4.7.0 release, all the Shortest Path procedures assume that they are being executed on undirected graphs.
Therefore, the direction of a relationship can be ignored.
If you are running these algorithms on a graph where the direction is important, you can use the `direction` parameter.
For example, `direction:"INCOMING"` or `direction:"OUTGOING"`.
====

include::minimum-weight-spanning-tree.adoc[leveloffset=2]

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

0 comments on commit c9574ab

Please sign in to comment.