(self)
| 1898 | assert_array_equal(out1, out2) |
| 1899 | |
| 1900 | def test_normal(self): |
| 1901 | def gen_random(state, out): |
| 1902 | out[...] = state.normal(size=10000) |
| 1903 | |
| 1904 | self.check_function(gen_random, sz=(10000,)) |
| 1905 | |
| 1906 | def test_exp(self): |
| 1907 | def gen_random(state, out): |
nothing calls this directly
no test coverage detected