(self)
| 2510 | self.check_function(gen_random, sz=(10000,)) |
| 2511 | |
| 2512 | def test_exp(self): |
| 2513 | def gen_random(state, out): |
| 2514 | out[...] = state.exponential(scale=np.ones((100, 1000))) |
| 2515 | |
| 2516 | self.check_function(gen_random, sz=(100, 1000)) |
| 2517 | |
| 2518 | def test_multinomial(self): |
| 2519 | def gen_random(state, out): |
nothing calls this directly
no test coverage detected