Changeset 14897 for branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problem.ProgramSynthesis.BenchmarkSuite/Problems/CountOdds.cs
- Timestamp:
- 04/28/17 22:52:08 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problem.ProgramSynthesis.BenchmarkSuite/Problems/CountOdds.cs
r14875 r14897 1 1 namespace HeuristicLab.BenchmarkSuite.Problems { 2 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc ;2 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Integer; 3 3 4 4 public class CountOdds : BenchmarkSuiteDataDescriptor { … … 29 29 ErcOptions = { 30 30 ErcProbability = 0.05, 31 IntegerErcOptions = { 32 IsEnabled = true, 33 Constants = new [] { 0, 1, 2}, 34 Start = -1000, 35 End = 1000 36 } 31 IntegerErcOptions = new IntegerErcOptions( 32 new IntegerConstantErcValue(0, 1, 2), 33 new IntegerRangeErcValue(-1000, 1000)), 37 34 } 38 35 };
Note: See TracChangeset
for help on using the changeset viewer.