Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PushGP/HeuristicLab.Algorithms.PushGP/HeuristicLab.BenchmarkSuite/ProblemData/IData.cs @ 14602

Last change on this file since 14602 was 14602, checked in by pkimmesw, 8 years ago

#2665 PushGP HL Integration

File size: 219 bytes
Line 
1namespace HeuristicLab.BenchmarkSuite.ProblemData {
2  public interface IData {
3    int TrainingCount { get; }
4    int TestCount { get; }
5
6    double WorstResult { get; }
7    double BestResult { get; }
8  }
9}
Note: See TracBrowser for help on using the repository browser.