(self)
| 1626 | self.check_function(gen_random, sz=(10000,)) |
| 1627 | |
| 1628 | def test_exp(self): |
| 1629 | def gen_random(state, out): |
| 1630 | out[...] = state.exponential(scale=np.ones((100, 1000))) |
| 1631 | self.check_function(gen_random, sz=(100, 1000)) |
| 1632 | |
| 1633 | def test_multinomial(self): |
| 1634 | def gen_random(state, out): |
nothing calls this directly
no test coverage detected