Free cookie consent management tool by TermsFeed Policy Generator

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

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

#2665 Made ErcOptions checkable

File size: 834 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    public override IDeepCloneable Clone(Cloner cloner) {
22      return new IntegerConstantErcValue(this, cloner);
23    }
24  }
25}
Note: See TracBrowser for help on using the repository browser.