Changeset 16728 for branches/1614_GeneralizedQAP/HeuristicLab.Analysis.FitnessLandscape/3.3/Algorithms/FLACharacterizer.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/Algorithms/FLACharacterizer.cs
r15332 r16728 22 22 using System; 23 23 using System.Threading; 24 using HEAL.Attic; 24 25 using HeuristicLab.Common; 25 26 using HeuristicLab.Core; 26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;27 27 using HeuristicLab.Optimization; 28 28 using HeuristicLab.Parameters; … … 30 30 namespace HeuristicLab.Analysis.FitnessLandscape { 31 31 [Item("FLA Characterizer", "An algorithm that executes a characteristic calculator.")] 32 [Storable Class]32 [StorableType("B8D4C686-FDFE-4110-96F8-588E294A06A3")] 33 33 [Creatable(CreatableAttribute.Categories.TestingAndAnalysis + CreatableAttribute.Categories.SplitToken + "1" + CreatableAttribute.Categories.OrderToken + "FLA", Priority = 300)] 34 34 public sealed class FLACharacterizer : BasicAlgorithm { … … 44 44 45 45 [StorableConstructor] 46 private FLACharacterizer( bool deserializing) : base(deserializing) { }46 private FLACharacterizer(StorableConstructorFlag _) : base(_) { } 47 47 private FLACharacterizer(FLACharacterizer original, Cloner cloner) 48 48 : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.