Changeset 14952 for branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problem.ProgramSynthesis.BenchmarkSuite/Problems/ReplaceSpaceWithNewline.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/ReplaceSpaceWithNewline.cs
r14909 r14952 5 5 6 6 public class ReplaceSpaceWithNewline : BenchmarkSuiteDataDescriptor { 7 private const string name = "Replace Space with Newline ";7 private const string name = "Replace Space with Newline - Medium"; 8 8 private const string fileName = "ReplaceSpaceWithNewline.csv"; 9 9 private const string description = " Given a string input, print the string, replacing spaces with newlines.Also, return the integer count of the non- whitespace characters. The input string will not have tabs or newlines."; … … 32 32 ErcProbability = 0.05, 33 33 CharErcOptions = new CharErcOptions( 34 new IntegerConstantErc Value(' ', '\r'),35 new IntegerRangeErc Value(0x20, 0x7e)),34 new IntegerConstantErc(' ', '\n'), 35 new IntegerRangeErc(0x20, 0x7e)), 36 36 StringErcOptions = new StringErcOptions( 37 new StringRandomErc Value{37 new StringRandomErc { 38 38 IsEnabled = true, 39 39 AllowLowercaseLetters = true,
Note: See TracChangeset
for help on using the changeset viewer.