Changeset 16462 for branches/2520_PersistenceReintegration/HeuristicLab.Encodings.PermutationEncoding/3.3/Moves/TwoIndexMove.cs
- Timestamp:
- 12/28/18 16:10:48 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2520_PersistenceReintegration/HeuristicLab.Encodings.PermutationEncoding/3.3/Moves/TwoIndexMove.cs
r16453 r16462 22 22 using HeuristicLab.Common; 23 23 using HeuristicLab.Core; 24 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;24 using HEAL.Fossil; 25 25 26 26 namespace HeuristicLab.Encodings.PermutationEncoding { 27 27 [Item("TwoIndexMove", "A move on a permutation that is specified by 2 indices.")] 28 [Storable Class]28 [StorableType("B2415ECB-30EE-4FD6-96F6-1170B5BD85DE")] 29 29 public class TwoIndexMove : Item { 30 30 [Storable] … … 36 36 37 37 [StorableConstructor] 38 protected TwoIndexMove( bool deserializing) : base(deserializing) { }38 protected TwoIndexMove(StorableConstructorFlag _) : base(_) { } 39 39 protected TwoIndexMove(TwoIndexMove original, Cloner cloner) 40 40 : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.