(self)
| 185 | params_0(rg.standard_normal) |
| 186 | |
| 187 | def test_standard_gamma(self): |
| 188 | rg = self._create_rng().rg |
| 189 | assert_(len(rg.standard_gamma(10, 10)) == 10) |
| 190 | assert_(len(rg.standard_gamma(np.array([10] * 10), 10)) == 10) |
| 191 | params_1(rg.standard_gamma) |
| 192 | |
| 193 | def test_standard_exponential(self): |
| 194 | rg = self._create_rng().rg |
nothing calls this directly
no test coverage detected