Changeset 17097 for stable/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3/SuccessfulOffspringAnalysis/SuccessfulOffspringAnalyzer.cs
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3/SuccessfulOffspringAnalysis/SuccessfulOffspringAnalyzer.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. … … 30 30 using HeuristicLab.Optimization; 31 31 using HeuristicLab.Parameters; 32 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;32 using HEAL.Attic; 33 33 34 34 namespace HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm { … … 37 37 /// </summary> 38 38 [Item("SuccessfulOffspringAnalyzer", "An operator for analyzing certain properties in the successful offspring. The properties to be analyzed can be specified in the CollectedValues parameter.")] 39 [Storable Class]39 [StorableType("22674F63-CD16-4494-9699-3E5298714618")] 40 40 public sealed class SuccessfulOffspringAnalyzer : SingleSuccessorOperator, IAnalyzer { 41 41 public bool EnabledByDefault { … … 71 71 } 72 72 [StorableConstructor] 73 private SuccessfulOffspringAnalyzer( bool deserializing) : base(deserializing) { }73 private SuccessfulOffspringAnalyzer(StorableConstructorFlag _) : base(_) { } 74 74 private SuccessfulOffspringAnalyzer(SuccessfulOffspringAnalyzer original, Cloner cloner) : base(original, cloner) { } 75 75 public SuccessfulOffspringAnalyzer()
Note: See TracChangeset
for help on using the changeset viewer.