- Timestamp:
- 07/07/19 23:40:10 (5 years ago)
- Location:
- stable
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Algorithms.RAPGA/3.3/Analyzers/SelectionPressureAnalyzer.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 28 28 using HeuristicLab.Optimization.Operators; 29 29 using HeuristicLab.Parameters; 30 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;30 using HEAL.Attic; 31 31 32 32 namespace HeuristicLab.Algorithms.RAPGA { … … 35 35 /// </summary> 36 36 [Item("SelectionPressureAnalyzer", "An operator which analyzes the actual selection pressure.")] 37 [Storable Class]37 [StorableType("D09EA429-381C-43EC-B033-36B113886CB8")] 38 38 public sealed class SelectionPressureAnalyzer : AlgorithmOperator, IAnalyzer { 39 39 #region Parameter properties … … 63 63 #region Storing & Cloning 64 64 [StorableConstructor] 65 private SelectionPressureAnalyzer( bool deserializing) : base(deserializing) { }65 private SelectionPressureAnalyzer(StorableConstructorFlag _) : base(_) { } 66 66 private SelectionPressureAnalyzer(SelectionPressureAnalyzer original, Cloner cloner) : base(original, cloner) { } 67 67 public override IDeepCloneable Clone(Cloner cloner) {
Note: See TracChangeset
for help on using the changeset viewer.