Changeset 14128 for branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking/3.3/Interfaces/IPackingMove.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/IPackingMove.cs
r14046 r14128 23 23 24 24 namespace HeuristicLab.Problems.BinPacking { 25 public interface IPackingMove : IItem {26 IPackingSolutionEncodingGetSolutionAfterMove();25 public interface IPackingMove<out T> : IItem { 26 T GetSolutionAfterMove(); 27 27 } 28 28 }
Note: See TracChangeset
for help on using the changeset viewer.