Changeset 16751 for branches/2521_ProblemRefactoring/HeuristicLab.Optimization/3.3/BasicProblems/Interfaces/internal
- Timestamp:
- 04/03/19 15:37:38 (6 years ago)
- Location:
- branches/2521_ProblemRefactoring/HeuristicLab.Optimization/3.3/BasicProblems/Interfaces/internal
- Files:
-
- 5 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 } -
branches/2521_ProblemRefactoring/HeuristicLab.Optimization/3.3/BasicProblems/Interfaces/internal/IMultiObjectiveEvaluationOperator.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("89da568c-70a2-48fb-8e6b-ea078bb6fc3f")] 28 internal interface IMultiObjectiveEvaluationOperator<T Solution> : IMultiObjectiveEvaluator, IEncodingOperator<TSolution>29 where T Solution : class, ISolution {30 Func<T Solution, IRandom, double[]> EvaluateFunc { get; set; }28 internal interface IMultiObjectiveEvaluationOperator<TEncodedSolution> : IMultiObjectiveEvaluator, IEncodingOperator<TEncodedSolution> 29 where TEncodedSolution : class, IEncodedSolution { 30 Func<TEncodedSolution, IRandom, double[]> EvaluateFunc { get; set; } 31 31 } 32 32 } -
branches/2521_ProblemRefactoring/HeuristicLab.Optimization/3.3/BasicProblems/Interfaces/internal/INeighborBasedOperator.cs
r16723 r16751 22 22 using System; 23 23 using System.Collections.Generic; 24 using HEAL.Attic; 24 25 using HeuristicLab.Core; 25 using HEAL.Attic;26 26 27 27 namespace HeuristicLab.Optimization { 28 28 [StorableType("fda56e0b-9392-4711-9af1-55211bfa24ac")] 29 internal interface INeighborBasedOperator<T Solution> : IEncodingOperator<TSolution>30 where T Solution : class, ISolution {31 Func<T Solution, IRandom, IEnumerable<TSolution>> GetNeighborsFunc { get; set; }29 internal interface INeighborBasedOperator<TEncodedSolution> : IEncodingOperator<TEncodedSolution> 30 where TEncodedSolution : class, IEncodedSolution { 31 Func<TEncodedSolution, IRandom, IEnumerable<TEncodedSolution>> GetNeighborsFunc { get; set; } 32 32 } 33 33 } -
branches/2521_ProblemRefactoring/HeuristicLab.Optimization/3.3/BasicProblems/Interfaces/internal/ISingleObjectiveAnalysisOperator.cs
r16723 r16751 26 26 namespace HeuristicLab.Optimization { 27 27 [StorableType("9731981c-10c6-4850-9308-a4720ac07da7")] 28 internal interface ISingleObjectiveAnalysisOperator<T Solution> : IEncodingOperator<TSolution>, ISingleObjectiveOperator29 where T Solution : class, ISolution {30 Action<T Solution[], double[], ResultCollection, IRandom> AnalyzeAction { get; set; }28 internal interface ISingleObjectiveAnalysisOperator<TEncodedSolution> : IEncodingOperator<TEncodedSolution>, ISingleObjectiveOperator 29 where TEncodedSolution : class, IEncodedSolution { 30 Action<TEncodedSolution[], double[], ResultCollection, IRandom> AnalyzeAction { get; set; } 31 31 } 32 32 } -
branches/2521_ProblemRefactoring/HeuristicLab.Optimization/3.3/BasicProblems/Interfaces/internal/ISingleObjectiveEvaluationOperator.cs
r16723 r16751 26 26 namespace HeuristicLab.Optimization { 27 27 [StorableType("5a9cf334-4815-4f0e-a2f8-f3d4edfcc829")] 28 internal interface ISingleObjectiveEvaluationOperator<T Solution> : ISingleObjectiveEvaluator, IEncodingOperator<TSolution>29 where T Solution : class, ISolution {30 Func<T Solution, IRandom, double> EvaluateFunc { get; set; }28 internal interface ISingleObjectiveEvaluationOperator<TEncodedSolution> : ISingleObjectiveEvaluator, IEncodingOperator<TEncodedSolution> 29 where TEncodedSolution : class, IEncodedSolution { 30 Func<TEncodedSolution, IRandom, double> EvaluateFunc { get; set; } 31 31 } 32 32 }
Note: See TracChangeset
for help on using the changeset viewer.