Changeset 16728 for branches/1614_GeneralizedQAP/HeuristicLab.Analysis.FitnessLandscape/3.3/Analysis/RuggednessCalculator.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/RuggednessCalculator.cs
r13583 r16728 20 20 #endregion 21 21 22 using System; 23 using System.Collections.Generic; 24 using System.Linq; 25 using HEAL.Attic; 22 26 using HeuristicLab.Common; 23 27 using HeuristicLab.Core; … … 25 29 using HeuristicLab.Operators; 26 30 using HeuristicLab.Parameters; 27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;28 using System;29 using System.Collections.Generic;30 using System.Linq;31 31 32 32 namespace HeuristicLab.Analysis.FitnessLandscape { 33 33 [Item("Ruggedness Calculator", "Calculates ruggedness descriptors froma given quality trail.")] 34 [Storable Class]34 [StorableType("E52780B3-27EE-4C14-9D14-F0F0265EB8DB")] 35 35 public class RuggednessCalculator : SingleSuccessorOperator { 36 36 … … 49 49 #region Constructors & Cloning 50 50 [StorableConstructor] 51 protected RuggednessCalculator( bool deserializing) : base(deserializing) { }51 protected RuggednessCalculator(StorableConstructorFlag _) : base(_) { } 52 52 protected RuggednessCalculator(RuggednessCalculator original, Cloner cloner) : base(original, cloner) { } 53 53 public RuggednessCalculator() {
Note: See TracChangeset
for help on using the changeset viewer.