Skip to content

Commit e24f41d

Browse files
Add delta
1 parent 803bbc4 commit e24f41d

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

doc/modules/ROOT/partials/algorithms/shortest-path/path-syntax.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ ifeval::["{algorithm}" == "Yen's"]
4343
| k | Integer | 1 | yes | The number of shortest paths to compute between source and target node.
4444
endif::[]
4545
ifeval::["{algorithm}" == "Delta-Stepping"]
46-
| delta | Float | 2 | yes | The bucket width for grouping nodes with the same tentative distance to the source node.
46+
| delta | Float | 2.0 | yes | The bucket width for grouping nodes with the same tentative distance to the source node.
4747
endif::[]
4848
| xref:common-usage/running-algos.adoc#common-configuration-relationship-weight-property[relationshipWeightProperty] | String | null | yes | Name of the relationship property to use as weights. If unspecified, the algorithm runs unweighted.
4949
|===
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
| sourceNode | Integer | null | n/a | The starting source node ID.
22
| targetNodes | List of Integer | null | n/a | The list of target nodes
33
| xref:common-usage/running-algos.adoc#common-configuration-relationship-weight-property[relationshipWeightProperty] | String | null | yes | Name of the relationship property to use as weights. If unspecified, the algorithm runs unweighted.
4+
| delta | Float | 2.0 | yes | The bucket width for grouping nodes with the same tentative distance to the source node. Look into the xref:algorithms/delta-single-source.adoc[Delta-Stepping] documentation for more information.
45
| applyRerouting | boolean | false | yes | If specified, the algorithm will try to improve the outcome via an additional post-processing heuristic.

0 commit comments

Comments
 (0)