Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/03/17 01:31:10 (7 years ago)
Author:
pkimmesw
Message:

#2665 Fixed VectorExpression errors, Fixed BenchmarkSuite Problem Data View issues

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis.Base/Erc/Integer/IntegerConstantErcValue.cs

    r14905 r14909  
    77  public class IntegerConstantErcValue : ConstantsWeightedErcValue<int, IntArray> {
    88
    9     public IntegerConstantErcValue() : this(new int[0]) { }
     9    public IntegerConstantErcValue() : this(false, 1d) { }
    1010
    11     public IntegerConstantErcValue(params int[] constants)
    12       : base(new IntArray(constants)) {
     11    public IntegerConstantErcValue(params int[] constants) : this(true, 1d, constants) { }
     12
     13    public IntegerConstantErcValue(bool isEnabled, double weight = 1d, params int[] constants)
     14      : base(isEnabled, new IntArray(constants), weight) {
    1315      Name = "Integer constants";
    1416    }
Note: See TracChangeset for help on using the changeset viewer.