Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis.Base/Erc/Integer/IntegerConstantErcValue.cs @ 14898

Last change on this file since 14898 was 14898, checked in by pkimmesw, 7 years ago

#2665 Set name properties of ERC values

File size: 839 bytes
Line 
1namespace HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Integer {
2  using Common;
3  using Data;
4  using Persistence.Default.CompositeSerializers.Storable;
5
6  [StorableClass]
7  public class IntegerConstantErcValue : ConstantsWeightedErcValue<int, IntArray> {
8
9    public IntegerConstantErcValue() : this(new int[0]) { }
10
11    public IntegerConstantErcValue(params int[] constants)
12      : base(new IntArray(constants)) {
13      Name = "Integer constants";
14    }
15
16    [StorableConstructor]
17    public IntegerConstantErcValue(bool deserializing) : base(deserializing) { }
18
19    public IntegerConstantErcValue(IntegerConstantErcValue origin, Cloner cloner) : base(origin, cloner) {
20    }
21
22    public override IDeepCloneable Clone(Cloner cloner) {
23      return new IntegerConstantErcValue(this, cloner);
24    }
25  }
26}
Note: See TracBrowser for help on using the repository browser.