(self)
| 239 | assert_(np.all(x1 == x3)) |
| 240 | |
| 241 | def test_negative_binomial(self): |
| 242 | # Ensure that the negative binomial results take floating point |
| 243 | # arguments without truncation. |
| 244 | random_state, _ = self._create_state() |
| 245 | random_state.negative_binomial(0.5, 0.5) |
| 246 | |
| 247 | def test_get_state_warning(self): |
| 248 | rs = random.RandomState(PCG64()) |
nothing calls this directly
no test coverage detected