Changeset 16723 for branches/2521_ProblemRefactoring/HeuristicLab.Problems.BinPacking/3.3/Algorithms
- Timestamp:
- 03/28/19 16:54:20 (6 years ago)
- Location:
- branches/2521_ProblemRefactoring
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring
- Property svn:mergeinfo changed
-
branches/2521_ProblemRefactoring/HeuristicLab.Problems.BinPacking
- Property svn:mergeinfo changed
-
branches/2521_ProblemRefactoring/HeuristicLab.Problems.BinPacking/3.3/Algorithms/3D/ExtremePointAlgorithm.cs
r15583 r16723 31 31 using HeuristicLab.Optimization; 32 32 using HeuristicLab.Parameters; 33 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;33 using HEAL.Attic; 34 34 35 35 namespace HeuristicLab.Problems.BinPacking3D { 36 36 [StorableType("32c0ea29-26aa-45f2-8e7f-a2d9beab75b9")] 37 37 public enum SortingMethod { All, Given, VolumeHeight, HeightVolume, AreaHeight, HeightArea, ClusteredAreaHeight, ClusteredHeightArea } 38 39 [StorableType("bea57c08-7173-4cbb-915e-8c5954af3a50")] 38 40 public enum FittingMethod { All, FirstFit, ResidualSpaceBestFit, FreeVolumeBestFit } 39 41 40 42 [Item("Extreme-point-based Bin Packing (3d)", "An implementation of the extreme-point based packing described in Crainic, T. G., Perboli, G., & Tadei, R. (2008). Extreme point-based heuristics for three-dimensional bin packing. Informs Journal on computing, 20(3), 368-384.")] 41 [Storable Class]43 [StorableType("33F16B60-E562-4609-A6BE-A21B83BDA575")] 42 44 [Creatable(CreatableAttribute.Categories.SingleSolutionAlgorithms, Priority = 180)] 43 45 public sealed class ExtremePointAlgorithm : BasicAlgorithm { … … 75 77 76 78 [StorableConstructor] 77 private ExtremePointAlgorithm( bool deserializing) : base(deserializing) { }79 private ExtremePointAlgorithm(StorableConstructorFlag _) : base(_) { } 78 80 private ExtremePointAlgorithm(ExtremePointAlgorithm original, Cloner cloner) 79 81 : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.