Free cookie consent management tool by TermsFeed Policy Generator

source: misc/tools/HeuristicLab.Benchmarks/HeuristicLab.Benchmarks/Program.cs @ 16299

Last change on this file since 16299 was 16299, checked in by bburlacu, 5 years ago

#2963: Add first version of HeuristicLab.Benchmarks

File size: 450 bytes
RevLine 
[16299]1using BenchmarkDotNet.Running;
2
3namespace HeuristicLab.Benchmarks {
4  internal static class Program {
5    private static void Main(string[] args) {
6      //var summary = BenchmarkRunner.Run<SubtreeCrossoverPerformance>();
7      var summary = BenchmarkRunner.Run<InterpreterPerformance>();
8      //var summary = BenchmarkRunner.Run<RandomPerformance>();
9      //var summary = BenchmarkRunner.Run<TreeDistancePerformance>();
10    }
11  }
12}
Note: See TracBrowser for help on using the repository browser.