Changeset 15652 for branches/2817-BinPackingSpeedup/HeuristicLab.Problems.BinPacking/3.3/3D/Packer/IBinPacker.cs
- Timestamp:
- 01/24/18 17:15:15 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2817-BinPackingSpeedup/HeuristicLab.Problems.BinPacking/3.3/3D/Packer/IBinPacker.cs
r15617 r15652 39 39 IList<BinPacking3D> PackItems(Permutation sortedItems, PackingShape binShape, IList<PackingItem> items, ExtremePointCreationMethod epCreationMethod, ExtremePointPruningMethod epPruningMethod, bool useStackingConstraints); 40 40 41 42 /// <summary> 43 /// Packs all items of the bin packer into a collection of BinPacking3D objects 44 /// </summary> 45 /// <param name="packingList">Packing list which will be filled by the packer.</param> 46 /// <param name="sortedItems">Permutation of items sorted by a sorting method. The value of each permutation index references to the index of the items list</param> 47 /// <param name="binShape">Bin for storing the items</param> 48 /// <param name="items">A list of packing items which should be assigned to a bin</param> 49 /// <param name="useStackingConstraints">Flag for using stacking constraints</param> 50 /// <param name="epPruningMethod"></param> 51 void PackItemsToPackingList(IList<BinPacking3D> packingList ,Permutation sortedItems, PackingShape binShape, IList<PackingItem> items, ExtremePointCreationMethod epCreationMethod, ExtremePointPruningMethod epPruningMethod, bool useStackingConstraints); 52 53 54 41 55 } 42 56 }
Note: See TracChangeset
for help on using the changeset viewer.