Return the backend-specific RandomState class For example, the 'numpy' backend simply returns ``numpy.random.RandomState``.
(self)
| 346 | |
| 347 | @property |
| 348 | def RandomState(self): |
| 349 | """Return the backend-specific RandomState class |
| 350 | |
| 351 | For example, the 'numpy' backend simply returns |
| 352 | ``numpy.random.RandomState``. |
| 353 | """ |
| 354 | raise NotImplementedError |
| 355 | |
| 356 | @property |
| 357 | def default_bit_generator(self): |
no outgoing calls