()
| 14 | |
| 15 | |
| 16 | def test_get_random_projections(): |
| 17 | rng = np.random.RandomState(0) |
| 18 | projections = get_random_projections(1000, 50, rng) |
| 19 | np.testing.assert_almost_equal(np.sum(projections**2, 0), 1.0) |
| 20 | |
| 21 | |
| 22 | def test_sliced_same_dist(): |
nothing calls this directly
no test coverage detected