summaryrefslogtreecommitdiff
path: root/numpy/random/tests/test_random.py
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2017-03-13 11:47:58 -0600
committerCharles Harris <charlesr.harris@gmail.com>2017-03-13 11:47:58 -0600
commit7c00cd7f4b91f6b70d30a84aa27aa130dafe33b9 (patch)
treef2a8c78b56d27470d3d34707fb3680f31fe992ff /numpy/random/tests/test_random.py
parent7e7f4adab814b223f7f917369a72757cd28b10cb (diff)
downloadnumpy-7c00cd7f4b91f6b70d30a84aa27aa130dafe33b9.tar.gz
Revert gh-8570.
BUG: fix issue #8250 where np.random.permutation fail. This reverts commit 7a73bad2d9c04e4f16e87dbed9d7b627327fe814. Closes #8776.
Diffstat (limited to 'numpy/random/tests/test_random.py')
-rw-r--r--numpy/random/tests/test_random.py40
1 files changed, 0 insertions, 40 deletions
diff --git a/numpy/random/tests/test_random.py b/numpy/random/tests/test_random.py
index 8b05cc724..e4c58e2bd 100644
--- a/numpy/random/tests/test_random.py
+++ b/numpy/random/tests/test_random.py
@@ -419,46 +419,6 @@ class TestRandomDist(TestCase):
desired = conv([0, 1, 9, 6, 2, 4, 5, 8, 7, 3])
assert_array_equal(actual, desired)
- def test_permutation(self):
- # Test that permutation works on a list of tuples, and integers.
-
- # list of (1, np.array([1, 1]), (2, np.array([2, 2])), and so on.
- N = 5
- A = np.arange(N)[:,None]
- A = np.concatenate((A, A), axis=1)
- B = range(N)
- c = list(zip(B, A))
- assert_(sorted(c) == sorted(np.random.permutation(c)))
-
- d = np.arange(N)
- assert_array_equal(d, sorted(np.random.permutation(N)))
-
- # only integer arguments are accepted.
- assert_raises(TypeError, np.random.permutation, 3.0)
-
- # same test as shuffle.
- for conv in [lambda x: np.array([]),
- lambda x: x,
- lambda x: np.asarray(x).astype(np.int8),
- lambda x: np.asarray(x).astype(np.float32),
- lambda x: np.asarray(x).astype(np.complex64),
- lambda x: np.asarray(x).astype(object),
- lambda x: [(i, i) for i in x],
- lambda x: np.asarray([[i, i] for i in x]),
- lambda x: np.vstack([x, x]).T,
- # gh-4270
- lambda x: np.asarray([(i, i) for i in x],
- [("a", object, 1),
- ("b", np.int32, 1)])]:
- np.random.seed(self.seed)
- alist = conv([1, 2, 3, 4, 5, 6, 7, 8, 9, 0])
- blist = np.random.permutation(alist)
- # check that array is not mutated.
- assert_array_equal(alist, conv([1, 2, 3, 4, 5, 6, 7, 8, 9, 0]))
- actual = blist
- desired = conv([0, 1, 9, 6, 2, 4, 5, 8, 7, 3])
- assert_array_equal(actual, desired)
-
def test_shuffle_masked(self):
# gh-3263
a = np.ma.masked_values(np.reshape(range(20), (5, 4)) % 3 - 1, -1)