Пример #1
0
 def test_sort_5(self):
     y = np.array([np.random.randint(100) for i in range(100)], dtype=int)
     y2 = np.copy(y)
     bm.sort(y)
     y2.sort()
     np.testing.assert_equal(y, y2)
     bm.sort(y, reverse=True)
     y2 = sorted(y2, reverse=True)
     np.testing.assert_equal(y, y2)
Пример #2
0
 def test_sort_3(self):
     y = np.random.randn(200)
     y2 = np.copy(y)
     bm.sort(y)
     y2.sort()
     np.testing.assert_equal(y, y2)
     bm.sort(y, reverse=True)
     y2 = sorted(y2, reverse=True)
     np.testing.assert_equal(y, y2)
Пример #3
0
 def test_sort_3(self):
     y = np.random.randn(200)
     y2 = np.copy(y)
     bm.sort(y)
     y2.sort()
     np.testing.assert_equal(y, y2)
     bm.sort(y, reverse=True)
     y2 = sorted(y2, reverse=True)
     np.testing.assert_equal(y, y2)
Пример #4
0
 def test_sort_5(self):
     y = np.array([np.random.randint(100)
                   for i in range(100)], dtype=int)
     y2 = np.copy(y)
     bm.sort(y)
     y2.sort()
     np.testing.assert_equal(y, y2)
     bm.sort(y, reverse=True)
     y2 = sorted(y2, reverse=True)
     np.testing.assert_equal(y, y2)
Пример #5
0
 def test_sort_2(self):
     y = np.random.randn(200)
     y2 = np.copy(y)
     np.testing.assert_equal(bm.sort(y, reverse=True),
                             sorted(y2, reverse=True))
Пример #6
0
 def test_sort_1(self):
     y = np.random.randn(100)
     y2 = np.copy(y)
     y2.sort()
     np.testing.assert_equal(bm.sort(y), y2)
Пример #7
0
 def test_sort_2(self):
     y = np.random.randn(200)
     y2 = np.copy(y)
     np.testing.assert_equal(bm.sort(y, reverse=True),
                             sorted(y2, reverse=True))
Пример #8
0
 def test_sort_1(self):
     y = np.random.randn(100)
     y2 = np.copy(y)
     y2.sort()
     np.testing.assert_equal(bm.sort(y), y2)