Changeset 16728 for branches/1614_GeneralizedQAP/HeuristicLab.Analysis.FitnessLandscape/3.3/ProblemCharacteristicAnalysis/QAP
- Timestamp:
- 03/31/19 14:40:15 (6 years ago)
- Location:
- branches/1614_GeneralizedQAP/HeuristicLab.Analysis.FitnessLandscape/3.3/ProblemCharacteristicAnalysis/QAP
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1614_GeneralizedQAP/HeuristicLab.Analysis.FitnessLandscape/3.3/ProblemCharacteristicAnalysis/QAP/QAPCharacteristicCalculator.cs
r14678 r16728 20 20 #endregion 21 21 22 using System; 23 using System.Collections.Generic; 24 using System.Linq; 25 using HEAL.Attic; 22 26 using HeuristicLab.Common; 23 27 using HeuristicLab.Core; 24 28 using HeuristicLab.Data; 25 29 using HeuristicLab.Optimization; 26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;27 30 using HeuristicLab.Problems.QuadraticAssignment; 28 using System;29 using System.Collections.Generic;30 using System.Linq;31 31 32 32 namespace HeuristicLab.Analysis.FitnessLandscape { 33 33 [Item("QAP Characteristic Calculator", "")] 34 [Storable Class]34 [StorableType("18101912-1163-4FBD-95F6-3417345150E2")] 35 35 public sealed class QAPCharacteristicCalculator : CharacteristicCalculator { 36 36 37 37 [StorableConstructor] 38 private QAPCharacteristicCalculator( bool deserializing) : base(deserializing) { }38 private QAPCharacteristicCalculator(StorableConstructorFlag _) : base(_) { } 39 39 private QAPCharacteristicCalculator(QAPCharacteristicCalculator original, Cloner cloner) : base(original, cloner) { } 40 40 public QAPCharacteristicCalculator() { -
branches/1614_GeneralizedQAP/HeuristicLab.Analysis.FitnessLandscape/3.3/ProblemCharacteristicAnalysis/QAP/QAPDirectedWalk.cs
r15031 r16728 20 20 #endregion 21 21 22 using System; 23 using System.Collections.Generic; 24 using System.Linq; 25 using System.Threading; 26 using HEAL.Attic; 22 27 using HeuristicLab.Common; 23 28 using HeuristicLab.Core; … … 26 31 using HeuristicLab.Optimization; 27 32 using HeuristicLab.Parameters; 28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;29 33 using HeuristicLab.Problems.QuadraticAssignment; 30 34 using HeuristicLab.Random; 31 using System;32 using System.Collections.Generic;33 using System.Linq;34 using System.Threading;35 35 36 36 namespace HeuristicLab.Analysis.FitnessLandscape { 37 37 [Item("Directed Walk (QAP-specific)", "")] 38 [Storable Class]38 [StorableType("D10EE9C0-3719-4427-98CE-F4A981DB1C58")] 39 39 public class QAPDirectedWalk : CharacteristicCalculator { 40 40 … … 76 76 77 77 [StorableConstructor] 78 private QAPDirectedWalk( bool deserializing) : base(deserializing) { }78 private QAPDirectedWalk(StorableConstructorFlag _) : base(_) { } 79 79 private QAPDirectedWalk(QAPDirectedWalk original, Cloner cloner) : base(original, cloner) { } 80 80 public QAPDirectedWalk() {
Note: See TracChangeset
for help on using the changeset viewer.