1
0
Fork 0
mirror of https://github.com/graphhopper/jsprit.git synced 2020-01-24 07:45:05 +01:00

improve benchmarking

This commit is contained in:
oblonski 2013-07-01 02:49:04 +02:00
parent a6a671d484
commit fa8d97b7e9
3 changed files with 174 additions and 32 deletions

View file

@ -0,0 +1,9 @@
package util;
import java.util.Collection;
import analysis.ConcurrentBenchmarker.BenchmarkResult;
public interface BenchmarkWriter {
public void write(Collection<BenchmarkResult> results);
}