Skip to content

Commit 33b9317

Browse files
committed
Update: API doc
1 parent d0229c5 commit 33b9317

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ def random(self) -> int:
2020
Returns a new integer random number.
2121
2222
Generated random numbers are uniformly distributed in the
23-
interval [0, 18446744073709551615].
23+
interval [0, 9223372036854775808).
2424
2525
:return: The new integer random number.
2626
"""
2727

2828

2929
class Univariate(ABC):
30-
"""Univariate random variates."""
30+
"""Univariate random deviates."""
3131

3232
@abstractmethod
3333
def random(self) -> float:
@@ -48,7 +48,7 @@ def randoms(self, randoms: np.ndarray) -> np.ndarray:
4848

4949

5050
class Multivariate(ABC):
51-
"""Multivariate random variates."""
51+
"""Multivariate random deviates."""
5252

5353
@abstractmethod
5454
def get(self, i: int) -> Univariate:
@@ -62,15 +62,15 @@ def get(self, i: int) -> Univariate:
6262

6363
class Normal(Univariate, Multivariate, ABC):
6464
"""
65-
Normal random variates.
65+
Normal random deviates.
6666
6767
Generated random numbers are standard normally distributed.
6868
"""
6969

7070

7171
class Uniform(Univariate, Multivariate, ABC):
7272
"""
73-
Uniform random variates.
73+
Uniform random deviates.
7474
7575
Generated random numbers are uniformly distributed in [0, 1).
7676
"""

0 commit comments

Comments
 (0)