Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis.Base/Erc/Integer/IntegerErcOptions.cs @ 14909

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

#2665 Dynamic ErcValues, Separate Push from BenchmarkSuite Push

File size: 839 bytes
Line 
1namespace HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Integer {
2  using HeuristicLab.Common;
3  using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
4
5  [StorableClass]
6  public class IntegerErcOptions : ErcOption<int> {
7    public IntegerErcOptions() { }
8    public IntegerErcOptions(params IWeightedErcValueItem<int>[] values) : base(true, values) { }
9    public IntegerErcOptions(bool isEnabled, params IWeightedErcValueItem<int>[] values) : base(isEnabled, values) { }
10
11    [StorableConstructor]
12    protected IntegerErcOptions(bool deserializing) : base(deserializing) { }
13
14    public IntegerErcOptions(IntegerErcOptions origin, Cloner cloner) : base(origin, cloner) { }
15
16    public override IDeepCloneable Clone(Cloner cloner) {
17      return new IntegerErcOptions(this, cloner);
18    }
19  }
20}
Note: See TracBrowser for help on using the repository browser.