Changeset 16751 for branches/2521_ProblemRefactoring/HeuristicLab.Optimization/3.3/BasicProblems/Interfaces/internal/IMultiObjectiveAnalysisOperator.cs
- Timestamp:
- 04/03/19 15:37:38 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring/HeuristicLab.Optimization/3.3/BasicProblems/Interfaces/internal/IMultiObjectiveAnalysisOperator.cs
r16723 r16751 21 21 22 22 using System; 23 using HEAL.Attic; 23 24 using HeuristicLab.Core; 24 using HEAL.Attic;25 25 26 26 namespace HeuristicLab.Optimization { 27 27 [StorableType("c9325602-3262-48a4-8985-03657fb0b34f")] 28 internal interface IMultiObjectiveAnalysisOperator<T Solution> : IEncodingOperator<TSolution>, IAnalyzer, IMultiObjectiveOperator29 where T Solution : class, ISolution {30 Action<T Solution[], double[][], ResultCollection, IRandom> AnalyzeAction { get; set; }28 internal interface IMultiObjectiveAnalysisOperator<TEncodedSolution> : IEncodingOperator<TEncodedSolution>, IAnalyzer, IMultiObjectiveOperator 29 where TEncodedSolution : class, IEncodedSolution { 30 Action<TEncodedSolution[], double[][], ResultCollection, IRandom> AnalyzeAction { get; set; } 31 31 } 32 32 }
Note: See TracChangeset
for help on using the changeset viewer.