Changeset 17097 for stable/HeuristicLab.Encodings.LinearLinkageEncoding/3.4/Moves/Swap/Swap2MoveMaker.cs
- 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/Swap2MoveMaker.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. … … 28 28 using HeuristicLab.Optimization; 29 29 using HeuristicLab.Parameters; 30 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;30 using HEAL.Attic; 31 31 32 32 namespace HeuristicLab.Encodings.LinearLinkageEncoding { 33 33 [Item("Swap2MoveMaker", "Peforms a swap-2 move on a given grouping and updates the quality.")] 34 [Storable Class]34 [StorableType("2A1F7169-5DD5-4FB6-A25C-BBC4C06BB15A")] 35 35 public class Swap2MoveMaker : SingleSuccessorOperator, ILinearLinkageSwap2MoveOperator, IMoveMaker, ISingleObjectiveOperator { 36 36 public override bool CanChangeName { … … 51 51 52 52 [StorableConstructor] 53 protected Swap2MoveMaker( bool deserializing) : base(deserializing) { }53 protected Swap2MoveMaker(StorableConstructorFlag _) : base(_) { } 54 54 protected Swap2MoveMaker(Swap2MoveMaker original, Cloner cloner) : base(original, cloner) { } 55 55 public Swap2MoveMaker()
Note: See TracChangeset
for help on using the changeset viewer.