Changeset 14952 for branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problem.ProgramSynthesis.BenchmarkSuite/Problems/Digits.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/Digits.cs
r14909 r14952 4 4 5 5 public class Digits : BenchmarkSuiteDataDescriptor { 6 private const string name = "Digits ";6 private const string name = "Digits - Hard"; 7 7 private const string fileName = "Digits.csv"; 8 8 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."; … … 31 31 ErcProbability = 0.05, 32 32 IntegerErcOptions = new IntegerErcOptions( 33 new IntegerRangeErc Value(-10, 10)),33 new IntegerRangeErc(-10, 10)), 34 34 CharErcOptions = new CharErcOptions( 35 new IntegerConstantErc Value('\r'))35 new IntegerConstantErc('\n')) 36 36 } 37 37 };
Note: See TracChangeset
for help on using the changeset viewer.