Changeset 16728 for branches/1614_GeneralizedQAP/HeuristicLab.Analysis.FitnessLandscape/3.3/Algorithms/LocalAnalysis.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/LocalAnalysis.cs
r13920 r16728 20 20 #endregion 21 21 22 using System; 23 using System.Linq; 24 using HEAL.Attic; 22 25 using HeuristicLab.Common; 23 26 using HeuristicLab.Core; … … 27 30 using HeuristicLab.Optimization.Operators; 28 31 using HeuristicLab.Parameters; 29 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;30 32 using HeuristicLab.Random; 31 using System;32 using System.Linq;33 33 34 34 namespace HeuristicLab.Analysis.FitnessLandscape { 35 35 [Item("Local Analysis", "A local analysis algorithm.")] 36 [Storable Class]36 [StorableType("F76A2278-93BC-4F35-A603-9E1E84C9651A")] 37 37 public abstract class LocalAnalysis<T> : HeuristicOptimizationEngineAlgorithm, IStorableContent where T : class, IOperator, new() { 38 38 public string Filename { get; set; } … … 100 100 101 101 [StorableConstructor] 102 protected LocalAnalysis( bool deserializing) : base(deserializing) { }102 protected LocalAnalysis(StorableConstructorFlag _) : base(_) { } 103 103 protected LocalAnalysis(LocalAnalysis<T> original, Cloner cloner) 104 104 : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.