(self)
| 1932 | self.check_function(gen_random, sz=(10000,)) |
| 1933 | |
| 1934 | def test_exp(self): |
| 1935 | def gen_random(state, out): |
| 1936 | out[...] = state.exponential(scale=np.ones((100, 1000))) |
| 1937 | |
| 1938 | self.check_function(gen_random, sz=(100, 1000)) |
| 1939 | |
| 1940 | def test_multinomial(self): |
| 1941 | def gen_random(state, out): |
nothing calls this directly
no test coverage detected