Changeset 14952 for branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problem.ProgramSynthesis.BenchmarkSuite/Problems/Median.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/Median.cs
r14897 r14952 3 3 4 4 public class Median : BenchmarkSuiteDataDescriptor { 5 private const string name = "Median ";5 private const string name = "Median - Medium"; 6 6 private const string fileName = "Median.csv"; 7 7 private const string description = "Given 3 integers, print their median."; … … 30 30 ErcProbability = 0.05, 31 31 IntegerErcOptions = new IntegerErcOptions( 32 new IntegerConstantErc Value(0),33 new IntegerRangeErc Value(-1000, 100))32 new IntegerConstantErc(0), 33 new IntegerRangeErc(-1000, 100)) 34 34 } 35 35 };
Note: See TracChangeset
for help on using the changeset viewer.