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
|
Rev | Line | |
---|
[16996] | 1 | using HeuristicLab.Data;
|
---|
[5112] | 2 | using HeuristicLab.Common;
|
---|
[16574] | 3 | using HEAL.Attic;
|
---|
[5112] | 4 |
|
---|
| 5 | namespace HeuristicLab.Problems.MetaOptimization {
|
---|
[16574] | 6 | [StorableType("EFF4541F-45B2-417D-8742-BDD8477384D7")]
|
---|
[5112] | 7 | public class NullValue : ValueTypeValue<int> {
|
---|
| 8 |
|
---|
| 9 | public NullValue() { }
|
---|
| 10 | [StorableConstructor]
|
---|
[16574] | 11 | protected NullValue(StorableConstructorFlag _) : base(_) { }
|
---|
[5112] | 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.