- Timestamp:
- 04/20/20 14:40:24 (5 years ago)
- Location:
- branches/2521_ProblemRefactoring/HeuristicLab.Optimization/3.3/Interfaces
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring/HeuristicLab.Optimization/3.3/Interfaces/IHeuristicOptimizationProblem.cs
r17226 r17513 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 { … … 29 29 /// Interface to represent a heuristic optimization problem. 30 30 /// </summary> 31 public interface IHeuristicOptimizationProblem : I Problem {31 public interface IHeuristicOptimizationProblem : IEncodedProblem { 32 32 IParameter SolutionCreatorParameter { get; } 33 33 ISolutionCreator SolutionCreator { get; } -
branches/2521_ProblemRefactoring/HeuristicLab.Optimization/3.3/Interfaces/ILocalImprovementAlgorithmOperator.cs
r17226 r17513 27 27 public interface ILocalImprovementAlgorithmOperator : ILocalImprovementOperator { 28 28 Type ProblemType { get; } 29 I Problem Problem { get; set; }29 IEncodedProblem Problem { get; set; } 30 30 } 31 31 }
Note: See TracChangeset
for help on using the changeset viewer.