예제 #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));
 }