Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/13/19 16:20:11 (6 years ago)
Author:
abeham
Message:

#2521: Adapted test function problems to new real vector problem

  • Made encoding readonly in symbolic expression tree problem
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2521_ProblemRefactoring/HeuristicLab.Problems.TestFunctions/3.3/Analyzers/BestSingleObjectiveTestFunctionSolutionAnalyzer.cs

    r16749 r16949  
    2020#endregion
    2121
     22using System;
    2223using System.Linq;
     24using HEAL.Attic;
    2325using HeuristicLab.Common;
    2426using HeuristicLab.Core;
     
    2830using HeuristicLab.Optimization;
    2931using HeuristicLab.Parameters;
    30 using HEAL.Attic;
     32using HeuristicLab.PluginInfrastructure;
    3133
    3234namespace HeuristicLab.Problems.TestFunctions {
     35  // BackwardsCompatibility3.3
     36  #region Backwards compatible code, remove with 3.4
    3337  /// <summary>
    3438  /// An operator for analyzing the best solution for a SingleObjectiveTestFunction problem.
     
    3640  [Item("BestSingleObjectiveTestFunctionSolutionAnalyzer", "An operator for analyzing the best solution for a SingleObjectiveTestFunction problem.")]
    3741  [StorableType("A0F04F9F-DD27-44D8-A1F6-B289F1F40DE2")]
     42  [NonDiscoverableType]
     43  [Obsolete("Use the Analyze method of the test function problem class")]
    3844  public class BestSingleObjectiveTestFunctionSolutionAnalyzer : SingleSuccessorOperator, IBestSingleObjectiveTestFunctionSolutionAnalyzer {
    3945    public virtual bool EnabledByDefault {
     
    145151    }
    146152  }
     153  #endregion
    147154}
Note: See TracChangeset for help on using the changeset viewer.