Changeset 16728 for branches/1614_GeneralizedQAP/HeuristicLab.Analysis.FitnessLandscape/3.3/Analysis/InformationAnalyzer.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/InformationAnalyzer.cs
r15279 r16728 20 20 #endregion 21 21 22 using System.Linq; 23 using HEAL.Attic; 22 24 using HeuristicLab.Common; 23 25 using HeuristicLab.Core; … … 26 28 using HeuristicLab.Optimization; 27 29 using HeuristicLab.Parameters; 28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;29 using System.Linq;30 using System;31 30 32 31 namespace HeuristicLab.Analysis.FitnessLandscape { 33 32 34 [Storable Class]33 [StorableType("FBA53C13-1456-42F7-B594-01FCA2C58809")] 35 34 public class InformationAnalyzer : SingleSuccessorOperator, IQualityTrailAnalyzer { 36 35 public bool EnabledByDefault { … … 84 83 85 84 [StorableConstructor] 86 protected InformationAnalyzer( bool deserializing) : base(deserializing) { }85 protected InformationAnalyzer(StorableConstructorFlag _) : base(_) { } 87 86 protected InformationAnalyzer(InformationAnalyzer original, Cloner cloner) : base(original, cloner) { } 88 87
Note: See TracChangeset
for help on using the changeset viewer.