(self)
| 1649 | assert_array_equal(out1, out2) |
| 1650 | |
| 1651 | def test_normal(self): |
| 1652 | def gen_random(state, out): |
| 1653 | out[...] = state.normal(size=10000) |
| 1654 | self.check_function(gen_random, sz=(10000,)) |
| 1655 | |
| 1656 | def test_exp(self): |
| 1657 | def gen_random(state, out): |
nothing calls this directly
no test coverage detected