Changeset 14952 for branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problem.ProgramSynthesis.BenchmarkSuite/Problems/XWordLines.cs
- Timestamp:
- 05/10/17 11:23:05 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problem.ProgramSynthesis.BenchmarkSuite/Problems/XWordLines.cs
r14909 r14952 4 4 5 5 public class XWordLines : BenchmarkSuiteDataDescriptor { 6 private const string name = "X-Word Lines ";6 private const string name = "X-Word Lines - Hard"; 7 7 private const string fileName = "XWordLines.csv"; 8 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."; … … 31 31 ErcProbability = 0.05, 32 32 CharErcOptions = new CharErcOptions( 33 new IntegerConstantErc Value(' ', '\r')),33 new IntegerConstantErc(' ', '\n')), 34 34 } 35 35 };
Note: See TracChangeset
for help on using the changeset viewer.