Last change
on this file since 17104 was
16996,
checked in by gkronber, 6 years ago
|
#2520 Update plugin dependencies and references for HL.MetaOptimization for new persistence
|
File size:
579 bytes
|
Line | |
---|
1 | using HeuristicLab.Data;
|
---|
2 | using HeuristicLab.Common;
|
---|
3 | using HEAL.Attic;
|
---|
4 |
|
---|
5 | namespace 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.