Changeset 16728 for branches/1614_GeneralizedQAP/HeuristicLab.Analysis.FitnessLandscape/3.3/ProblemCharacteristicAnalysis/GQAP
- Timestamp:
- 03/31/19 14:40:15 (6 years ago)
- Location:
- branches/1614_GeneralizedQAP/HeuristicLab.Analysis.FitnessLandscape/3.3/ProblemCharacteristicAnalysis/GQAP
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1614_GeneralizedQAP/HeuristicLab.Analysis.FitnessLandscape/3.3/ProblemCharacteristicAnalysis/GQAP/GQAPCharacteristicCalculator.cs
r15718 r16728 23 23 using System.Collections.Generic; 24 24 using System.Linq; 25 using HEAL.Attic; 25 26 using HeuristicLab.Common; 26 27 using HeuristicLab.Core; 27 28 using HeuristicLab.Data; 28 29 using HeuristicLab.Optimization; 29 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;30 30 using HeuristicLab.Problems.GeneralizedQuadraticAssignment; 31 31 32 32 namespace HeuristicLab.Analysis.FitnessLandscape { 33 33 [Item("GQAP Characteristic Calculator", "")] 34 [Storable Class]34 [StorableType("B587BC90-028E-4E8F-A4A6-5CD6677D5369")] 35 35 public sealed class GQAPCharacteristicCalculator : CharacteristicCalculator { 36 36 37 37 [StorableConstructor] 38 private GQAPCharacteristicCalculator( bool deserializing) : base(deserializing) { }38 private GQAPCharacteristicCalculator(StorableConstructorFlag _) : base(_) { } 39 39 private GQAPCharacteristicCalculator(GQAPCharacteristicCalculator original, Cloner cloner) : base(original, cloner) { } 40 40 public GQAPCharacteristicCalculator() { -
branches/1614_GeneralizedQAP/HeuristicLab.Analysis.FitnessLandscape/3.3/ProblemCharacteristicAnalysis/GQAP/GQAPDirectedWalk.cs
r15718 r16728 23 23 using System.Collections.Generic; 24 24 using System.Linq; 25 using HEAL.Attic; 25 26 using HeuristicLab.Common; 26 27 using HeuristicLab.Core; … … 29 30 using HeuristicLab.Optimization; 30 31 using HeuristicLab.Parameters; 31 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;32 32 using HeuristicLab.Problems.GeneralizedQuadraticAssignment; 33 33 using HeuristicLab.Random; … … 35 35 namespace HeuristicLab.Analysis.FitnessLandscape { 36 36 [Item("Directed Walk (GQAP-specific)", "")] 37 [Storable Class]37 [StorableType("333209A4-8EE7-4944-8A23-CBF120627DBE")] 38 38 public class GQAPDirectedWalk : CharacteristicCalculator { 39 39 … … 75 75 76 76 [StorableConstructor] 77 private GQAPDirectedWalk( bool deserializing) : base(deserializing) { }77 private GQAPDirectedWalk(StorableConstructorFlag _) : base(_) { } 78 78 private GQAPDirectedWalk(GQAPDirectedWalk original, Cloner cloner) : base(original, cloner) { } 79 79 public GQAPDirectedWalk() {
Note: See TracChangeset
for help on using the changeset viewer.