(self)
| 467 | assert_array_almost_equal(actual, desired, decimal=15) |
| 468 | |
| 469 | def test_rand_singleton(self): |
| 470 | rng = random.RandomState(self.seed) |
| 471 | actual = rng.rand() |
| 472 | desired = 0.61879477158567997 |
| 473 | assert_array_almost_equal(actual, desired, decimal=15) |
| 474 | |
| 475 | def test_randn(self): |
| 476 | rng = random.RandomState(self.seed) |
nothing calls this directly
no test coverage detected