Changeset 15473 for branches/2817-BinPackingSpeedup/HeuristicLab.Problems.BinPacking/3.3/3D/Instances
- Timestamp:
- 11/15/17 12:30:13 (7 years ago)
- Location:
- branches/2817-BinPackingSpeedup/HeuristicLab.Problems.BinPacking/3.3/3D/Instances
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2817-BinPackingSpeedup/HeuristicLab.Problems.BinPacking/3.3/3D/Instances/BPPData.cs
r14162 r15473 22 22 23 23 24 namespace HeuristicLab.Problems.BinPacking3D {24 namespace HeuristicLab.Problems.BinPacking3D.Instances { 25 25 26 /// <summary> 27 /// Represents an instance which contains bin packing problem data. 28 /// </summary> 26 29 public class BPPData { 27 30 /// <summary> … … 29 32 /// </summary> 30 33 public string Name { get; set; } 34 31 35 /// <summary> 32 36 /// Optional! The description of the instance … … 38 42 /// </summary> 39 43 public int NumItems { get { return Items == null ? 0 : Items.Length; } } 44 45 /// <summary> 46 /// Assigned packing shape 47 /// </summary> 40 48 public PackingShape BinShape { get; set; } 49 50 /// <summary> 51 /// Array with assigned packing items 52 /// </summary> 41 53 public PackingItem[] Items { get; set; } 54 42 55 /// <summary> 43 56 /// Optional! The quality of the best-known solution. -
branches/2817-BinPackingSpeedup/HeuristicLab.Problems.BinPacking/3.3/3D/Instances/RandomInstanceProvider.cs
r15454 r15473 164 164 } 165 165 166 166 /// <summary> 167 /// Loads the data from the given data descriptor. 168 /// It retuns a bin packing problem data instance with the data of the random instance provider. 169 /// </summary> 170 /// <param name="dd"></param> 171 /// <returns></returns> 167 172 public override BPPData LoadData(IDataDescriptor dd) { 168 173 var randDd = dd as RandomDataDescriptor; -
branches/2817-BinPackingSpeedup/HeuristicLab.Problems.BinPacking/3.3/3D/Instances/RealWorldContainerPackingInstanceProvider.cs
r15471 r15473 28 28 using System.Text.RegularExpressions; 29 29 using HeuristicLab.Problems.Instances; 30 using HeuristicLab.Problems.BinPacking3D.Instances; 30 31 31 32 namespace HeuristicLab.Problems.BinPacking3D {
Note: See TracChangeset
for help on using the changeset viewer.