- Timestamp:
- 07/13/16 21:02:15 (8 years ago)
- Location:
- branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking.2D/3.3
- Files:
-
- 2 deleted
- 2 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking.2D/3.3/HeuristicLab.Problems.BinPacking2D-3.3.csproj
r14055 r14063 151 151 <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Problems.Instances-3.3.dll</HintPath> 152 152 </Reference> 153 <Reference Include="HeuristicLab.Random-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 154 <SpecificVersion>False</SpecificVersion> 155 <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Random-3.3.dll</HintPath> 156 </Reference> 153 157 <Reference Include="System" /> 154 158 <Reference Include="System.Core" /> … … 166 170 <Compile Include="Decoders\EP\ExtremePointPackingSequenceDecoder2D.cs" /> 167 171 <Compile Include="Instances\BPPData.cs" /> 168 <Compile Include="Instances\BPPInstanceProvider.cs" /> 169 <Compile Include="Instances\BPPORLIBDataDescriptor.cs" /> 170 <Compile Include="Instances\BPPORLIBParser.cs" /> 172 <Compile Include="Instances\RandomDataDescriptor.cs" /> 173 <Compile Include="Instances\RandomInstanceProvider.cs" /> 171 174 <Compile Include="Interfaces\I2DGVDecoder.cs" /> 172 175 <Compile Include="Interfaces\I2DMCVDecoder.cs" /> … … 187 190 <ItemGroup> 188 191 <None Include="HeuristicLab.snk" /> 189 <EmbeddedResource Include="Instances\Data\BPPORLIB.zip" />190 192 <None Include="Properties\AssemblyInfo.cs.frame" /> 191 193 <None Include="Plugin.cs.frame" /> -
branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking.2D/3.3/Instances/RandomDataDescriptor.cs
r14062 r14063 24 24 25 25 namespace HeuristicLab.Problems.BinPacking2D { 26 internal class BPPORLIBDataDescriptor : IDataDescriptor {27 public string Name { get; internalset; }28 public string Description { get; internalset; }26 internal class RandomDataDescriptor : IDataDescriptor { 27 public string Name { get; private set; } 28 public string Description { get; private set; } 29 29 30 internal string InstanceIdentifier{ get; set; }31 internal string SolutionIdentifier{ get; set; }30 public int NumItems { get; set; } 31 public int Seed { get; set; } 32 32 33 internal BPPORLIBDataDescriptor(string name, string description, string instanceIdentifier, string solutionIdentifier) {33 internal RandomDataDescriptor(string name, string description, int numItems, int seed) { 34 34 this.Name = name; 35 35 this.Description = description; 36 this. InstanceIdentifier = instanceIdentifier;37 this.S olutionIdentifier = solutionIdentifier;36 this.NumItems = numItems; 37 this.Seed = seed; 38 38 } 39 39 } -
branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking.2D/3.3/Instances/RandomInstanceProvider.cs
r14062 r14063 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002 -2015 Joseph Helm andHeuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002 - 2016 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 23 23 using System; 24 24 using System.Collections.Generic; 25 using System.Diagnostics.Contracts; 25 26 using System.IO; 26 using System.IO.Compression;27 27 using System.Linq; 28 using System.Reflection; 29 using System.Text.RegularExpressions; 28 using HeuristicLab.Core; 30 29 using HeuristicLab.Problems.Instances; 30 using HeuristicLab.Random; 31 31 32 32 namespace HeuristicLab.Problems.BinPacking2D { 33 public class BPPORLIBInstanceProvider : ProblemInstanceProvider<BPPData>, IProblemInstanceProvider<BPPData> { 33 // make sure that for each class we have a separate entry in the problem instance providers 34 public class RandomInstanceClass1Provider : RandomInstanceProvider { 35 public RandomInstanceClass1Provider() : base() { 36 @class = 1; 37 binWidth = binHeight = 10; 38 } 39 protected override void SampleItemParameters(IRandom rand, out int w, out int h) { 40 w = rand.Next(1, 11); 41 h = rand.Next(1, 11); 42 } 43 } 44 public class RandomInstanceClass2Provider : RandomInstanceProvider { 45 public RandomInstanceClass2Provider() : base() { 46 @class = 2; 47 binWidth = binHeight = 30; 48 } 49 protected override void SampleItemParameters(IRandom rand, out int w, out int h) { 50 w = rand.Next(1, 11); 51 h = rand.Next(1, 11); 52 } 53 } 54 public class RandomInstanceClass3Provider : RandomInstanceProvider { 55 public RandomInstanceClass3Provider() : base() { 56 @class = 3; 57 binWidth = binHeight = 40; 58 } 59 protected override void SampleItemParameters(IRandom rand, out int w, out int h) { 60 w = rand.Next(1, 36); 61 h = rand.Next(1, 36); 62 } 63 } 64 65 public class RandomInstanceClass4Provider : RandomInstanceProvider { 66 public RandomInstanceClass4Provider() : base() { 67 @class = 4; 68 binWidth = binHeight = 100; 69 } 70 protected override void SampleItemParameters(IRandom rand, out int w, out int h) { 71 w = rand.Next(1, 36); 72 h = rand.Next(1, 36); 73 } 74 } 75 public class RandomInstanceClass5Provider : RandomInstanceProvider { 76 public RandomInstanceClass5Provider() : base() { 77 @class = 5; 78 binWidth = binHeight = 100; 79 } 80 protected override void SampleItemParameters(IRandom rand, out int w, out int h) { 81 w = rand.Next(1, 101); 82 h = rand.Next(1, 101); 83 } 84 } 85 public class RandomInstanceClass6Provider : RandomInstanceProvider { 86 public RandomInstanceClass6Provider() : base() { 87 @class = 6; 88 binWidth = binHeight = 300; 89 } 90 protected override void SampleItemParameters(IRandom rand, out int w, out int h) { 91 w = rand.Next(1, 101); 92 h = rand.Next(1, 101); 93 } 94 } 95 public class RandomInstanceClass7Provider : RandomInstanceProvider { 96 public RandomInstanceClass7Provider() : base() { @class = 7; binWidth = binHeight = 100; } 97 } 98 public class RandomInstanceClass8Provider : RandomInstanceProvider { 99 public RandomInstanceClass8Provider() : base() { @class = 8; binWidth = binHeight = 100; } 100 } 101 public class RandomInstanceClass9Provider : RandomInstanceProvider { 102 public RandomInstanceClass9Provider() : base() { @class = 9; binWidth = binHeight = 100; } 103 } 104 public class RandomInstanceClass10Provider : RandomInstanceProvider { 105 public RandomInstanceClass10Provider() : base() { @class = 10; binWidth = binHeight = 100; } 106 } 107 public abstract class RandomInstanceProvider : ProblemInstanceProvider<BPPData>, IProblemInstanceProvider<BPPData> { 108 109 protected int @class; 110 protected int binWidth, binHeight; 34 111 35 112 public override string Name { 36 get { return "ORLIB BPP"; }113 get { return string.Format("Lodi, Martelli, Vigo (class={0})", @class); } 37 114 } 38 115 39 116 public override string Description { 40 get { return " Bin packing problems from the Operations Research Library."; }117 get { return "Randomly generated 2d bin packing problems as described in Lodi, Martello, and Vigo. 'Heuristic and metaheuristic approaches for a class of two-dimensional bin packing problems.' INFORMS Journal on Computing 11.4 (1999): 345-357."; } 41 118 } 42 119 43 120 public override Uri WebLink { 44 get { return n ew Uri("http://people.brunel.ac.uk/~mastjjb/jeb/orlib/binpacktwoinfo.html"); }121 get { return null; } 45 122 } 46 123 47 124 public override string ReferencePublication { 48 get { return String.Empty; } 49 } 125 get { return "Lodi, Martello, and Vigo. 'Heuristic and metaheuristic approaches for a class of two-dimensional bin packing problems.' INFORMS Journal on Computing 11.4 (1999): 345-357."; } 126 } 127 128 public RandomInstanceProvider() : base() { } 50 129 51 130 public override IEnumerable<IDataDescriptor> GetDataDescriptors() { 52 var instanceArchiveName = GetResourceName("BPPORLIB.zip"); 53 if (String.IsNullOrEmpty(instanceArchiveName)) yield break; 54 55 56 using (var file = new ZipArchive(GetType().Assembly.GetManifestResourceStream(instanceArchiveName))) { 57 58 foreach (var entry in file.Entries.OrderBy(x => x.Name)) { 59 if (string.IsNullOrWhiteSpace(entry.Name)) continue; 60 yield return new BPPORLIBDataDescriptor( 61 name: Path.GetFileNameWithoutExtension(entry.Name), 62 description: GetDescription(), 63 instanceIdentifier: entry.FullName, 64 solutionIdentifier: null); 131 // 10 classes 132 var rand = new MersenneTwister(1234); // fixed seed to makes sure that instances are always the same 133 foreach (int numItems in new int[] { 20, 40, 60, 80, 100 }) { 134 // get class parameters 135 // generate 30 different instances for each class 136 foreach (int instance in Enumerable.Range(1, 30)) { 137 string name = string.Format("n={0}-id={1:00} (class={2})", numItems, instance, @class); 138 var dd = new RandomDataDescriptor(name, name, numItems, seed: rand.Next()); 139 yield return dd; 65 140 } 66 141 } 67 142 } 68 143 69 public override BPPData LoadData(IDataDescriptor id) { 70 var descriptor = (BPPORLIBDataDescriptor)id; 71 var instanceArchiveName = GetResourceName("BPPORLIB.zip"); 72 using (var instancesZipFile = new ZipArchive(GetType().Assembly.GetManifestResourceStream(instanceArchiveName))) { 73 var entry = instancesZipFile.GetEntry(descriptor.InstanceIdentifier); 74 75 using (var stream = entry.Open()) { 76 var instance = BPPORLIBParser.Parse(stream); 77 instance.Name = id.Name; 78 instance.Description = id.Description; 79 80 return instance; 81 } 144 public override BPPData LoadData(IDataDescriptor dd) { 145 var randDd = dd as RandomDataDescriptor; 146 if (randDd == null) throw new NotSupportedException("Cannot load data descriptor " + dd); 147 148 var data = new BPPData() { 149 BinShape = new PackingShape(binWidth, binHeight), 150 Items = new PackingItem[randDd.NumItems] 151 }; 152 var instanceRand = new MersenneTwister((uint)randDd.Seed); 153 for (int i = 0; i < randDd.NumItems; i++) { 154 int w, h; 155 SampleItemParameters(instanceRand, out w, out h); 156 data.Items[i] = new PackingItem(w, h, data.BinShape); 157 } 158 return data; 159 } 160 161 // default implementation for class 7 .. 10 162 protected virtual void SampleItemParameters(IRandom rand, out int w, out int h) { 163 // for classes 1 - 5 164 Contract.Assert(@class >= 7 && @class <= 10); 165 var weights = new double[] { 0.1, 0.1, 0.1, 0.1 }; 166 weights[@class - 7] = 0.7; 167 var type = Enumerable.Range(1, 4).SampleProportional(rand, 1, weights).First(); 168 169 int minW, maxW; 170 int minH, maxH; 171 GetItemParameters(type, rand, binWidth, binHeight, 172 out minW, out maxW, out minH, out maxH); 173 174 w = rand.Next(minW, maxW + 1); 175 h = rand.Next(minH, maxH + 1); 176 } 177 178 private void GetItemParameters(int type, IRandom rand, 179 int w, int h, 180 out int minW, out int maxW, out int minH, out int maxH) { 181 switch (type) { 182 case 1: { 183 minW = w * 2 / 3; maxW = w; // integer division on purpose (see paper) 184 minH = 1; maxH = h / 2; 185 break; 186 } 187 case 2: { 188 minW = 1; maxW = w / 2; 189 minH = h * 2 / 3; maxH = h; 190 break; 191 } 192 case 3: { 193 minW = w / 2; maxW = w; 194 minH = h / 2; maxH = h; 195 break; 196 } 197 case 4: { 198 minW = 1; maxW = w / 2; 199 minH = 1; maxH = h / 2; 200 break; 201 } 202 default: { 203 throw new InvalidProgramException(); 204 } 82 205 } 83 206 } 84 207 85 208 public override bool CanImportData { 86 get { return true; }209 get { return false; } 87 210 } 88 211 public override BPPData ImportData(string path) { 89 var instance = BPPORLIBParser.Parse(path); 90 instance.Name = Path.GetFileName(path); 91 instance.Description = "Loaded from file \"" + path + "\" on " + DateTime.Now; 92 return instance; 212 throw new NotSupportedException(); 93 213 } 94 214 … … 97 217 } 98 218 99 public override void ExportData(BPPData instance, string path) { 100 BPPORLIBParser.Export(instance, path); 101 } 102 103 private string GetDescription() { 104 return "Embedded instance of plugin version " + Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyFileVersionAttribute), true).Cast<AssemblyFileVersionAttribute>().First().Version + "."; 105 } 106 107 protected virtual string GetResourceName(string fileName) { 108 return Assembly.GetExecutingAssembly().GetManifestResourceNames() 109 .SingleOrDefault(x => Regex.Match(x, @".*\.Data\." + fileName).Success); 110 } 219 public override void ExportData(BPPData instance, string file) { 220 using (Stream stream = new FileStream(file, FileMode.OpenOrCreate, FileAccess.Write)) { 221 Export(instance, stream); 222 } 223 } 224 public static void Export(BPPData instance, Stream stream) { 225 226 using (var writer = new StreamWriter(stream)) { 227 writer.WriteLine(String.Format("{0,-5} {1,-5} WBIN,HBIN", instance.BinShape.Width, instance.BinShape.Height)); 228 for (int i = 0; i < instance.NumItems; i++) { 229 if (i == 0) 230 writer.WriteLine("{0,-5} {1,-5} W(I),H(I),I=1,...,N", instance.Items[i].Width, instance.Items[i].Height); 231 else 232 writer.WriteLine("{0,-5} {1,-5}", instance.Items[i].Width, instance.Items[i].Height); 233 234 } 235 writer.Flush(); 236 } 237 } 238 111 239 } 112 240 } -
branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking.2D/3.3/Plugin.cs.frame
r13605 r14063 39 39 [PluginDependency("HeuristicLab.Persistence", "3.3")] 40 40 [PluginDependency("HeuristicLab.Problems.Instances", "3.3")] 41 [PluginDependency("HeuristicLab.Random", "3.3")] 41 42 public class Plugin : PluginBase { 42 43 }
Note: See TracChangeset
for help on using the changeset viewer.