Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problem.ProgramSynthesis.BenchmarkSuite/Problems/WallisPi.cs @ 14875

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

#2665 BenchmarkSuite, all examples, partially tested, VectorExpressions added

File size: 2.0 KB
Line 
1namespace HeuristicLab.BenchmarkSuite.Problems {
2  public class WallisPi : BenchmarkSuiteDataDescriptor {
3    private const string name = "Wallis Pi";
4    private const string fileName = "WallisPi.csv";
5    private const string description = " John Wallis gave a infinite product that converges to π/4. Given an integer input n, compute an approximation of this product out to n terms.Results are rounded to 5 decimal place";
6
7    protected override string FileName { get { return fileName; } }
8    public override string Name { get { return name; } }
9    public override string Description { get { return description; } }
10    protected override int InputArgumentCount { get { return 1; } }
11    protected override int OutputArgumentCount { get { return 1; } }
12
13    public override ProblemData CreateProblemData() {
14      return new ProblemData {
15        Name = Name,
16        Description = Description,
17        Examples = CloneExamples(),
18        BestResult = 0,
19        WorstResult = 1,
20        InputArgumentTypes = new[] { ExampleArgumentType.Integer },
21        OutputArgumentTypes = new[] { ExampleArgumentType.Float },
22        TrainingCount = 150,
23        TestCount = 50,
24        EnabledDataTypes = DataTypes.Exec | DataTypes.Integer | DataTypes.Float | DataTypes.Boolean,
25        MaxSize = 600,
26        EvalLimit = 8000,
27        ErcOptions = {
28          ErcProbability = 0.05,
29          FloatErcOptions = {
30            IsEnabled = true,
31            Start = -500,
32            End = 500,
33          },
34          IntegerErcOptions = {
35            IsEnabled = true,
36            Start = -500,
37            End = 500
38          }
39        }
40      };
41    }
42
43    protected override Example ParseExample(string[] input, string[] output) {
44      return new Example {
45        InputArgs = input,
46        OutputArgs = output,
47        InputInteger = ExampleArgumentConverter.ConvertIntegers(input),
48        OutputFloat = ExampleArgumentConverter.ConvertDoubles(output),
49      };
50    }
51  }
52}
Note: See TracBrowser for help on using the repository browser.