- Timestamp:
- 11/23/15 16:14:57 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ProblemRefactoring/HeuristicLab.Optimization/3.3/Interfaces/IProblem.cs
r13336 r13339 36 36 } 37 37 38 public interface IProblem<TSolution> : IHeuristicOptimizationProblem where TSolution : class, ISolution { 39 IEncoding<TSolution> Encoding { get; } 38 public interface IProblem<TEncoding, TSolution> : IHeuristicOptimizationProblem, IProblemDefinition<TEncoding, TSolution> 39 where TEncoding : class, IEncoding<TSolution> 40 where TSolution : class, ISolution { 40 41 } 41 42 }
Note: See TracChangeset
for help on using the changeset viewer.