(self)
| 2547 | assert_array_equal(out1, out2) |
| 2548 | |
| 2549 | def test_normal(self): |
| 2550 | def gen_random(state, out): |
| 2551 | out[...] = state.normal(size=10000) |
| 2552 | |
| 2553 | self.check_function(gen_random, sz=(10000,)) |
| 2554 | |
| 2555 | def test_exp(self): |
| 2556 | def gen_random(state, out): |
nothing calls this directly
no test coverage detected