Changeset 16462 for branches/2520_PersistenceReintegration/HeuristicLab.Problems.ParameterOptimization/3.3/BestSolutionAnalyzer.cs
- Timestamp:
- 12/28/18 16:10:48 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2520_PersistenceReintegration/HeuristicLab.Problems.ParameterOptimization/3.3/BestSolutionAnalyzer.cs
r16453 r16462 28 28 using HeuristicLab.Optimization; 29 29 using HeuristicLab.Parameters; 30 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;30 using HEAL.Fossil; 31 31 32 32 namespace HeuristicLab.Problems.ParameterOptimization { 33 33 [Item("BestSolutionAnalyzer", "Tracks the best parameter vector solution of the current algorithm run.")] 34 [Storable Class]34 [StorableType("A39363D6-8ACE-44AF-99E1-643928DCA6B9")] 35 35 public class BestSolutionAnalyzer : SingleSuccessorOperator, IAnalyzer { 36 36 private const string MaximizationParameterName = "Maximization"; … … 71 71 72 72 [StorableConstructor] 73 protected BestSolutionAnalyzer( bool deserializing) : base(deserializing) { }73 protected BestSolutionAnalyzer(StorableConstructorFlag _) : base(_) { } 74 74 protected BestSolutionAnalyzer(BestSolutionAnalyzer original, Cloner cloner) 75 75 : base(original, cloner) { }
Note: See TracChangeset
for help on using the changeset viewer.