(self)
| 722 | assert_array_almost_equal(actual, desired, decimal=15) |
| 723 | |
| 724 | def test_laplace_0(self): |
| 725 | assert_equal(np.random.laplace(scale=0), 0) |
| 726 | assert_raises(ValueError, np.random.laplace, scale=-0.) |
| 727 | |
| 728 | def test_logistic(self): |
| 729 | np.random.seed(self.seed) |
nothing calls this directly
no test coverage detected