mirror of
https://gitlab.uni-marburg.de/langbeid/powersort.git
synced 2025-02-23 00:45:22 +01:00
benchmark: changed param
This commit is contained in:
parent
2e9c2ca2bf
commit
3f3eef67d4
@ -17,13 +17,17 @@ import org.openjdk.jmh.annotations.State;
|
|||||||
@State(Scope.Benchmark)
|
@State(Scope.Benchmark)
|
||||||
public class JmhCgl extends JmhBase {
|
public class JmhCgl extends JmhBase {
|
||||||
// Either all or a selection of input lists.
|
// Either all or a selection of input lists.
|
||||||
@Param()
|
//@Param()
|
||||||
//@Param({"ASCENDING_RUNS", "ASCENDING_RUNS_WITH_OVERLAP", "MANY_ASCENDING_RUNS", "MANY_ASCENDING_RUNS_WITH_OVERLAP"})
|
@Param({
|
||||||
|
//"RANDOM_INTEGERS",
|
||||||
|
"ASCENDING_RUNS", "ASCENDING_RUNS_WITH_OVERLAP",
|
||||||
|
"MANY_ASCENDING_RUNS", "MANY_ASCENDING_RUNS_WITH_OVERLAP"
|
||||||
|
})
|
||||||
CglEnum dataEnum;
|
CglEnum dataEnum;
|
||||||
|
|
||||||
// Either all or a selection of sort implementations.
|
// Either all or a selection of sort implementations.
|
||||||
//@Param()
|
//@Param()
|
||||||
@Param({"TIM_SORT", "FASTER_FINN_SORT", "IMPL_M_40"})
|
@Param({"TIM_SORT", "FASTER_FINN_SORT", "IMPL_M_50"})
|
||||||
SortEnum sortEnum;
|
SortEnum sortEnum;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@ -42,4 +46,4 @@ public class JmhCgl extends JmhBase {
|
|||||||
public void benchmark() {
|
public void benchmark() {
|
||||||
sortImpl.sort(workingCopy);
|
sortImpl.sort(workingCopy);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user