1 | using HeuristicLab.Problems.ProgramSynthesis;
|
---|
2 |
|
---|
3 | namespace HeuristicLab.BenchmarkSuite.Problems {
|
---|
4 | public class SmallOrLarge : BenchmarkSuiteDataDescriptor {
|
---|
5 | private const string name = "Small or Large - Hard";
|
---|
6 | private const string fileName = "SmallOrLarge.csv";
|
---|
7 | private const string description =
|
---|
8 | "Given an integer n, print “small” if n < 1000 and “large” if n ≥ 2000 (and nothing if 1000 ≤ n < 2000).";
|
---|
9 |
|
---|
10 | protected override string FileName { get { return fileName; } }
|
---|
11 | public override string Name { get { return name; } }
|
---|
12 | public override string Description { get { return description; } }
|
---|
13 | protected override int InputArgumentCount { get { return 1; } }
|
---|
14 | protected override int OutputArgumentCount { get { return 1; } }
|
---|
15 |
|
---|
16 | public override ProblemData CreateProblemData() {
|
---|
17 | return new ProblemData(ProblemType.SmallOrLarge) {
|
---|
18 | Name = Name,
|
---|
19 | Description = Description,
|
---|
20 | ProgramExecutionBudget = 30000000,
|
---|
21 | Examples = CloneExamples(),
|
---|
22 | BestResult = 0,
|
---|
23 | WorstResult = 5000,
|
---|
24 | InputArgumentTypes = new[] { ExampleArgumentType.Integer },
|
---|
25 | OutputArgumentTypes = new[] { ExampleArgumentType.Print },
|
---|
26 | TrainingCount = 100,
|
---|
27 | TestCount = 1000,
|
---|
28 | EnabledDataTypes = DataTypes.Exec | DataTypes.Integer | DataTypes.Boolean | DataTypes.String | DataTypes.Print,
|
---|
29 | MaxSize = 200,
|
---|
30 | EvalLimit = 300,
|
---|
31 | ErcOptions = {
|
---|
32 | ErcProbability = 0.05,
|
---|
33 | IntegerErcOptions = new IntegerErcOptions(
|
---|
34 | new IntegerRangeErc(-10000, 10000)),
|
---|
35 | StringErcOptions = new StringErcOptions(
|
---|
36 | new StringConstantErc("small", "large"))
|
---|
37 | }
|
---|
38 | };
|
---|
39 | }
|
---|
40 |
|
---|
41 | protected override Example ParseExample(string[] input, string[] output) {
|
---|
42 | return new Example {
|
---|
43 | InputArgs = input,
|
---|
44 | OutputArgs = output,
|
---|
45 | InputInteger = ExampleArgumentConverter.ConvertIntegers(input[0]),
|
---|
46 | OutputPrint = output[0]
|
---|
47 | };
|
---|
48 | }
|
---|
49 | }
|
---|
50 | }
|
---|