Changeset 16728 for branches/1614_GeneralizedQAP/HeuristicLab.Analysis.FitnessLandscape/3.3/ProblemCharacteristicAnalysis/CharacteristicCalculator.cs
- Timestamp:
- 03/31/19 14:40:15 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1614_GeneralizedQAP/HeuristicLab.Analysis.FitnessLandscape/3.3/ProblemCharacteristicAnalysis/CharacteristicCalculator.cs
r14678 r16728 20 20 #endregion 21 21 22 using System.Collections.Generic; 23 using HEAL.Attic; 22 24 using HeuristicLab.Common; 23 25 using HeuristicLab.Core; 24 26 using HeuristicLab.Data; 25 27 using HeuristicLab.Optimization; 26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;27 using System.Collections.Generic;28 28 29 29 namespace HeuristicLab.Analysis.FitnessLandscape { 30 30 [Item("Characteristic Calculator", "")] 31 [Storable Class]31 [StorableType("389790FF-2F4F-4526-9500-876926CF2E28")] 32 32 public abstract class CharacteristicCalculator : ParameterizedNamedItem, ICharacteristicCalculator { 33 33 … … 40 40 41 41 [StorableConstructor] 42 protected CharacteristicCalculator( bool deserializing) : base(deserializing) { }42 protected CharacteristicCalculator(StorableConstructorFlag _) : base(_) { } 43 43 protected CharacteristicCalculator(CharacteristicCalculator original, Cloner cloner) 44 44 : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.