(self)
| 1621 | assert_array_equal(out1, out2) |
| 1622 | |
| 1623 | def test_normal(self): |
| 1624 | def gen_random(state, out): |
| 1625 | out[...] = state.normal(size=10000) |
| 1626 | self.check_function(gen_random, sz=(10000,)) |
| 1627 | |
| 1628 | def test_exp(self): |
| 1629 | def gen_random(state, out): |
nothing calls this directly
no test coverage detected