mirror of
https://gitlab.uni-marburg.de/langbeid/powersort.git
synced 2025-01-21 19:50:35 +01:00
adding IMPL_M_1Test sort method to the abstract list sorting test
This commit is contained in:
parent
a684cb30ec
commit
1ab2bdc2a0
@ -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
|
||||
@ -42,4 +42,4 @@ public class JmhCgl extends JmhBase {
|
||||
public void benchmark() {
|
||||
sortImpl.sort(workingCopy);
|
||||
}
|
||||
}
|
||||
}
|
@ -4,4 +4,4 @@ public class ASortTest extends AbstractSortTest {
|
||||
ASortTest() {
|
||||
sortAlg = SortEnum.ASORT;
|
||||
}
|
||||
}
|
||||
}
|
@ -5,4 +5,4 @@ public class FasterFinnSortTest extends AbstractSortTest {
|
||||
sortAlg = SortEnum.FASTER_FINN_SORT;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
@ -4,4 +4,4 @@ public class FinnSortTest extends AbstractSortTest {
|
||||
FinnSortTest() {
|
||||
sortAlg = SortEnum.FINN_SORT;
|
||||
}
|
||||
}
|
||||
}
|
@ -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;
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user