Changeset 14952 for branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problem.ProgramSynthesis.BenchmarkSuite/Problems/NegativeToZero.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/NegativeToZero.cs
r14897 r14952 4 4 5 5 public class NegativeToZero : BenchmarkSuiteDataDescriptor { 6 private const string name = "Negative to Zero ";6 private const string name = "Negative to Zero - Medium"; 7 7 private const string fileName = "NegativeToZero.csv"; 8 8 private const string description = "Given a vector of integers, return the vector where all negative integers have been replaced by 0."; … … 31 31 ErcProbability = 0.05, 32 32 IntegerErcOptions = new IntegerErcOptions( 33 new IntegerConstantErc Value(0)),33 new IntegerConstantErc(0)), 34 34 IntegerVectorErcOptions = new IntegerVectorErcOptions( 35 new IntegerVectorConstantsErc Value(new int[0]))35 new IntegerVectorConstantsErc(new int[0])) 36 36 } 37 37 };
Note: See TracChangeset
for help on using the changeset viewer.