Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/28/17 23:33:27 (8 years ago)
Author:
pkimmesw
Message:

#2665 Set name properties of ERC values

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis.Base/Erc/IntegerVector/IntegerVectorConstantsErcValue.cs

    r14897 r14898  
    88  [StorableClass]
    99  public class IntegerVectorConstantsErcValue : VectorConstantsErcValue<int, IntArray> {
    10     public IntegerVectorConstantsErcValue() {
    11     }
     10    public IntegerVectorConstantsErcValue() : this(new int[0][]) { }
    1211
    13     public IntegerVectorConstantsErcValue(params int[][] values)
    14       : this(true, values) {
    15     }
     12    public IntegerVectorConstantsErcValue(params int[][] values) : this(true, values) { }
    1613
    1714    public IntegerVectorConstantsErcValue(bool isEnabled, params int[][] values)
    1815      : base(isEnabled, values.Select(v => new IntArray(v)).ToArray()) {
     16      Name = "Integer vector constants";
    1917    }
    2018
Note: See TracChangeset for help on using the changeset viewer.