(self)
| 1355 | assert_array_almost_equal(actual, desired, decimal=15) |
| 1356 | |
| 1357 | def test_laplace_0(self): |
| 1358 | assert_equal(random.laplace(scale=0), 0) |
| 1359 | assert_raises(ValueError, random.laplace, scale=-0.) |
| 1360 | |
| 1361 | def test_logistic(self): |
| 1362 | random = Generator(MT19937(self.seed)) |
nothing calls this directly
no test coverage detected