Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problem.ProgramSynthesis.BenchmarkSuite/Problems/Syllables.cs @ 14952

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

#2665 Added IsNoop to Expression, Made Expressions storable, Fixed Debugger, Fixed and improved problem data and result visualisation, Added custom ErcOption view, Added problem difficulty to problem data name

File size: 2.5 KB
Line 
1namespace HeuristicLab.BenchmarkSuite.Problems {
2  using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Char;
3  using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Integer;
4  using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.String;
5
6  public class Syllables : BenchmarkSuiteDataDescriptor {
7    private const string name = "Syllables - Hard";
8    private const string fileName = "Syllables.csv";
9    private const string description = "Given a string containing symbols, spaces, digits, and lowercase letters, count the number of occurrences of vowels(a, e, i, o, u, y) in the string and print that number as X in The number of syllables is X.";
10
11    protected override string FileName { get { return fileName; } }
12    public override string Name { get { return name; } }
13    public override string Description { get { return description; } }
14    protected override int InputArgumentCount { get { return 1; } }
15    protected override int OutputArgumentCount { get { return 1; } }
16
17    public override ProblemData CreateProblemData() {
18      return new ProblemData {
19        Name = Name,
20        Description = Description,
21        Examples = CloneExamples(),
22        BestResult = 0,
23        WorstResult = 100,
24        InputArgumentTypes = new[] { ExampleArgumentType.String },
25        OutputArgumentTypes = new[] { ExampleArgumentType.Print },
26        TrainingCount = 100,
27        TestCount = 1000,
28        EnabledDataTypes = DataTypes.Exec | DataTypes.Integer | DataTypes.Boolean | DataTypes.Char | DataTypes.String,
29        MaxSize = 800,
30        EvalLimit = 1600,
31        ErcOptions = {
32          ErcProbability = 0.05,
33          StringErcOptions = new StringErcOptions(
34            new StringConstantErc("The number of syllables is ", "aeiouy" ),
35            new StringRandomErc {
36              AllowLowercaseLetters = true,
37              AllowUppercaseLetters = false,
38              AllowDigits = true,
39              AllowSymbols = true,
40              AllowSpace = true,
41              SpaceProbability = 0.2,
42              VowelProbability = 0.2
43            }),
44          CharErcOptions = new CharErcOptions (
45            new IntegerConstantErc('a', 'e', 'i', 'o', 'u'),
46            new IntegerRangeErc(0x20, 0x7e))
47        }
48      };
49    }
50
51    protected override Example ParseExample(string[] input, string[] output) {
52      return new Example {
53        InputArgs = input,
54        OutputArgs = output,
55        InputString = input,
56        OutputPrint = output[0],
57      };
58    }
59  }
60}
Note: See TracBrowser for help on using the repository browser.