- Timestamp:
- 04/21/21 15:27:58 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring/HeuristicLab.Optimization/3.3/BasicProblems/Interfaces/IProblem.cs
r17699 r17953 31 31 /// Interface to represent an optimization problem. 32 32 /// </summary> 33 public interface IProblem : I ParameterizedNamedItem, IStorableContent {33 public interface IProblem : IResultsProducingItem, IStorableContent { 34 34 //TODO extract into interface? ResultsProducingItems? Problem and Algorithm 35 ResultCollection Results { get; }35 //ResultCollection Results { get; } 36 36 37 37 event EventHandler Reset; … … 41 41 //TODO move members to generic IProblem after every problem used the new architecture 42 42 //TODO ABE: We can maybe use it as non-generic interface that exports IEncoding Encoding { get; } 43 //TODO ABE: and which is explicit ely implemented in some base class43 //TODO ABE: and which is explicitly implemented in some base class 44 44 [StorableType("1dbe48d6-c008-4e40-86ad-c222450a3187")] 45 45 public interface IEncodedProblem : IProblem {
Note: See TracChangeset
for help on using the changeset viewer.