adding IMPL_M_1Test sort method to the abstract list sorting test

This commit is contained in:
M-H9 2025-01-15 22:53:17 +01:00
parent a684cb30ec
commit 1ab2bdc2a0
5 changed files with 12 additions and 5 deletions

View File

@ -23,7 +23,7 @@ public class JmhCgl extends JmhBase {
// Either all or a selection of sort implementations.
//@Param()
@Param({"TIM_SORT", "FINN_SORT", "IMPL_M_11"})
@Param({"TIM_SORT", "FASTER_FINN_SORT", "IMPL_M_11"})
SortEnum sortEnum;
@Override

View File

@ -0,0 +1,7 @@
package de.uni_marburg.powersort.sort;
public class IMPL_M_1Test extends AbstractSortTest {
IMPL_M_1Test() {
sortAlg = SortEnum.IMPL_M_11;
}
}