Changeset 13403 for branches/ProblemRefactoring/HeuristicLab.Problems.TestFunctions/3.3/Interfaces/IBestSingleObjectiveTestFunctionSolutionAnalyzer.cs
- Timestamp:
- 11/25/15 23:24:01 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ProblemRefactoring/HeuristicLab.Problems.TestFunctions/3.3/Interfaces/IBestSingleObjectiveTestFunctionSolutionAnalyzer.cs
r12012 r13403 21 21 22 22 using HeuristicLab.Core; 23 using HeuristicLab.Data; 24 using HeuristicLab.Encodings.RealVectorEncoding; 23 25 using HeuristicLab.Optimization; 24 26 … … 27 29 /// An interface which represents operators for analyzing the best solution of single objective TestFunction Problems given in real vector representation. 28 30 /// </summary> 29 public interface IBestSingleObjectiveTestFunctionSolutionAnalyzer : IAnalyzer, ISingleObjectiveOperator {30 I LookupParameter RealVectorParameter { get; }31 I LookupParameterQualityParameter { get; }31 public interface IBestSingleObjectiveTestFunctionSolutionAnalyzer : IAnalyzer, ISingleObjectiveOperator, 32 IRealVectorSolutionsOperator, IRealVectorBoundedOperator { 33 IScopeTreeLookupParameter<DoubleValue> QualityParameter { get; } 32 34 ILookupParameter<SingleObjectiveTestFunctionSolution> BestSolutionParameter { get; } 33 35 IValueLookupParameter<ResultCollection> ResultsParameter { get; }
Note: See TracChangeset
for help on using the changeset viewer.