- Timestamp:
- 06/02/13 04:26:26 (12 years ago)
- Location:
- branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking/3.3/Interfaces
- Files:
-
- 8 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking/3.3/Interfaces/IPackingItem.cs
r9348 r9563 30 30 public interface IPackingItem : IPackingShape { 31 31 void AddTargetBinMeasures(int[] targetBinMeasures); 32 double Weight { get; set; } 33 int Material { get; set; } 34 /// <summary> 35 /// Returns if the "other" item can be stacked on this item. 36 /// </summary> 37 /// <param name="other"></param> 38 /// <returns></returns> 39 bool SupportsStacking (IPackingItem other); 32 40 } 33 41 } -
branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking/3.3/Interfaces/IPackingSolutionCreator.cs
r9348 r9563 29 29 namespace HeuristicLab.Problems.BinPacking.Interfaces { 30 30 public interface IPackingSolutionCreator : ISolutionCreator{ 31 ILookupParameter<I PackingSolutionEncoding> EncodedSolutionParameter { get; }31 ILookupParameter<IItem> EncodedSolutionParameter { get; } 32 32 } 33 33 }
Note: See TracChangeset
for help on using the changeset viewer.