Skip to content

Commit 1993e27

Browse files
pcst endpoints
1 parent 98d8502 commit 1993e27

File tree

2 files changed

+72
-0
lines changed

2 files changed

+72
-0
lines changed

doc/sphinx/algorithms.json

+48
Original file line numberDiff line numberDiff line change
@@ -2810,6 +2810,54 @@
28102810
},
28112811
"description": "Returns an estimation of the memory consumption for that procedure."
28122812
},
2813+
{
2814+
"function": {
2815+
"name": "gds.prizeSteinerTree.mutate",
2816+
"signature": "G: Graph, **config: Any",
2817+
"return_type": "DataFrame"
2818+
},
2819+
"description": "An approximation algorithm for the prize collector steiner tree problem"
2820+
},
2821+
{
2822+
"function": {
2823+
"name": "gds.prizeSteinerTree.mutate.estimate",
2824+
"signature": "G: Graph, **config: Any",
2825+
"return_type": "Series[Any]"
2826+
},
2827+
"description": "Returns an estimation of the memory consumption for that procedure."
2828+
},
2829+
{
2830+
"function": {
2831+
"name": "gds.prizeSteinerTree.stats",
2832+
"signature": "G: Graph, **config: Any",
2833+
"return_type": "DataFrame"
2834+
},
2835+
"description": "An approximation algorithm for the prize collector steiner tree problem"
2836+
},
2837+
{
2838+
"function": {
2839+
"name": "gds.prizeSteinerTree.stats.estimate",
2840+
"signature": "G: Graph, **config: Any",
2841+
"return_type": "Series[Any]"
2842+
},
2843+
"description": "Returns an estimation of the memory consumption for that procedure."
2844+
},
2845+
{
2846+
"function": {
2847+
"name": "gds.prizeSteinerTree.write",
2848+
"signature": "G: Graph, **config: Any",
2849+
"return_type": "DataFrame"
2850+
},
2851+
"description": "An approximation algorithm for the prize collector steiner tree problem"
2852+
},
2853+
{
2854+
"function": {
2855+
"name": "gds.prizeSteinerTree.write.estimate",
2856+
"signature": "G: Graph, **config: Any",
2857+
"return_type": "Series[Any]"
2858+
},
2859+
"description": "Returns an estimation of the memory consumption for that procedure."
2860+
},
28132861
{
28142862
"function": {
28152863
"name": "gds.randomWalk.mutate",

doc/sphinx/source/algorithms.rst

+24
Original file line numberDiff line numberDiff line change
@@ -1568,6 +1568,30 @@ These all assume that an object of :class:`.GraphDataScience` is available as `g
15681568
15691569
Returns an estimation of the memory consumption for that procedure.
15701570

1571+
.. py:function:: gds.prizeSteinerTree.mutate(G: Graph, **config: Any) -> DataFrame
1572+
1573+
An approximation algorithm for the prize collector steiner tree problem
1574+
1575+
.. py:function:: gds.prizeSteinerTree.mutate.estimate(G: Graph, **config: Any) -> Series[Any]
1576+
1577+
Returns an estimation of the memory consumption for that procedure.
1578+
1579+
.. py:function:: gds.prizeSteinerTree.stats(G: Graph, **config: Any) -> DataFrame
1580+
1581+
An approximation algorithm for the prize collector steiner tree problem
1582+
1583+
.. py:function:: gds.prizeSteinerTree.stats.estimate(G: Graph, **config: Any) -> Series[Any]
1584+
1585+
Returns an estimation of the memory consumption for that procedure.
1586+
1587+
.. py:function:: gds.prizeSteinerTree.write(G: Graph, **config: Any) -> DataFrame
1588+
1589+
An approximation algorithm for the prize collector steiner tree problem
1590+
1591+
.. py:function:: gds.prizeSteinerTree.write.estimate(G: Graph, **config: Any) -> Series[Any]
1592+
1593+
Returns an estimation of the memory consumption for that procedure.
1594+
15711595
.. py:function:: gds.randomWalk.mutate(G: Graph, **config: Any) -> Series[Any]
15721596
15731597
Random Walk is an algorithm that provides random paths in a graph. It’s similar to how a drunk person traverses a city. The mutate procedure produces the count a node occurs on a random walk.

0 commit comments

Comments
 (0)