Changeset 14128 for branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking/3.3/Interfaces/IPackingSolutionManipulator.cs
- Timestamp:
- 07/20/16 14:02:36 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking/3.3/Interfaces/IPackingSolutionManipulator.cs
r14046 r14128 24 24 25 25 namespace HeuristicLab.Problems.BinPacking { 26 public interface IPackingSolutionManipulator : IManipulator, IPackingOperator { 27 ILookupParameter<IPackingSolutionEncoding> EncodedSolutionParameter { get; } 26 public interface IPackingSolutionManipulator<T> : IManipulator, IPackingOperator 27 where T : class, IItem { 28 ILookupParameter<T> EncodedSolutionParameter { get; } 28 29 } 29 30 }
Note: See TracChangeset
for help on using the changeset viewer.