Changeset 14952 for branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problem.ProgramSynthesis.BenchmarkSuite/Problems/CountOdds.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/CountOdds.cs
r14897 r14952 3 3 4 4 public class CountOdds : BenchmarkSuiteDataDescriptor { 5 private const string name = "Count Odds ";5 private const string name = "Count Odds - Hard"; 6 6 private const string fileName = "CountOdds.csv"; 7 7 private const string description = "Given a vector of integers, return the number of integers that are odd, without use of a specific even or odd instruction(but allowing instructions such as mod and quotient)"; … … 30 30 ErcProbability = 0.05, 31 31 IntegerErcOptions = new IntegerErcOptions( 32 new IntegerConstantErc Value(0, 1, 2),33 new IntegerRangeErc Value(-1000, 1000)),32 new IntegerConstantErc(0, 1, 2), 33 new IntegerRangeErc(-1000, 1000)), 34 34 } 35 35 };
Note: See TracChangeset
for help on using the changeset viewer.