Changeset 14149 for branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking.2D/3.3/Interfaces/IDecoder.cs
- Timestamp:
- 07/21/16 12:06:43 (8 years ago)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking.2D/3.3/Interfaces/IDecoder.cs
r14148 r14149 27 27 28 28 namespace HeuristicLab.Problems.BinPacking2D { 29 public interface I PermutationDecoder: IItem {30 Solution Decode( Permutation permutation, PackingShape binShape, IList<PackingItem> items);29 public interface IDecoder<in T> : IItem { 30 Solution Decode(T encodedSolution, PackingShape binShape, IList<PackingItem> items); 31 31 } 32 32 }
Note: See TracChangeset
for help on using the changeset viewer.