Changeset 16728 for branches/1614_GeneralizedQAP/HeuristicLab.Analysis.FitnessLandscape/3.3/Analysis/FitnessCloudAnalyzer.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/Analysis/FitnessCloudAnalyzer.cs
r13583 r16728 22 22 using System.Drawing; 23 23 using System.Linq; 24 using HEAL.Attic; 24 25 using HeuristicLab.Common; 25 26 using HeuristicLab.Core; … … 27 28 using HeuristicLab.Optimization.Operators; 28 29 using HeuristicLab.Parameters; 29 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;30 30 31 31 namespace HeuristicLab.Analysis.FitnessLandscape { 32 32 33 [Storable Class]33 [StorableType("201F8E4F-601F-42EC-8E75-2ED240240BE5")] 34 34 public class FitnessCloudAnalyzer : AlgorithmOperator, IQualityTrailAnalyzer { 35 35 public bool EnabledByDefault { … … 50 50 51 51 [StorableConstructor] 52 protected FitnessCloudAnalyzer( bool deserializing) : base(deserializing) { }52 protected FitnessCloudAnalyzer(StorableConstructorFlag _) : base(_) { } 53 53 protected FitnessCloudAnalyzer(FitnessCloudAnalyzer original, Cloner cloner) : base(original, cloner) { } 54 54
Note: See TracChangeset
for help on using the changeset viewer.