(self)
| 2553 | self.check_function(gen_random, sz=(10000,)) |
| 2554 | |
| 2555 | def test_exp(self): |
| 2556 | def gen_random(state, out): |
| 2557 | out[...] = state.exponential(scale=np.ones((100, 1000))) |
| 2558 | |
| 2559 | self.check_function(gen_random, sz=(100, 1000)) |
| 2560 | |
| 2561 | def test_multinomial(self): |
| 2562 | def gen_random(state, out): |
nothing calls this directly
no test coverage detected