Changeset 16901 for branches/2679_HeuristicLab.GoalSeekingProblem/HeuristicLab.GoalSeekingProblem/3.4/Analyzers
- Timestamp:
- 05/06/19 15:36:43 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2679_HeuristicLab.GoalSeekingProblem/HeuristicLab.GoalSeekingProblem/3.4/Analyzers/BestSolutionAnalyzer.cs
r14526 r16901 20 20 #endregion 21 21 22 using System.Collections.Generic; 23 using System.Linq; 22 using HEAL.Attic; 24 23 using HeuristicLab.Common; 25 24 using HeuristicLab.Core; … … 29 28 using HeuristicLab.Optimization; 30 29 using HeuristicLab.Parameters; 31 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;32 30 using HeuristicLab.Problems.DataAnalysis; 31 using System.Collections.Generic; 32 using System.Linq; 33 33 34 34 namespace HeuristicLab.GoalSeeking { 35 [StorableClass]36 35 [Item("BestSolutionAnalyzer", "An analyzer which identifies the best solution from the SingleObjectiveProcessParameterOptimizationProblem")] 36 [StorableType("2CAFF3A8-D2FC-4402-A2F8-DD828465870E")] 37 37 public class BestSolutionAnalyzer : SingleSuccessorOperator, IAnalyzer { 38 38 private const string RowParameterName = "Row"; … … 100 100 101 101 [StorableConstructor] 102 protected BestSolutionAnalyzer( bool deserializing) : base(deserializing) { }102 protected BestSolutionAnalyzer(StorableConstructorFlag _) : base(_) { } 103 103 104 104
Note: See TracChangeset
for help on using the changeset viewer.