Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/25/15 23:24:01 (8 years ago)
Author:
abeham
Message:

#2521:

  • Adapted single-objective test function problem to new problem infrastructure
  • Added additional interfaces to RealVectorEncoding
  • Fixed IParticleUpdater interface (must implement IStochasticOperator if it contains a Random parameter)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ProblemRefactoring/HeuristicLab.Problems.TestFunctions/3.3/Interfaces/IBestSingleObjectiveTestFunctionSolutionAnalyzer.cs

    r12012 r13403  
    2121
    2222using HeuristicLab.Core;
     23using HeuristicLab.Data;
     24using HeuristicLab.Encodings.RealVectorEncoding;
    2325using HeuristicLab.Optimization;
    2426
     
    2729  /// An interface which represents operators for analyzing the best solution of single objective TestFunction Problems given in real vector representation.
    2830  /// </summary>
    29   public interface IBestSingleObjectiveTestFunctionSolutionAnalyzer : IAnalyzer, ISingleObjectiveOperator {
    30     ILookupParameter RealVectorParameter { get; }
    31     ILookupParameter QualityParameter { get; }
     31  public interface IBestSingleObjectiveTestFunctionSolutionAnalyzer : IAnalyzer, ISingleObjectiveOperator,
     32    IRealVectorSolutionsOperator, IRealVectorBoundedOperator {
     33    IScopeTreeLookupParameter<DoubleValue> QualityParameter { get; }
    3234    ILookupParameter<SingleObjectiveTestFunctionSolution> BestSolutionParameter { get; }
    3335    IValueLookupParameter<ResultCollection> ResultsParameter { get; }
Note: See TracChangeset for help on using the changeset viewer.