Free cookie consent management tool by TermsFeed Policy Generator

source: addons/HeuristicLab.MetaOptimization/HeuristicLab.Problems.MetaOptimization/3.3/Encoding/NullValue.cs @ 16996

Last change on this file since 16996 was 16996, checked in by gkronber, 5 years ago

#2520 Update plugin dependencies and references for HL.MetaOptimization for new persistence

File size: 579 bytes
Line 
1using HeuristicLab.Data;
2using HeuristicLab.Common;
3using HEAL.Attic;
4
5namespace HeuristicLab.Problems.MetaOptimization {
6  [StorableType("EFF4541F-45B2-417D-8742-BDD8477384D7")]
7  public class NullValue : ValueTypeValue<int> {
8
9    public NullValue() { }
10    [StorableConstructor]
11    protected NullValue(StorableConstructorFlag _) : base(_) { }
12    protected NullValue(NullValue original, Cloner cloner)
13      : base(original, cloner) {
14    }
15    public override IDeepCloneable Clone(Cloner cloner) {
16      return new NullValue(this, cloner);
17    }
18  }
19}
Note: See TracBrowser for help on using the repository browser.