Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/10/17 11:23:05 (7 years ago)
Author:
pkimmesw
Message:

#2665 Added IsNoop to Expression, Made Expressions storable, Fixed Debugger, Fixed and improved problem data and result visualisation, Added custom ErcOption view, Added problem difficulty to problem data name

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problem.ProgramSynthesis.BenchmarkSuite/Problems/ReplaceSpaceWithNewline.cs

    r14909 r14952  
    55
    66  public class ReplaceSpaceWithNewline : BenchmarkSuiteDataDescriptor {
    7     private const string name = "Replace Space with Newline";
     7    private const string name = "Replace Space with Newline - Medium";
    88    private const string fileName = "ReplaceSpaceWithNewline.csv";
    99    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.";
     
    3232          ErcProbability = 0.05,
    3333          CharErcOptions = new CharErcOptions(
    34             new IntegerConstantErcValue(' ', '\r'),
    35             new IntegerRangeErcValue(0x20, 0x7e)),
     34            new IntegerConstantErc(' ', '\n'),
     35            new IntegerRangeErc(0x20, 0x7e)),
    3636          StringErcOptions = new StringErcOptions(
    37             new StringRandomErcValue {
     37            new StringRandomErc {
    3838              IsEnabled = true,
    3939              AllowLowercaseLetters = true,
Note: See TracChangeset for help on using the changeset viewer.