Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problem.ProgramSynthesis.BenchmarkSuite/IBenchmarkSuiteDataDescriptor.cs @ 14744

Last change on this file since 14744 was 14744, checked in by pkimmesw, 7 years ago

#2665 Renamings due to typos, ManagedPool tests, Skip Noops in Debugger

File size: 682 bytes
Line 
1namespace HeuristicLab.BenchmarkSuite {
2  using HeuristicLab.BenchmarkSuite.Problems;
3  using HeuristicLab.Core;
4  using HeuristicLab.Problems.Instances;
5
6  public interface IBenchmarkSuiteDataDescriptor : IDataDescriptor, INamedItem {
7    //Data CreateData();
8    Example[] Examples { get; }
9
10    string Name { get; }
11    string Description { get; }
12    int OriginalTrainingCount { get; }
13    int OriginalTestCount { get; }
14    int BestResult { get; }
15    int WorstResult { get; }
16    int InputArgumentCount { get; }
17    int OutputArgumentCount { get; }
18    int TotalArgumentCount { get; }
19
20    Example ParseExample(string[] input, string[] output);
21  }
22}
Note: See TracBrowser for help on using the repository browser.