(self)
| 1926 | assert_array_equal(out1, out2) |
| 1927 | |
| 1928 | def test_normal(self): |
| 1929 | def gen_random(state, out): |
| 1930 | out[...] = state.normal(size=10000) |
| 1931 | |
| 1932 | self.check_function(gen_random, sz=(10000,)) |
| 1933 | |
| 1934 | def test_exp(self): |
| 1935 | def gen_random(state, out): |
nothing calls this directly
no test coverage detected