Changeset 16949 for branches/2521_ProblemRefactoring/HeuristicLab.Problems.TestFunctions/3.3/Analyzers
- Timestamp:
- 05/13/19 16:20:11 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring/HeuristicLab.Problems.TestFunctions/3.3/Analyzers/BestSingleObjectiveTestFunctionSolutionAnalyzer.cs
r16749 r16949 20 20 #endregion 21 21 22 using System; 22 23 using System.Linq; 24 using HEAL.Attic; 23 25 using HeuristicLab.Common; 24 26 using HeuristicLab.Core; … … 28 30 using HeuristicLab.Optimization; 29 31 using HeuristicLab.Parameters; 30 using H EAL.Attic;32 using HeuristicLab.PluginInfrastructure; 31 33 32 34 namespace HeuristicLab.Problems.TestFunctions { 35 // BackwardsCompatibility3.3 36 #region Backwards compatible code, remove with 3.4 33 37 /// <summary> 34 38 /// An operator for analyzing the best solution for a SingleObjectiveTestFunction problem. … … 36 40 [Item("BestSingleObjectiveTestFunctionSolutionAnalyzer", "An operator for analyzing the best solution for a SingleObjectiveTestFunction problem.")] 37 41 [StorableType("A0F04F9F-DD27-44D8-A1F6-B289F1F40DE2")] 42 [NonDiscoverableType] 43 [Obsolete("Use the Analyze method of the test function problem class")] 38 44 public class BestSingleObjectiveTestFunctionSolutionAnalyzer : SingleSuccessorOperator, IBestSingleObjectiveTestFunctionSolutionAnalyzer { 39 45 public virtual bool EnabledByDefault { … … 145 151 } 146 152 } 153 #endregion 147 154 }
Note: See TracChangeset
for help on using the changeset viewer.