Skip to content

Commit a9e001a

Browse files
committed
Grooming the repo.
1 parent 7f149a8 commit a9e001a

File tree

3 files changed

+2
-10
lines changed

3 files changed

+2
-10
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1818
<maven.compiler.source>19</maven.compiler.source>
1919
<maven.compiler.target>19</maven.compiler.target>
20-
<exec.mainClass>com.github.coderodde.util.IntSorter</exec.mainClass>
20+
<exec.mainClass>com.github.coderodde.util.ParallelRadixSortBenchmark</exec.mainClass>
2121
</properties>
2222
<name>ParallelRadixSort.java</name>
2323
</project>

src/main/java/com/github/coderodde/util/ParallelRadixSortBenchmark.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import java.util.Arrays;
44
import java.util.Random;
55

6-
final class ParallelRadixSortBenchmark {
6+
public final class ParallelRadixSortBenchmark {
77

88
private static final int BENCHMARK_ITERATIONS = 20;
99
private static final int MAXIMUM_ARRAY_SIZE = 100_000_000;

src/test/java/com/github/coderodde/util/ParallelRadixSortTest.java

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,10 @@
44
import java.util.Random;
55
import static org.junit.Assert.assertEquals;
66
import static org.junit.Assert.assertTrue;
7-
import org.junit.BeforeClass;
87
import org.junit.Test;
98

109
public final class ParallelRadixSortTest {
1110

12-
@BeforeClass
13-
public static void setupBeforeClass() {
14-
// ParallelRadixSort.setInsertionSortThreshold(-1);
15-
// ParallelRadixSort.setMergesortThreshold(-1);
16-
// ParallelRadixSort.setMinimumThreadWorkload(-1);
17-
}
18-
1911
@Test
2012
public void testInsertionSort() {
2113
Random random = new Random(13L);

0 commit comments

Comments
 (0)