[14875] | 1 | namespace HeuristicLab.BenchmarkSuite.Problems {
|
---|
[14897] | 2 | using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Char;
|
---|
| 3 | using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Integer;
|
---|
| 4 |
|
---|
[14875] | 5 | public class XWordLines : BenchmarkSuiteDataDescriptor {
|
---|
[14952] | 6 | private const string name = "X-Word Lines - Hard";
|
---|
[14875] | 7 | private const string fileName = "XWordLines.csv";
|
---|
| 8 | private const string description = "Given an integer X and a string that can contain spaces and newlines, print the string with exactly X words per line.The last line may have fewer than X words.";
|
---|
| 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 2; } }
|
---|
| 14 | protected override int OutputArgumentCount { get { return 1; } }
|
---|
| 15 |
|
---|
| 16 | public override ProblemData CreateProblemData() {
|
---|
[15017] | 17 | return new ProblemData(ProblemType.XWordLines) {
|
---|
[14875] | 18 | Name = Name,
|
---|
| 19 | Description = Description,
|
---|
| 20 | Examples = CloneExamples(),
|
---|
| 21 | BestResult = 0,
|
---|
| 22 | WorstResult = 100,
|
---|
| 23 | InputArgumentTypes = new[] { ExampleArgumentType.Integer, ExampleArgumentType.String },
|
---|
[14909] | 24 | OutputArgumentTypes = new[] { ExampleArgumentType.Print },
|
---|
[14875] | 25 | TrainingCount = 150,
|
---|
| 26 | TestCount = 2000,
|
---|
[14897] | 27 | EnabledDataTypes = DataTypes.Exec | DataTypes.Integer | DataTypes.Boolean | DataTypes.Char | DataTypes.String | DataTypes.Print,
|
---|
[14875] | 28 | MaxSize = 800,
|
---|
| 29 | EvalLimit = 1600,
|
---|
| 30 | ErcOptions = {
|
---|
| 31 | ErcProbability = 0.05,
|
---|
[14897] | 32 | CharErcOptions = new CharErcOptions(
|
---|
[14952] | 33 | new IntegerConstantErc(' ', '\n')),
|
---|
[14875] | 34 | }
|
---|
| 35 | };
|
---|
| 36 | }
|
---|
| 37 |
|
---|
| 38 | protected override Example ParseExample(string[] input, string[] output) {
|
---|
| 39 | return new Example {
|
---|
| 40 | InputArgs = input,
|
---|
| 41 | OutputArgs = output,
|
---|
[14897] | 42 | InputInteger = ExampleArgumentConverter.ConvertIntegers(input[1]),
|
---|
| 43 | InputString = new[] { input[0] },
|
---|
| 44 | OutputPrint = output[0],
|
---|
[14875] | 45 | };
|
---|
| 46 | }
|
---|
| 47 | }
|
---|
| 48 | }
|
---|