We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70bbc87 commit 3777aa6Copy full SHA for 3777aa6
pydatastructs/linear_data_structures/tests/test_algorithms.py
@@ -84,9 +84,11 @@ def test_merge_sort_parallel():
84
85
def test_brick_sort():
86
_test_common_sort(brick_sort)
87
+ _test_common_search(brick_sort, Backend = Backend.CPP)
88
89
def test_brick_sort_parallel():
90
_test_common_sort(brick_sort_parallel, num_threads=3)
91
+ _test_common_search(brick_sort_parallel, num_threads=3, Backend = Backend.CPP)
92
93
def test_heapsort():
94
_test_common_sort(heapsort)
0 commit comments