All Downloads are FREE. Search and download functionalities are using the official Maven repository.

me.geso.avans.Main Maven / Gradle / Ivy

There is a newer version: 2.6.0
Show newest version
package me.geso.avans;

import org.openjdk.jmh.runner.Runner;
import org.openjdk.jmh.runner.options.Options;
import org.openjdk.jmh.runner.options.OptionsBuilder;

public class Main {

    public static void main(String[] args) throws Exception {
        Options opt = new OptionsBuilder()
                .include(".*Benchmark")
                .warmupIterations(10)
                .measurementIterations(5)
                .forks(2)
                .build();
        new Runner(opt).run();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy