Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/10/17 11:23:05 (7 years ago)
Author:
pkimmesw
Message:

#2665 Added IsNoop to Expression, Made Expressions storable, Fixed Debugger, Fixed and improved problem data and result visualisation, Added custom ErcOption view, Added problem difficulty to problem data name

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problem.ProgramSynthesis.BenchmarkSuite/Problems/VectorSummed.cs

    r14897 r14952  
    44
    55  public class VectorSummed : BenchmarkSuiteDataDescriptor {
    6     private const string name = "Vector Summed";
     6    private const string name = "Vector Summed - Hard";
    77    private const string fileName = "VectorSummed.csv";
    88    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.";
     
    3131          ErcProbability = 0.05,
    3232          IntegerVectorErcOptions = new IntegerVectorErcOptions(
    33             new IntegerVectorConstantsErcValue(new int[0])),
     33            new IntegerVectorConstantsErc(new int[0])),
    3434          IntegerErcOptions = new IntegerErcOptions(
    35             new IntegerRangeErcValue(-1000, 1000))
     35            new IntegerRangeErc(-1000, 1000))
    3636        }
    3737      };
Note: See TracChangeset for help on using the changeset viewer.