(self)
| 1654 | self.check_function(gen_random, sz=(10000,)) |
| 1655 | |
| 1656 | def test_exp(self): |
| 1657 | def gen_random(state, out): |
| 1658 | out[...] = state.exponential(scale=np.ones((100, 1000))) |
| 1659 | self.check_function(gen_random, sz=(100, 1000)) |
| 1660 | |
| 1661 | def test_multinomial(self): |
| 1662 | def gen_random(state, out): |
nothing calls this directly
no test coverage detected