Changeset 14897 for branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problem.ProgramSynthesis.BenchmarkSuite/Problems/XWordLines.cs
- Timestamp:
- 04/28/17 22:52:08 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problem.ProgramSynthesis.BenchmarkSuite/Problems/XWordLines.cs
r14875 r14897 1 1 namespace HeuristicLab.BenchmarkSuite.Problems { 2 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Char; 3 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Integer; 4 2 5 public class XWordLines : BenchmarkSuiteDataDescriptor { 3 6 private const string name = "X-Word Lines"; … … 22 25 TrainingCount = 150, 23 26 TestCount = 2000, 24 EnabledDataTypes = DataTypes.Exec | DataTypes.Integer | DataTypes.Boolean | DataTypes.Char | DataTypes.String ,27 EnabledDataTypes = DataTypes.Exec | DataTypes.Integer | DataTypes.Boolean | DataTypes.Char | DataTypes.String | DataTypes.Print, 25 28 MaxSize = 800, 26 29 EvalLimit = 1600, 27 30 ErcOptions = { 28 31 ErcProbability = 0.05, 29 CharErcOptions = { 30 IsEnabled = true, 31 Constants = new [] { ' ', '\r' } 32 } 32 CharErcOptions = new CharErcOptions( 33 new IntegerConstantErcValue(' ', '\r')), 33 34 } 34 35 }; … … 39 40 InputArgs = input, 40 41 OutputArgs = output, 41 InputInteger = ExampleArgumentConverter.ConvertIntegers(input[ 0]),42 InputString = new[] { input[ 1] },43 Output String = output,42 InputInteger = ExampleArgumentConverter.ConvertIntegers(input[1]), 43 InputString = new[] { input[0] }, 44 OutputPrint = output[0], 44 45 }; 45 46 }
Note: See TracChangeset
for help on using the changeset viewer.