We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71a8c1a commit 7141420Copy full SHA for 7141420
data_structures/kd_tree/example/hypercube_points.py
@@ -16,6 +16,6 @@ def hypercube_points(
16
An array of shape (num_points, num_dimensions)
17
with generated points.
18
"""
19
- rng = np.random.default_rng()
+ rng = np.random.default_rng(5)
20
shape = (num_points, num_dimensions)
21
return hypercube_size * rng.random(shape)
0 commit comments