Skip to content

Commit

Permalink
Changes Suggested by vicky
Browse files Browse the repository at this point in the history
  • Loading branch information
AbhinJ committed Aug 12, 2023
1 parent 69fdf6b commit a7b0377
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion doc/conf.py.in
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ rst_epilog="""
.. |matrix-pid| replace:: ``(start_pid, end_pid, agg_cost)``
.. |ksp-result| replace:: ``(seq, path_id, path_seq, node, edge, cost, agg_cost)``
.. |tsp-result| replace:: ``(seq, node, cost, agg_cost)``
.. |new-withPointsKSP-result| replace:: ``(seq, path_id, path_seq, start_vid, end_vid, node, edge, cost, agg_cost)``
.. |nksp-result| replace:: ``(seq, path_id, path_seq, start_vid, end_vid, node, edge, cost, agg_cost)``
.. |old-generic-result| replace:: ``(seq, path_seq, [start_vid], [end_vid], node, edge, cost, agg_cost)``
.. |old-pid-result| replace:: ``(seq, path_seq, [start_pid], [end_pid], node, edge, cost, agg_cost)``
.. |pid-1-m| replace:: ``(seq, path_seq, end_pid, node, edge, cost, agg_cost)``
Expand Down
14 changes: 7 additions & 7 deletions doc/withPoints/pgr_withPointsKSP.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ pgr_withPointsKSP - Proposed
* ``pgr_withPointsKSP`` (`Many to Many`_)
* ``pgr_withPointsKSP`` (`Combinations`_)

* Standarizing output columns to |new-withPointsKSP-result|
* Standarizing output columns to |nksp-result|

* ``pgr_withPointsKSP`` (`One to One`_) added ``start_vid`` and ``end_vid`` columns.

Expand Down Expand Up @@ -69,7 +69,7 @@ Signatures
| pgr_withPointsKSP(`Edges SQL`_, `Points SQL`_, `Combinations SQL`_, **K**, **driving_side**, [**options**])
| **options:** ``[directed, heap_paths, details]``
| RETURNS SET OF |new-withPointsKSP-result|
| RETURNS SET OF |ksp-result|
| OR EMPTY SET
.. index::
Expand All @@ -84,7 +84,7 @@ One to One
| pgr_withPointsKSP(`Edges SQL`_, `Points SQL`_, **start vid**, **end vid**, **K**, **driving_side**, [**options**])
| **options:** ``[directed, heap_paths, details]``
| RETURNS SET OF |new-withPointsKSP-result|
| RETURNS SET OF |nksp-result|
| OR EMTPY SET
:Example: Get 2 paths from Point :math:`1` to point :math:`2` on a directed
Expand All @@ -110,7 +110,7 @@ One to Many
| pgr_withPointsKSP(`Edges SQL`_, `Points SQL`_, **start vid**, **end vids**, **K**, **driving_side**, [**options**])
| **options:** ``[directed, heap_paths, details]``
| RETURNS SET OF |new-withPointsKSP-result|
| RETURNS SET OF |ksp-result|
| OR EMTPY SET
:Example: Get 2 paths from point :math:`1` to point :math:`3` and vertex :math:`7` on an
Expand All @@ -132,7 +132,7 @@ Many to One
| pgr_withPointsKSP(`Edges SQL`_, `Points SQL`_, **start vids**, **end vid**, **K**, **driving_side**, [**options**])
| **options:** ``[directed, heap_paths, details]``
| RETURNS SET OF |new-withPointsKSP-result|
| RETURNS SET OF |ksp-result|
| OR EMTPY SET
:Example: Get a path from point :math:`1` and vertex :math:`6` to point :math:`3` on a **directed**
Expand All @@ -154,7 +154,7 @@ Many to Many
| pgr_withPointsKSP(`Edges SQL`_, `Points SQL`_, **start vids**, **end vids**, **K**, **driving_side**, [**options**])
| **options:** ``[directed, heap_paths, details]``
| RETURNS SET OF |new-withPointsKSP-result|
| RETURNS SET OF |nksp-result|
| OR EMTPY SET
:Example: Get a path from point :math:`1` and vertex :math:`6` to point :math:`3` and vertex :math:`1` on a **directed**
Expand All @@ -176,7 +176,7 @@ Combinations
| pgr_withPointsKSP(`Edges SQL`_, `Points SQL`_, `Combinations SQL`_, **K**, **driving_side**, [**options**])
| **options:** ``[directed, heap_paths, details]``
| RETURNS SET OF |new-withPointsKSP-result|
| RETURNS SET OF |ksp-result|
| OR EMTPY SET
:Example: Using a combinations table on an **directed** graph
Expand Down

0 comments on commit a7b0377

Please sign in to comment.