Changeset 13336 for branches/ProblemRefactoring/HeuristicLab.Optimization/3.3/BasicProblems/Interfaces/IEncodingOperator.cs
- Timestamp:
- 11/23/15 15:15:27 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ProblemRefactoring/HeuristicLab.Optimization/3.3/BasicProblems/Interfaces/IEncodingOperator.cs
r12012 r13336 23 23 24 24 namespace HeuristicLab.Optimization { 25 public interface IEncodingOperator : IOperator{26 ILookupParameter<IEncoding > EncodingParameter { get; }25 public interface IEncodingOperator<TSolution> : IOperator where TSolution : class, ISolution{ 26 ILookupParameter<IEncoding<TSolution>> EncodingParameter { get; } 27 27 } 28 28 }
Note: See TracChangeset
for help on using the changeset viewer.