source:
branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problem.ProgramSynthesis.BenchmarkSuite/ArtificialDataDescriptor.cs
@
18132
Last change on this file since 18132 was 14727, checked in by pkimmesw, 8 years ago | |
---|---|
File size: 367 bytes |
Line | |
---|---|
1 | namespace HeuristicLab.BenchmarkSuite |
2 | { |
3 | using System.Collections.Generic; |
4 | |
5 | using HeuristicLab.Problems.Instances; |
6 | |
7 | public abstract class ArtificialDataDescriptor : IDataDescriptor |
8 | { |
9 | public abstract string Description { get; } |
10 | |
11 | public abstract string Name { get; } |
12 | |
13 | protected abstract IEnumerable<Example> GenerateExamples(); |
14 | } |
15 | } |
Note: See TracBrowser
for help on using the repository browser.