Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problem.ProgramSynthesis.BenchmarkSuite/Problems/Digits.cs @ 14727

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

#2665 PushGP HL Integration, Views, Parameters

File size: 891 bytes
Line 
1//namespace HeuristicLab.BenchmarkSuite.Problems {
2//  using System.Linq;
3
4//  using HeuristicLab.BenchmarkSuite.ProblemData;
5
6//  public class Digits : BenchmarkSuiteDataDescriptor<long, long[]> {
7//    private const string displayMame = "Digits";
8//    private const string description = "";
9
10//    public override string Name { get { return displayMame; } }
11//    public override string Description { get { return description; } }
12
13//    protected override int InputArgumentCount { get { return 1; } }
14//    protected override int OutputArgumentCount { get { return 1; } }
15
16//    public override long ConvertInput(string[] input) {
17//      return ConvertInteger(input[0]);
18//    }
19
20//    public override long[] ConvertOutput(string[] output) {
21//      return SplitByNewLine(output[0])
22//        .Select(ConvertInteger)
23//        .ToArray();
24//    }
25//  }
26//}
Note: See TracBrowser for help on using the repository browser.