<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">public abstract class Benchmark {
    
    public abstract void benchmark();
    
    public final long repeat(int count) {
	long start = System.currentTimeMillis();
	for (int i = 0; i &lt; count; ++i) {
	    benchmark();
	}
	return (System.currentTimeMillis() - start);
    }
}
</pre></body></html>