(self)
| 203 | params_0(partial(rg.standard_exponential, dtype='float32')) |
| 204 | |
| 205 | def test_standard_exponential_float_log(self): |
| 206 | rg = self._create_rng().rg |
| 207 | randoms = rg.standard_exponential(10, dtype='float32', |
| 208 | method='inv') |
| 209 | assert_(len(randoms) == 10) |
| 210 | assert randoms.dtype == np.float32 |
| 211 | params_0(partial(rg.standard_exponential, dtype='float32', |
| 212 | method='inv')) |
| 213 | |
| 214 | def test_standard_cauchy(self): |
| 215 | rg = self._create_rng().rg |
nothing calls this directly
no test coverage detected