@@ -984,8 +984,9 @@ cdef class RandomState:
984984 the clock otherwise.
985985 brng : {'MT19937', 'SFMT19937', 'MT2203', 'R250', 'WH', 'MCG31', 'MCG59',
986986 'MRG32K3A', 'PHILOX4X32X10', 'NONDETERM', 'ARS5'}, optional
987- Basic pseudo-random number generation algorithms, provided by
988- Intel MKL. The default choice is 'MT19937' - the Mersenne Twister.
987+ basic pseudo-random number generation algorithms, or non-deterministic
988+ hardware-based generator, provided by Intel MKL. The default choice is
989+ 'MT19937' - the Mersenne Twister generator.
989990
990991 Notes
991992 -----
@@ -1034,9 +1035,9 @@ cdef class RandomState:
10341035 brng : {'MT19937', 'SFMT19937', 'MT2203', 'R250', 'WH', 'MCG31',
10351036 'MCG59', 'MRG32K3A', 'PHILOX4X32X10', 'NONDETERM',
10361037 'ARS5', None}, optional
1037- Basic pseudo-random number generation algorithms, provided by
1038- Intel MKL. Use `brng==None` to keep the `brng` specified to construct
1039- the class instance.
1038+ basic pseudo-random number generation algorithms, or non-deterministic
1039+ hardware-based generator, provided by Intel MKL. Use `brng==None` to keep
1040+ the `brng` specified during construction of this class instance.
10401041
10411042 See Also
10421043 --------
0 commit comments