示例#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
 }
示例#2
0
 public BenchmarkResult(IList <double> times, int warmup, int rounds)
 {
     this.average = Average.From(times.SubList(warmup, times.Count));
 }