Free cookie consent management tool by TermsFeed Policy Generator

source: addons/HeuristicLab.PushGP/HeuristicLab.Problem.ProgramSynthesis.BenchmarkSuite/ArtificialDataDescriptor.cs @ 17777

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

#2665 PushGP HL Integration, Views, Parameters

File size: 367 bytes
Line 
1namespace 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.