Changeset 14952 for branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problem.ProgramSynthesis.BenchmarkSuite/Problems/CollatzNumbers.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/CollatzNumbers.cs
r14897 r14952 3 3 4 4 public class CollatzNumbers : BenchmarkSuiteDataDescriptor { 5 private const string name = "Collatz Numbers ";5 private const string name = "Collatz Numbers - Hard"; 6 6 private const string fileName = "CollatzNumbers.csv"; 7 7 private const string description = "Given an integer, find the number of terms in the Collatz(hailstone) sequence starting from that integer."; … … 30 30 ErcProbability = 0.05, 31 31 IntegerErcOptions = new IntegerErcOptions( 32 new IntegerConstantErc Value(0, 1),33 new IntegerRangeErc Value(-100, 100))32 new IntegerConstantErc(0, 1), 33 new IntegerRangeErc(-100, 100)) 34 34 } 35 35 };
Note: See TracChangeset
for help on using the changeset viewer.