de.rwth.i2.attestorExamples.ForesterSLL Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of attestor-examples Show documentation
Show all versions of attestor-examples Show documentation
Collection of executable benchmarks for Attestor.
package de.rwth.i2.attestorExamples;
import jmhBenchmarkHelper.BenchmarkHelper;
import org.openjdk.jmh.annotations.Benchmark;
import de.rwth.i2.attestor.main.Attestor;
public class ForesterSLL {
@Benchmark
public void sll_rev(){
BenchmarkHelper.builder()
.expectFinalStates(1)
.build()
.run();
}
@Benchmark
public void sll_delete(){
BenchmarkHelper.builder()
.expectFinalStates(1)
.build()
.run();
}
@Benchmark
public void sll_bubblesort(){
BenchmarkHelper.builder()
.expectFinalStates(1)
.build()
.run();
}
@Benchmark
public void sll_insertsort(){
BenchmarkHelper.builder()
.expectFinalStates(1)
.build()
.run();
}
@Benchmark
public void sll_headptr(){
BenchmarkHelper.builder()
.expectFinalStates(1)
.build()
.run();
}
@Benchmark
public void sll_listofclists(){
BenchmarkHelper.builder()
.expectFinalStates(1)
.build()
.run();
}
}