- Timestamp:
- 07/07/19 23:40:10 (4 years ago)
- Location:
- stable
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/Moves/Swap/Swap2Move.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 22 22 using HeuristicLab.Common; 23 23 using HeuristicLab.Core; 24 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;24 using HEAL.Attic; 25 25 26 26 namespace HeuristicLab.Encodings.LinearLinkageEncoding { 27 27 [Item("Swap2Move", "Item that describes a swap-2 move.")] 28 [Storable Class]28 [StorableType("AEB203A4-03AD-4F86-B200-B0FA8253BCFF")] 29 29 public class Swap2Move : Item { 30 30 [Storable] … … 36 36 37 37 [StorableConstructor] 38 protected Swap2Move( bool deserializing) : base(deserializing) { }38 protected Swap2Move(StorableConstructorFlag _) : base(_) { } 39 39 protected Swap2Move(Swap2Move original, Cloner cloner) : base(original, cloner) { } 40 40 public Swap2Move() : this(-1, -1, null) { }
Note: See TracChangeset
for help on using the changeset viewer.