Ejemplo n.º 1
0
 public BenchmarkResult(IList <double> times, int warmup, int rounds)
 {
     this.average = Average.From(times.GetView(warmup, times.Count - warmup)); // LUCENENET: Converted end index to length
 }
Ejemplo n.º 2
0
 public BenchmarkResult(IList <double> times, int warmup, int rounds)
 {
     this.average = Average.From(times.SubList(warmup, times.Count));
 }