Skip to content

Commit

Permalink
release/v20.03 K shortest paths queries fix and documentation update (#…
Browse files Browse the repository at this point in the history
…5548)

* K-Shortest path query fix (#5410)

* Bug fix for depth parameter
* Handle cycles in K - Shortest path queries

(cherry picked from commit 6332254)

* Edit test cases to remove flaky behavior (#5464)


(cherry picked from commit bae2b1b)

* Added details of Shortest path queries in documentation (#5533)


(cherry picked from commit abb57c0)
  • Loading branch information
all-seeing-code authored Jun 9, 2020
1 parent 11373e1 commit df9d45d
Show file tree
Hide file tree
Showing 4 changed files with 414 additions and 41 deletions.
4 changes: 2 additions & 2 deletions query/common_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -686,7 +686,7 @@ func populateCluster() {
<510> <newfriend> <511> .
<510> <newfriend> <512> .
<51> <connects> <52> (weight=10) .
<51> <connects> <52> (weight=11) .
<51> <connects> <53> (weight=1) .
<51> <connects> <54> (weight=10) .
Expand All @@ -699,7 +699,7 @@ func populateCluster() {
<52> <connects> <54> (weight=10) .
<54> <connects> <51> (weight=10) .
<54> <connects> <52> (weight=1) .
<54> <connects> <52> (weight=2) .
<54> <connects> <53> (weight=10) .
<54> <connects> <55> (weight=1) .
Expand Down
Loading

0 comments on commit df9d45d

Please sign in to comment.