(self)
| 2504 | assert_array_equal(out1, out2) |
| 2505 | |
| 2506 | def test_normal(self): |
| 2507 | def gen_random(state, out): |
| 2508 | out[...] = state.normal(size=10000) |
| 2509 | |
| 2510 | self.check_function(gen_random, sz=(10000,)) |
| 2511 | |
| 2512 | def test_exp(self): |
| 2513 | def gen_random(state, out): |
nothing calls this directly
no test coverage detected