Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problem.ProgramSynthesis.BenchmarkSuite/BenchmarkSuiteInstanceProvider.cs @ 15345

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

#2665 Fixed Lexicase

File size: 2.6 KB
Line 
1using System;
2using System.Collections.Generic;
3
4namespace HeuristicLab.BenchmarkSuite {
5
6  using HeuristicLab.BenchmarkSuite.Problems;
7  using HeuristicLab.Problems.Instances;
8
9  public class BenchmarkSuiteInstanceProvider : ProblemInstanceProvider<ProblemData> {
10    private const string name = "General Program Synthesis Benchmark Suite";
11    private const string referencePublication =
12      "T. Helmuth and L. Spector, \"Detailed Problem Descriptions for General Program Synthesis Benchmark Suite\", Technical Report UM-CS-2015-006, School of Computer Science, University of Massachusetts Amherst, 2015.";
13    private static readonly Uri webLink = new Uri("https://web.cs.umass.edu/publication/docs/2015/UM-CS-2015-006.pdf");
14
15    public override string Name
16    {
17      get { return name; }
18    }
19
20    public override string Description
21    {
22      get { return ""; }
23    }
24
25    public override Uri WebLink
26    {
27      get { return webLink; }
28    }
29
30    public override string ReferencePublication
31    {
32      get { return referencePublication; }
33    }
34
35    public override IEnumerable<IDataDescriptor> GetDataDescriptors() {
36      yield return new Checksum();
37      yield return new CollatzNumbers();
38      yield return new CompareStringLengths();
39      yield return new CountOdds();
40      yield return new Digits();
41      yield return new DoubleLetters();
42      yield return new EvenSquares();
43      yield return new ForLoopIndex();
44      yield return new Grades();
45      yield return new LastIndexOfZero();
46      yield return new Median();
47      yield return new MedianIntegerError();
48      yield return new MirrorImage();
49      yield return new NegativeToZero();
50      yield return new NumberIO();
51      yield return new PigLatin();
52      yield return new ReplaceSpaceWithNewline();
53      yield return new ScrabbleScore();
54      yield return new Smallest();
55      yield return new SmallOrLarge();
56      yield return new StringDifferences();
57      yield return new StringLengthsBackwards();
58      yield return new SumOfSquares();
59      yield return new SuperAnagrams();
60      yield return new Syllables();
61      yield return new VectorAverage();
62      yield return new VectorSummed();
63      yield return new WallisPi();
64      yield return new WordStats();
65      yield return new XWordLines();
66    }
67
68    public override ProblemData LoadData(IDataDescriptor descriptor) {
69      var benchmarkSuiteDataDescriptor = (IBenchmarkSuiteDataDescriptor)descriptor;
70
71      return benchmarkSuiteDataDescriptor.CreateProblemData();
72    }
73  }
74}
Note: See TracBrowser for help on using the repository browser.