source:
branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problem.ProgramSynthesis.BenchmarkSuite/ArtificialDataDescriptor.cs
@
14897
Last change on this file since 14897 was 14727, checked in by pkimmesw, 8 years ago | |
---|---|
File size: 367 bytes |
Rev | Line | |
---|---|---|
[14727] | 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.