(self)
| 271 | assert uints is None |
| 272 | |
| 273 | def test_gauss_inv(self): |
| 274 | n = 25 |
| 275 | rs = RandomState(self.bit_generator(*self.data1['seed'])) |
| 276 | gauss = rs.standard_normal(n) |
| 277 | assert_allclose(gauss, |
| 278 | gauss_from_uint(self.data1['data'], n, self.bits)) |
| 279 | |
| 280 | rs = RandomState(self.bit_generator(*self.data2['seed'])) |
| 281 | gauss = rs.standard_normal(25) |
| 282 | assert_allclose(gauss, |
| 283 | gauss_from_uint(self.data2['data'], n, self.bits)) |
| 284 | |
| 285 | def test_uniform_double(self): |
| 286 | rs = Generator(self.bit_generator(*self.data1['seed'])) |
nothing calls this directly
no test coverage detected