@@ -51,13 +51,11 @@ def mutate(
51
51
monte_carlo_simulations : Optional[int], default=None
52
52
The number of Monte-Carlo simulations.
53
53
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.
55
55
relationship_types : Optional[List[str]], default=None
56
56
The relationship types used to select relationships for this algorithm run.
57
- If not specified, all relationship types are considered.
58
57
node_labels : Optional[List[str]], default=None
59
58
The node labels used to select nodes for this algorithm run.
60
- If not specified, all node labels are considered.
61
59
sudo : Optional[bool], default=None
62
60
Override memory estimation limits. Use with caution as this can lead to
63
61
memory issues if the estimation is significantly wrong.
@@ -67,7 +65,6 @@ def mutate(
67
65
The username to attribute the procedure run to
68
66
concurrency : Optional[Any], default=None
69
67
The number of concurrent threads used for the algorithm execution.
70
- If not specified, uses the default concurrency level.
71
68
job_id : Optional[Any], default=None
72
69
An identifier for the job that can be used for monitoring and cancellation
73
70
@@ -108,13 +105,11 @@ def stats(
108
105
monte_carlo_simulations : Optional[int], default=None
109
106
The number of Monte-Carlo simulations.
110
107
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.
112
109
relationship_types : Optional[List[str]], default=None
113
110
The relationship types used to select relationships for this algorithm run.
114
- If not specified, all relationship types are considered.
115
111
node_labels : Optional[List[str]], default=None
116
112
The node labels used to select nodes for this algorithm run.
117
- If not specified, all node labels are considered.
118
113
sudo : Optional[bool], default=None
119
114
Override memory estimation limits. Use with caution as this can lead to
120
115
memory issues if the estimation is significantly wrong.
@@ -124,7 +119,6 @@ def stats(
124
119
The username to attribute the procedure run to
125
120
concurrency : Optional[Any], default=None
126
121
The number of concurrent threads used for the algorithm execution.
127
- If not specified, uses the default concurrency level.
128
122
job_id : Optional[Any], default=None
129
123
An identifier for the job that can be used for monitoring and cancellation
130
124
@@ -165,13 +159,11 @@ def stream(
165
159
monte_carlo_simulations : Optional[int], default=None
166
160
The number of Monte-Carlo simulations.
167
161
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.
169
163
relationship_types : Optional[List[str]], default=None
170
164
The relationship types used to select relationships for this algorithm run.
171
- If not specified, all relationship types are considered.
172
165
node_labels : Optional[List[str]], default=None
173
166
The node labels used to select nodes for this algorithm run.
174
- If not specified, all node labels are considered.
175
167
sudo : Optional[bool], default=None
176
168
Override memory estimation limits. Use with caution as this can lead to
177
169
memory issues if the estimation is significantly wrong.
@@ -181,7 +173,6 @@ def stream(
181
173
The username to attribute the procedure run to
182
174
concurrency : Optional[Any], default=None
183
175
The number of concurrent threads used for the algorithm execution.
184
- If not specified, uses the default concurrency level.
185
176
job_id : Optional[Any], default=None
186
177
An identifier for the job that can be used for monitoring and cancellation
187
178
@@ -227,13 +218,11 @@ def write(
227
218
monte_carlo_simulations : Optional[int], default=None
228
219
The number of Monte-Carlo simulations.
229
220
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.
231
222
relationship_types : Optional[List[str]], default=None
232
223
The relationship types used to select relationships for this algorithm run.
233
- If not specified, all relationship types are considered.
234
224
node_labels : Optional[List[str]], default=None
235
225
The node labels used to select nodes for this algorithm run.
236
- If not specified, all node labels are considered.
237
226
sudo : Optional[bool], default=None
238
227
Override memory estimation limits. Use with caution as this can lead to
239
228
memory issues if the estimation is significantly wrong.
@@ -243,12 +232,10 @@ def write(
243
232
The username to attribute the procedure run to
244
233
concurrency : Optional[Any], default=None
245
234
The number of concurrent threads used for the algorithm execution.
246
- If not specified, uses the default concurrency level.
247
235
job_id : Optional[Any], default=None
248
236
An identifier for the job that can be used for monitoring and cancellation
249
237
write_concurrency : Optional[Any], default=None
250
238
The number of concurrent threads used during the write phase.
251
- If not specified, uses the same value as concurrency.
252
239
253
240
Returns
254
241
-------
@@ -287,16 +274,13 @@ def estimate(
287
274
monte_carlo_simulations : Optional[int], default=None
288
275
The number of Monte-Carlo simulations.
289
276
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.
291
278
relationship_types : Optional[List[str]], default=None
292
279
The relationship types used to select relationships for this algorithm run.
293
- If not specified, all relationship types are considered.
294
280
node_labels : Optional[List[str]], default=None
295
281
The node labels used to select nodes for this algorithm run.
296
- If not specified, all node labels are considered.
297
282
concurrency : Optional[Any], default=None
298
283
The number of concurrent threads used for the estimation.
299
- If not specified, uses the default concurrency level.
300
284
301
285
Returns
302
286
-------
0 commit comments