Skip to content

Commit 29dd84e

Browse files
committed
Remove if not specified parts from ref doc
1 parent 1a9725e commit 29dd84e

File tree

7 files changed

+9
-78
lines changed

7 files changed

+9
-78
lines changed

graphdatascience/procedure_surface/api/articulationpoints_endpoints.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -205,13 +205,10 @@ def estimate(
205205
The graph to be used in the estimation. Provided either as a Graph object or a configuration dictionary for the projection.
206206
relationship_types : Optional[List[str]], default=None
207207
The relationship types used to select relationships for this algorithm run.
208-
If not specified, all relationship types are considered.
209208
node_labels : Optional[List[str]], default=None
210209
The node labels used to select nodes for this algorithm run.
211-
If not specified, all node labels are considered.
212210
concurrency : Optional[Any], default=None
213211
The number of concurrent threads used for the estimation.
214-
If not specified, uses the default concurrency level.
215212
216213
Returns
217214
-------

graphdatascience/procedure_surface/api/betweenness_endpoints.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def mutate(
4242
mutate_property : str
4343
The property name to store the betweenness centrality score for each node
4444
sampling_size : Optional[int], default=None
45-
The number of nodes to use for sampling. If not specified, all nodes are used
45+
The number of nodes to use for sampling.
4646
sampling_seed : Optional[int], default=None
4747
The seed value for sampling randomization
4848
relationship_types : Optional[List[str]], default=None
@@ -91,7 +91,7 @@ def stats(
9191
G : Graph
9292
The graph to run the algorithm on
9393
sampling_size : Optional[int], default=None
94-
The number of nodes to use for sampling. If not specified, all nodes are used
94+
The number of nodes to use for sampling.
9595
sampling_seed : Optional[int], default=None
9696
The seed value for sampling randomization
9797
relationship_types : Optional[List[str]], default=None
@@ -140,7 +140,7 @@ def stream(
140140
G : Graph
141141
The graph to run the algorithm on
142142
sampling_size : Optional[int], default=None
143-
The number of nodes to use for sampling. If not specified, all nodes are used
143+
The number of nodes to use for sampling.
144144
sampling_seed : Optional[int], default=None
145145
The seed value for sampling randomization
146146
relationship_types : Optional[List[str]], default=None
@@ -193,7 +193,7 @@ def write(
193193
write_property : str
194194
The property name to store the betweenness centrality score for each node
195195
sampling_size : Optional[int], default=None
196-
The number of nodes to use for sampling. If not specified, all nodes are used
196+
The number of nodes to use for sampling.
197197
sampling_seed : Optional[int], default=None
198198
The seed value for sampling randomization
199199
relationship_types : Optional[List[str]], default=None

graphdatascience/procedure_surface/api/celf_endpoints.py

Lines changed: 5 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,11 @@ def mutate(
5151
monte_carlo_simulations : Optional[int], default=None
5252
The number of Monte-Carlo simulations.
5353
random_seed : Optional[Any], default=None
54-
Random seed for reproducible results. If not specified, uses a random seed.
54+
Random seed for reproducible results.
5555
relationship_types : Optional[List[str]], default=None
5656
The relationship types used to select relationships for this algorithm run.
57-
If not specified, all relationship types are considered.
5857
node_labels : Optional[List[str]], default=None
5958
The node labels used to select nodes for this algorithm run.
60-
If not specified, all node labels are considered.
6159
sudo : Optional[bool], default=None
6260
Override memory estimation limits. Use with caution as this can lead to
6361
memory issues if the estimation is significantly wrong.
@@ -67,7 +65,6 @@ def mutate(
6765
The username to attribute the procedure run to
6866
concurrency : Optional[Any], default=None
6967
The number of concurrent threads used for the algorithm execution.
70-
If not specified, uses the default concurrency level.
7168
job_id : Optional[Any], default=None
7269
An identifier for the job that can be used for monitoring and cancellation
7370
@@ -108,13 +105,11 @@ def stats(
108105
monte_carlo_simulations : Optional[int], default=None
109106
The number of Monte-Carlo simulations.
110107
random_seed : Optional[Any], default=None
111-
Random seed for reproducible results. If not specified, uses a random seed.
108+
Random seed for reproducible results.
112109
relationship_types : Optional[List[str]], default=None
113110
The relationship types used to select relationships for this algorithm run.
114-
If not specified, all relationship types are considered.
115111
node_labels : Optional[List[str]], default=None
116112
The node labels used to select nodes for this algorithm run.
117-
If not specified, all node labels are considered.
118113
sudo : Optional[bool], default=None
119114
Override memory estimation limits. Use with caution as this can lead to
120115
memory issues if the estimation is significantly wrong.
@@ -124,7 +119,6 @@ def stats(
124119
The username to attribute the procedure run to
125120
concurrency : Optional[Any], default=None
126121
The number of concurrent threads used for the algorithm execution.
127-
If not specified, uses the default concurrency level.
128122
job_id : Optional[Any], default=None
129123
An identifier for the job that can be used for monitoring and cancellation
130124
@@ -165,13 +159,11 @@ def stream(
165159
monte_carlo_simulations : Optional[int], default=None
166160
The number of Monte-Carlo simulations.
167161
random_seed : Optional[Any], default=None
168-
Random seed for reproducible results. If not specified, uses a random seed.
162+
Random seed for reproducible results.
169163
relationship_types : Optional[List[str]], default=None
170164
The relationship types used to select relationships for this algorithm run.
171-
If not specified, all relationship types are considered.
172165
node_labels : Optional[List[str]], default=None
173166
The node labels used to select nodes for this algorithm run.
174-
If not specified, all node labels are considered.
175167
sudo : Optional[bool], default=None
176168
Override memory estimation limits. Use with caution as this can lead to
177169
memory issues if the estimation is significantly wrong.
@@ -181,7 +173,6 @@ def stream(
181173
The username to attribute the procedure run to
182174
concurrency : Optional[Any], default=None
183175
The number of concurrent threads used for the algorithm execution.
184-
If not specified, uses the default concurrency level.
185176
job_id : Optional[Any], default=None
186177
An identifier for the job that can be used for monitoring and cancellation
187178
@@ -227,13 +218,11 @@ def write(
227218
monte_carlo_simulations : Optional[int], default=None
228219
The number of Monte-Carlo simulations.
229220
random_seed : Optional[Any], default=None
230-
Random seed for reproducible results. If not specified, uses a random seed.
221+
Random seed for reproducible results.
231222
relationship_types : Optional[List[str]], default=None
232223
The relationship types used to select relationships for this algorithm run.
233-
If not specified, all relationship types are considered.
234224
node_labels : Optional[List[str]], default=None
235225
The node labels used to select nodes for this algorithm run.
236-
If not specified, all node labels are considered.
237226
sudo : Optional[bool], default=None
238227
Override memory estimation limits. Use with caution as this can lead to
239228
memory issues if the estimation is significantly wrong.
@@ -243,12 +232,10 @@ def write(
243232
The username to attribute the procedure run to
244233
concurrency : Optional[Any], default=None
245234
The number of concurrent threads used for the algorithm execution.
246-
If not specified, uses the default concurrency level.
247235
job_id : Optional[Any], default=None
248236
An identifier for the job that can be used for monitoring and cancellation
249237
write_concurrency : Optional[Any], default=None
250238
The number of concurrent threads used during the write phase.
251-
If not specified, uses the same value as concurrency.
252239
253240
Returns
254241
-------
@@ -287,16 +274,13 @@ def estimate(
287274
monte_carlo_simulations : Optional[int], default=None
288275
The number of Monte-Carlo simulations.
289276
random_seed : Optional[Any], default=None
290-
Random seed for reproducible results. If not specified, uses a random seed.
277+
Random seed for reproducible results.
291278
relationship_types : Optional[List[str]], default=None
292279
The relationship types used to select relationships for this algorithm run.
293-
If not specified, all relationship types are considered.
294280
node_labels : Optional[List[str]], default=None
295281
The node labels used to select nodes for this algorithm run.
296-
If not specified, all node labels are considered.
297282
concurrency : Optional[Any], default=None
298283
The number of concurrent threads used for the estimation.
299-
If not specified, uses the default concurrency level.
300284
301285
Returns
302286
-------

graphdatascience/procedure_surface/api/closeness_endpoints.py

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,8 @@ def mutate(
4646
Use the improved Wasserman-Faust formula for closeness computation.
4747
relationship_types : Optional[List[str]], default=None
4848
The relationship types used to select relationships for this algorithm run.
49-
If not specified, all relationship types are considered.
5049
node_labels : Optional[List[str]], default=None
5150
The node labels used to select nodes for this algorithm run.
52-
If not specified, all node labels are considered.
5351
sudo : Optional[bool], default=None
5452
Override memory estimation limits. Use with caution as this can lead to
5553
memory issues if the estimation is significantly wrong.
@@ -59,7 +57,6 @@ def mutate(
5957
The username to attribute the procedure run to
6058
concurrency : Optional[Any], default=None
6159
The number of concurrent threads used for the algorithm execution.
62-
If not specified, uses the default concurrency level.
6360
job_id : Optional[Any], default=None
6461
An identifier for the job that can be used for monitoring and cancellation
6562
@@ -94,10 +91,8 @@ def stats(
9491
Use the improved Wasserman-Faust formula for closeness computation.
9592
relationship_types : Optional[List[str]], default=None
9693
The relationship types used to select relationships for this algorithm run.
97-
If not specified, all relationship types are considered.
9894
node_labels : Optional[List[str]], default=None
9995
The node labels used to select nodes for this algorithm run.
100-
If not specified, all node labels are considered.
10196
sudo : Optional[bool], default=None
10297
Override memory estimation limits. Use with caution as this can lead to
10398
memory issues if the estimation is significantly wrong.
@@ -107,7 +102,6 @@ def stats(
107102
The username to attribute the procedure run to
108103
concurrency : Optional[Any], default=None
109104
The number of concurrent threads used for the algorithm execution.
110-
If not specified, uses the default concurrency level.
111105
job_id : Optional[Any], default=None
112106
An identifier for the job that can be used for monitoring and cancellation
113107
@@ -142,10 +136,8 @@ def stream(
142136
Use the improved Wasserman-Faust formula for closeness computation.
143137
relationship_types : Optional[List[str]], default=None
144138
The relationship types used to select relationships for this algorithm run.
145-
If not specified, all relationship types are considered.
146139
node_labels : Optional[List[str]], default=None
147140
The node labels used to select nodes for this algorithm run.
148-
If not specified, all node labels are considered.
149141
sudo : Optional[bool], default=None
150142
Override memory estimation limits. Use with caution as this can lead to
151143
memory issues if the estimation is significantly wrong.
@@ -155,7 +147,6 @@ def stream(
155147
The username to attribute the procedure run to
156148
concurrency : Optional[Any], default=None
157149
The number of concurrent threads used for the algorithm execution.
158-
If not specified, uses the default concurrency level.
159150
job_id : Optional[Any], default=None
160151
An identifier for the job that can be used for monitoring and cancellation
161152
@@ -195,10 +186,8 @@ def write(
195186
Use the improved Wasserman-Faust formula for closeness computation.
196187
relationship_types : Optional[List[str]], default=None
197188
The relationship types used to select relationships for this algorithm run.
198-
If not specified, all relationship types are considered.
199189
node_labels : Optional[List[str]], default=None
200190
The node labels used to select nodes for this algorithm run.
201-
If not specified, all node labels are considered.
202191
sudo : Optional[bool], default=None
203192
Override memory estimation limits. Use with caution as this can lead to
204193
memory issues if the estimation is significantly wrong.
@@ -208,12 +197,10 @@ def write(
208197
The username to attribute the procedure run to
209198
concurrency : Optional[Any], default=None
210199
The number of concurrent threads used for the algorithm execution.
211-
If not specified, uses the default concurrency level.
212200
job_id : Optional[Any], default=None
213201
An identifier for the job that can be used for monitoring and cancellation
214202
write_concurrency : Optional[Any], default=None
215203
The number of concurrent threads used during the write phase.
216-
If not specified, uses the default write concurrency level.
217204
218205
Returns
219206
-------

graphdatascience/procedure_surface/api/closeness_harmonic_endpoints.py

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,8 @@ def mutate(
4343
The property name to store the harmonic closeness centrality score for each node
4444
relationship_types : Optional[List[str]], default=None
4545
The relationship types used to select relationships for this algorithm run.
46-
If not specified, all relationship types are considered.
4746
node_labels : Optional[List[str]], default=None
4847
The node labels used to select nodes for this algorithm run.
49-
If not specified, all node labels are considered.
5048
sudo : Optional[bool], default=None
5149
Override memory estimation limits. Use with caution as this can lead to
5250
memory issues if the estimation is significantly wrong.
@@ -56,7 +54,6 @@ def mutate(
5654
The username to attribute the procedure run to
5755
concurrency : Optional[Any], default=None
5856
The number of concurrent threads used for the algorithm execution.
59-
If not specified, uses the default concurrency level.
6057
job_id : Optional[Any], default=None
6158
An identifier for the job that can be used for monitoring and cancellation
6259
@@ -88,10 +85,8 @@ def stats(
8885
The graph to run the algorithm on
8986
relationship_types : Optional[List[str]], default=None
9087
The relationship types used to select relationships for this algorithm run.
91-
If not specified, all relationship types are considered.
9288
node_labels : Optional[List[str]], default=None
9389
The node labels used to select nodes for this algorithm run.
94-
If not specified, all node labels are considered.
9590
sudo : Optional[bool], default=None
9691
Override memory estimation limits. Use with caution as this can lead to
9792
memory issues if the estimation is significantly wrong.
@@ -101,7 +96,6 @@ def stats(
10196
The username to attribute the procedure run to
10297
concurrency : Optional[Any], default=None
10398
The number of concurrent threads used for the algorithm execution.
104-
If not specified, uses the default concurrency level.
10599
job_id : Optional[Any], default=None
106100
An identifier for the job that can be used for monitoring and cancellation
107101
@@ -133,10 +127,8 @@ def stream(
133127
The graph to run the algorithm on
134128
relationship_types : Optional[List[str]], default=None
135129
The relationship types used to select relationships for this algorithm run.
136-
If not specified, all relationship types are considered.
137130
node_labels : Optional[List[str]], default=None
138131
The node labels used to select nodes for this algorithm run.
139-
If not specified, all node labels are considered.
140132
sudo : Optional[bool], default=None
141133
Override memory estimation limits. Use with caution as this can lead to
142134
memory issues if the estimation is significantly wrong.
@@ -146,7 +138,6 @@ def stream(
146138
The username to attribute the procedure run to
147139
concurrency : Optional[Any], default=None
148140
The number of concurrent threads used for the algorithm execution.
149-
If not specified, uses the default concurrency level.
150141
job_id : Optional[Any], default=None
151142
An identifier for the job that can be used for monitoring and cancellation
152143
@@ -182,10 +173,8 @@ def write(
182173
The property name to write the harmonic closeness centrality scores to
183174
relationship_types : Optional[List[str]], default=None
184175
The relationship types used to select relationships for this algorithm run.
185-
If not specified, all relationship types are considered.
186176
node_labels : Optional[List[str]], default=None
187177
The node labels used to select nodes for this algorithm run.
188-
If not specified, all node labels are considered.
189178
sudo : Optional[bool], default=None
190179
Override memory estimation limits. Use with caution as this can lead to
191180
memory issues if the estimation is significantly wrong.
@@ -195,7 +184,6 @@ def write(
195184
The username to attribute the procedure run to
196185
concurrency : Optional[Any], default=None
197186
The number of concurrent threads used for the algorithm execution.
198-
If not specified, uses the default concurrency level.
199187
job_id : Optional[Any], default=None
200188
An identifier for the job that can be used for monitoring and cancellation
201189
write_concurrency : Optional[Any], default=None

0 commit comments

Comments
 (0)