Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/10/17 11:23:05 (8 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/Digits.cs

    r14909 r14952  
    44
    55  public class Digits : BenchmarkSuiteDataDescriptor {
    6     private const string name = "Digits";
     6    private const string name = "Digits - Hard";
    77    private const string fileName = "Digits.csv";
    88    private const string description = "Given an integer, print that integer’s digits each on their own line starting with the least significant digit.A negative integer should have the negative sign printed before the most significant digit.";
     
    3131          ErcProbability = 0.05,
    3232          IntegerErcOptions = new IntegerErcOptions(
    33             new IntegerRangeErcValue(-10, 10)),
     33            new IntegerRangeErc(-10, 10)),
    3434          CharErcOptions = new CharErcOptions(
    35             new IntegerConstantErcValue('\r'))
     35            new IntegerConstantErc('\n'))
    3636        }
    3737      };
Note: See TracChangeset for help on using the changeset viewer.