Changeset 16462 for branches/2520_PersistenceReintegration/HeuristicLab.Problems.QuadraticAssignment/3.3/LocalImprovement
- Timestamp:
- 12/28/18 16:10:48 (6 years ago)
- Location:
- branches/2520_PersistenceReintegration/HeuristicLab.Problems.QuadraticAssignment/3.3/LocalImprovement
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2520_PersistenceReintegration/HeuristicLab.Problems.QuadraticAssignment/3.3/LocalImprovement/QAPExhaustiveInsertionLocalImprovement.cs
r16453 r16462 29 29 using HeuristicLab.Optimization; 30 30 using HeuristicLab.Parameters; 31 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;31 using HEAL.Fossil; 32 32 33 33 namespace HeuristicLab.Problems.QuadraticAssignment { 34 34 [Item("QAPExhaustiveInsertionLocalImprovement", "Takes a solution and finds the local optimum with respect to the insertion neighborhood by decending along the steepest gradient.")] 35 [Storable Class]35 [StorableType("9E024205-A638-4671-B212-511E941B5992")] 36 36 public class QAPExhaustiveInsertionLocalImprovement : SingleSuccessorOperator, ILocalImprovementOperator, ISingleObjectiveOperator { 37 37 … … 73 73 74 74 [StorableConstructor] 75 protected QAPExhaustiveInsertionLocalImprovement( bool deserializing) : base(deserializing) { }75 protected QAPExhaustiveInsertionLocalImprovement(StorableConstructorFlag _) : base(_) { } 76 76 protected QAPExhaustiveInsertionLocalImprovement(QAPExhaustiveInsertionLocalImprovement original, Cloner cloner) 77 77 : base(original, cloner) { -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.QuadraticAssignment/3.3/LocalImprovement/QAPExhaustiveInversionLocalImprovement.cs
r16453 r16462 29 29 using HeuristicLab.Optimization; 30 30 using HeuristicLab.Parameters; 31 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;31 using HEAL.Fossil; 32 32 33 33 namespace HeuristicLab.Problems.QuadraticAssignment { 34 34 [Item("QAPExhaustiveInversionLocalImprovement", "Takes a solution and finds the local optimum with respect to the inversion neighborhood by decending along the steepest gradient.")] 35 [Storable Class]35 [StorableType("7A0F7835-87A6-4C3E-BEE2-E1BA6F67972B")] 36 36 public class QAPExhaustiveInversionLocalImprovement : SingleSuccessorOperator, ILocalImprovementOperator, ISingleObjectiveOperator { 37 37 … … 73 73 74 74 [StorableConstructor] 75 protected QAPExhaustiveInversionLocalImprovement( bool deserializing) : base(deserializing) { }75 protected QAPExhaustiveInversionLocalImprovement(StorableConstructorFlag _) : base(_) { } 76 76 protected QAPExhaustiveInversionLocalImprovement(QAPExhaustiveInversionLocalImprovement original, Cloner cloner) 77 77 : base(original, cloner) { -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.QuadraticAssignment/3.3/LocalImprovement/QAPExhaustiveSwap2LocalImprovement.cs
r16453 r16462 29 29 using HeuristicLab.Optimization; 30 30 using HeuristicLab.Parameters; 31 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;31 using HEAL.Fossil; 32 32 33 33 namespace HeuristicLab.Problems.QuadraticAssignment { 34 34 [Item("QAPExhaustiveSwap2LocalImprovement", "Takes a solution and finds the local optimum with respect to the swap2 neighborhood by decending along the steepest gradient.")] 35 [Storable Class]35 [StorableType("AD82A71D-773A-4CD2-841F-755840656E92")] 36 36 public class QAPExhaustiveSwap2LocalImprovement : SingleSuccessorOperator, ILocalImprovementOperator, ISingleObjectiveOperator { 37 37 … … 77 77 78 78 [StorableConstructor] 79 protected QAPExhaustiveSwap2LocalImprovement( bool deserializing) : base(deserializing) { }79 protected QAPExhaustiveSwap2LocalImprovement(StorableConstructorFlag _) : base(_) { } 80 80 protected QAPExhaustiveSwap2LocalImprovement(QAPExhaustiveSwap2LocalImprovement original, Cloner cloner) 81 81 : base(original, cloner) { -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.QuadraticAssignment/3.3/LocalImprovement/QAPStochasticScrambleLocalImprovement.cs
r16453 r16462 29 29 using HeuristicLab.Optimization; 30 30 using HeuristicLab.Parameters; 31 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;31 using HEAL.Fossil; 32 32 33 33 namespace HeuristicLab.Problems.QuadraticAssignment { 34 34 [Item("QAPStochasticScrambleLocalImprovement", "Takes a solution and finds the local optimum with respect to the scramble neighborhood by decending along the steepest gradient.")] 35 [Storable Class]35 [StorableType("045B5151-E5DC-4AF3-8CAD-E160E0EE17FF")] 36 36 public class QAPStochasticScrambleLocalImprovement : SingleSuccessorOperator, ILocalImprovementOperator, IStochasticOperator, ISingleObjectiveOperator { 37 37 … … 81 81 82 82 [StorableConstructor] 83 protected QAPStochasticScrambleLocalImprovement( bool deserializing) : base(deserializing) { }83 protected QAPStochasticScrambleLocalImprovement(StorableConstructorFlag _) : base(_) { } 84 84 protected QAPStochasticScrambleLocalImprovement(QAPStochasticScrambleLocalImprovement original, Cloner cloner) 85 85 : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.