Changeset 14952 for branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problem.ProgramSynthesis.BenchmarkSuite/Problems/VectorSummed.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/VectorSummed.cs
r14897 r14952 4 4 5 5 public class VectorSummed : BenchmarkSuiteDataDescriptor { 6 private const string name = "Vector Summed ";6 private const string name = "Vector Summed - Hard"; 7 7 private const string fileName = "VectorSummed.csv"; 8 8 private const string description = "Given two equal-sized vectors of integers, return a vector of integers that contains the sum of the input vectors at each index."; … … 31 31 ErcProbability = 0.05, 32 32 IntegerVectorErcOptions = new IntegerVectorErcOptions( 33 new IntegerVectorConstantsErc Value(new int[0])),33 new IntegerVectorConstantsErc(new int[0])), 34 34 IntegerErcOptions = new IntegerErcOptions( 35 new IntegerRangeErc Value(-1000, 1000))35 new IntegerRangeErc(-1000, 1000)) 36 36 } 37 37 };
Note: See TracChangeset
for help on using the changeset viewer.