(self)
| 1904 | self.check_function(gen_random, sz=(10000,)) |
| 1905 | |
| 1906 | def test_exp(self): |
| 1907 | def gen_random(state, out): |
| 1908 | out[...] = state.exponential(scale=np.ones((100, 1000))) |
| 1909 | |
| 1910 | self.check_function(gen_random, sz=(100, 1000)) |
| 1911 | |
| 1912 | def test_multinomial(self): |
| 1913 | def gen_random(state, out): |
nothing calls this directly
no test coverage detected