Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2817-BinPackingSpeedup/HeuristicLab.Problems.BinPacking/3.3/HeuristicLab.Problems.BinPacking-3.3.csproj @ 15959

Last change on this file since 15959 was 15959, checked in by rhanghof, 6 years ago

#2817:

  • Refactoring BinPackerFormClosure.cs -> BinPackerWidthBestFit.cs
  • Changes on the unit tests
File size: 14.5 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3  <PropertyGroup>
4    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6    <ProductVersion>8.0.30703</ProductVersion>
7    <SchemaVersion>2.0</SchemaVersion>
8    <ProjectGuid>{F8A55094-3CD5-4034-B0CA-5BD7FFB016D4}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.Problems.BinPacking</RootNamespace>
12    <AssemblyName>HeuristicLab.Problems.BinPacking-3.3</AssemblyName>
13    <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
15    <TargetFrameworkProfile />
16  </PropertyGroup>
17  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
18    <DebugSymbols>true</DebugSymbols>
19    <DebugType>full</DebugType>
20    <Optimize>false</Optimize>
21    <OutputPath>..\..\bin\</OutputPath>
22    <DefineConstants>DEBUG;TRACE</DefineConstants>
23    <ErrorReport>prompt</ErrorReport>
24    <WarningLevel>4</WarningLevel>
25  </PropertyGroup>
26  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
27    <DebugType>pdbonly</DebugType>
28    <Optimize>true</Optimize>
29    <OutputPath>..\..\bin\</OutputPath>
30    <DefineConstants>TRACE</DefineConstants>
31    <ErrorReport>prompt</ErrorReport>
32    <WarningLevel>4</WarningLevel>
33  </PropertyGroup>
34  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
35    <DebugSymbols>true</DebugSymbols>
36    <OutputPath>..\..\bin\</OutputPath>
37    <DefineConstants>DEBUG;TRACE</DefineConstants>
38    <DebugType>full</DebugType>
39    <PlatformTarget>x64</PlatformTarget>
40    <ErrorReport>prompt</ErrorReport>
41  </PropertyGroup>
42  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
43    <OutputPath>..\..\bin\</OutputPath>
44    <DefineConstants>TRACE</DefineConstants>
45    <Optimize>true</Optimize>
46    <DebugType>pdbonly</DebugType>
47    <PlatformTarget>x64</PlatformTarget>
48    <ErrorReport>prompt</ErrorReport>
49    <Prefer32Bit>false</Prefer32Bit>
50  </PropertyGroup>
51  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
52    <DebugSymbols>true</DebugSymbols>
53    <OutputPath>..\..\bin\</OutputPath>
54    <DefineConstants>DEBUG;TRACE</DefineConstants>
55    <DebugType>full</DebugType>
56    <PlatformTarget>x86</PlatformTarget>
57    <ErrorReport>prompt</ErrorReport>
58  </PropertyGroup>
59  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
60    <OutputPath>..\..\bin\</OutputPath>
61    <DefineConstants>TRACE</DefineConstants>
62    <Optimize>true</Optimize>
63    <DebugType>pdbonly</DebugType>
64    <PlatformTarget>x86</PlatformTarget>
65    <ErrorReport>prompt</ErrorReport>
66  </PropertyGroup>
67  <PropertyGroup>
68    <SignAssembly>true</SignAssembly>
69  </PropertyGroup>
70  <PropertyGroup>
71    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
72  </PropertyGroup>
73  <ItemGroup>
74    <Reference Include="System" />
75    <Reference Include="System.Core" />
76    <Reference Include="System.Drawing" />
77    <Reference Include="System.IO.Compression" />
78    <Reference Include="System.Windows.Forms" />
79  </ItemGroup>
80  <ItemGroup>
81    <Compile Include="2D\BinPacking2D.cs" />
82    <Compile Include="2D\Evaluators\BinUtilizationEvaluator.cs" />
83    <Compile Include="2D\Evaluators\PackingRatioEvaluator.cs" />
84    <Compile Include="2D\Instances\BPPData.cs" />
85    <Compile Include="2D\Instances\RandomDataDescriptor.cs" />
86    <Compile Include="2D\Instances\RandomInstanceProvider.cs" />
87    <Compile Include="2D\IntegerVectorEncoding\BottomLeftIntegerVectorDecoder.cs" />
88    <Compile Include="2D\IntegerVectorEncoding\ExtremePointIntegerVectorDecoder.cs" />
89    <Compile Include="2D\IntegerVectorEncoding\IntegerVectorDecoderBase.cs" />
90    <Compile Include="2D\IntegerVectorEncoding\IntegerVectorProblem.cs" />
91    <Compile Include="2D\Interfaces\IDecoder.cs" />
92    <Compile Include="2D\Interfaces\IEvaluator.cs" />
93    <Compile Include="2D\Interfaces\IOperator.cs" />
94    <Compile Include="2D\MoveEvaluatorBase.cs" />
95    <Compile Include="2D\PackingItem.cs" />
96    <Compile Include="2D\PackingPosition.cs" />
97    <Compile Include="2D\PackingShape.cs" />
98    <Compile Include="2D\PermutationEncoding\BottomLeftPermutationDecoder.cs" />
99    <Compile Include="2D\PermutationEncoding\ExtremePointPermutationDecoder.cs" />
100    <Compile Include="2D\PermutationEncoding\PermutationProblem.cs" />
101    <Compile Include="2D\PermutationEncoding\Swap2MoveEvaluator.cs" />
102    <Compile Include="2D\PermutationEncoding\TranslocationMoveEvaluator.cs" />
103    <Compile Include="2D\ProblemBase.cs" />
104    <Compile Include="2D\Solution.cs" />
105    <Compile Include="3D\BinPacking3DException.cs" />
106    <Compile Include="3D\ExtremePointCreation\ExtremePointCreatorFactory.cs" />
107    <Compile Include="3D\ExtremePointCreation\ExtremePointCreator.cs" />
108    <Compile Include="3D\ExtremePointCreation\IExtremePointCreator.cs" />
109    <Compile Include="3D\ExtremePointCreation\LineProjectionBasedEPCreator.cs" />
110    <Compile Include="3D\ExtremePointCreation\PointProjectionBasedEPCreator.cs" />
111    <Compile Include="3D\ExtremePointPruning\ExtremePointPruning.cs" />
112    <Compile Include="3D\ExtremePointPruning\ExtremePointPruningFactory.cs" />
113    <Compile Include="3D\ExtremePointPruning\IExtremePointPruning.cs" />
114    <Compile Include="3D\Geometry\Edge3D.cs" />
115    <Compile Include="3D\Graph\VertexWithItemId.cs" />
116    <Compile Include="3D\Material\MaterialType.cs" />
117    <Compile Include="3D\Packer\BinPacker.cs" />
118    <Compile Include="3D\Packer\BinPackerFactory.cs" />
119    <Compile Include="3D\Packer\BinPackerFirstFit.cs" />
120    <Compile Include="3D\BinPacking3D.cs" />
121    <Compile Include="3D\Encoding\ExtremePointPermutationDecoder.cs" />
122    <Compile Include="3D\Evaluators\BinUtilizationEvaluator.cs" />
123    <Compile Include="3D\Evaluators\PackingRatioEvaluator.cs" />
124    <Compile Include="3D\Instances\RandomInstanceProvider.cs" />
125    <Compile Include="3D\Geometry\Line3D.cs" />
126    <Compile Include="3D\Geometry\Plane3D.cs" />
127    <Compile Include="3D\Geometry\Vector3D.cs" />
128    <Compile Include="3D\Packer\BinPackerFreeVolumeBestFit.cs" />
129    <Compile Include="3D\Packer\BinPackerMinRSLeft.cs" />
130    <Compile Include="3D\Packer\BinPackerWidthBestFit.cs" />
131    <Compile Include="3D\Packer\BinPackerResidualSpaceBestFit.cs" />
132    <Compile Include="3D\Instances\ThreeDInstanceDescriptor.cs" />
133    <Compile Include="3D\Instances\BPPData.cs" />
134    <Compile Include="3D\Instances\RandomDataDescriptor.cs" />
135    <Compile Include="3D\Instances\RealWorldContainerPackingInstanceProvider.cs" />
136    <Compile Include="3D\Instances\ThreeDInstanceParser.cs" />
137    <Compile Include="3D\Encoding\IDecoder.cs" />
138    <Compile Include="3D\Evaluators\IEvaluator.cs" />
139    <Compile Include="3D\Packer\IBinPacker.cs" />
140    <Compile Include="3D\ResidualSpace.cs" />
141    <Compile Include="3D\ResidualSpaceCalculation\IResidualSpaceCalculator.cs" />
142    <Compile Include="3D\ResidualSpaceCalculation\ResidualSpaceCalculator.cs" />
143    <Compile Include="3D\ResidualSpaceCalculation\ResidualSpaceCalculatorFactory.cs" />
144    <Compile Include="3D\IOperator.cs" />
145    <Compile Include="3D\Evaluators\MoveEvaluatorBase.cs" />
146    <Compile Include="3D\PackingItem.cs" />
147    <Compile Include="3D\PackingPosition.cs" />
148    <Compile Include="3D\PackingShape.cs" />
149    <Compile Include="3D\Encoding\PermutationProblem.cs" />
150    <Compile Include="3D\Evaluators\Swap2MoveEvaluator.cs" />
151    <Compile Include="3D\Evaluators\TranslocationMoveEvaluator.cs" />
152    <Compile Include="3D\ProblemBase.cs" />
153    <Compile Include="3D\Solution.cs" />
154    <Compile Include="3D\Sorting\IPackingItemClusteredSorter.cs" />
155    <Compile Include="3D\Sorting\PackingItemAreaHeightSorter.cs" />
156    <Compile Include="3D\Sorting\IPackingItemSorter.cs" />
157    <Compile Include="3D\Sorting\PackingItemClusterdHeightAreaSorter.cs" />
158    <Compile Include="3D\Sorting\PackingItemClusteredAreaHeightSorter.cs" />
159    <Compile Include="3D\Sorting\PackingItemGivenSorter.cs" />
160    <Compile Include="3D\Sorting\PackingItemHeightAreaSorter.cs" />
161    <Compile Include="3D\Sorting\PackingItemHeightVolumeSorter.cs" />
162    <Compile Include="3D\Sorting\PackingItemSorterFactory.cs" />
163    <Compile Include="3D\Sorting\PackingItemVolumeHeightSorter.cs" />
164    <Compile Include="3D\Sorting\PermutationPackingItemSorter.cs" />
165    <Compile Include="3D\Algorithms\ExtremePointAlgorithm.cs" />
166    <Compile Include="BinPacking.cs" />
167    <Compile Include="Interfaces\IPackingItem.cs">
168      <SubType>Code</SubType>
169    </Compile>
170    <Compile Include="Interfaces\IPackingPosition.cs">
171      <SubType>Code</SubType>
172    </Compile>
173    <Compile Include="Interfaces\IPackingShape.cs">
174      <SubType>Code</SubType>
175    </Compile>
176    <Compile Include="PackingPlan.cs" />
177    <Compile Include="PackingPosition.cs" />
178    <Compile Include="PackingShape.cs" />
179    <Compile Include="Plugin.cs" />
180    <Compile Include="Properties\AssemblyInfo.cs" />
181    <Compile Include="Random\SRand48.cs" />
182  </ItemGroup>
183  <ItemGroup>
184    <EmbeddedResource Include="3D\Instances\ContainerPackingInstances.zip" />
185    <None Include="HeuristicLab.snk" />
186    <None Include="Properties\AssemblyInfo.cs.frame" />
187    <None Include="Plugin.cs.frame" />
188  </ItemGroup>
189  <ItemGroup />
190  <ItemGroup>
191    <ProjectReference Include="..\..\HeuristicLab.Analysis\3.3\HeuristicLab.Analysis-3.3.csproj">
192      <Project>{887425B4-4348-49ED-A457-B7D2C26DDBF9}</Project>
193      <Name>HeuristicLab.Analysis-3.3</Name>
194      <Private>False</Private>
195    </ProjectReference>
196    <ProjectReference Include="..\..\HeuristicLab.Collections\3.3\HeuristicLab.Collections-3.3.csproj">
197      <Project>{958B43BC-CC5C-4FA2-8628-2B3B01D890B6}</Project>
198      <Name>HeuristicLab.Collections-3.3</Name>
199      <Private>False</Private>
200    </ProjectReference>
201    <ProjectReference Include="..\..\HeuristicLab.Common\3.3\HeuristicLab.Common-3.3.csproj">
202      <Project>{a9ad58b9-3ef9-4cc1-97e5-8d909039ff5c}</Project>
203      <Name>HeuristicLab.Common-3.3</Name>
204      <Private>False</Private>
205    </ProjectReference>
206    <ProjectReference Include="..\..\HeuristicLab.Core\3.3\HeuristicLab.Core-3.3.csproj">
207      <Project>{c36bd924-a541-4a00-afa8-41701378ddc5}</Project>
208      <Name>HeuristicLab.Core-3.3</Name>
209      <Private>False</Private>
210    </ProjectReference>
211    <ProjectReference Include="..\..\HeuristicLab.Data\3.3\HeuristicLab.Data-3.3.csproj">
212      <Project>{bbab9df5-5ef3-4ba8-ade9-b36e82114937}</Project>
213      <Name>HeuristicLab.Data-3.3</Name>
214      <Private>False</Private>
215    </ProjectReference>
216    <ProjectReference Include="..\..\HeuristicLab.Encodings.IntegerVectorEncoding\3.3\HeuristicLab.Encodings.IntegerVectorEncoding-3.3.csproj">
217      <Project>{ddfb14dd-2a85-493c-a52d-e69729bbaeb0}</Project>
218      <Name>HeuristicLab.Encodings.IntegerVectorEncoding-3.3</Name>
219      <Private>False</Private>
220    </ProjectReference>
221    <ProjectReference Include="..\..\HeuristicLab.Encodings.PermutationEncoding\3.3\HeuristicLab.Encodings.PermutationEncoding-3.3.csproj">
222      <Project>{dbecb8b0-b166-4133-baf1-ed67c3fd7fca}</Project>
223      <Name>HeuristicLab.Encodings.PermutationEncoding-3.3</Name>
224      <Private>False</Private>
225    </ProjectReference>
226    <ProjectReference Include="..\..\HeuristicLab.Operators\3.3\HeuristicLab.Operators-3.3.csproj">
227      <Project>{23DA7FF4-D5B8-41B6-AA96-F0561D24F3EE}</Project>
228      <Name>HeuristicLab.Operators-3.3</Name>
229      <Private>False</Private>
230    </ProjectReference>
231    <ProjectReference Include="..\..\HeuristicLab.Optimization.Operators\3.3\HeuristicLab.Optimization.Operators-3.3.csproj">
232      <Project>{25087811-F74C-4128-BC86-8324271DA13E}</Project>
233      <Name>HeuristicLab.Optimization.Operators-3.3</Name>
234      <Private>False</Private>
235    </ProjectReference>
236    <ProjectReference Include="..\..\HeuristicLab.Optimization\3.3\HeuristicLab.Optimization-3.3.csproj">
237      <Project>{14ab8d24-25bc-400c-a846-4627aa945192}</Project>
238      <Name>HeuristicLab.Optimization-3.3</Name>
239      <Private>False</Private>
240    </ProjectReference>
241    <ProjectReference Include="..\..\HeuristicLab.Parameters\3.3\HeuristicLab.Parameters-3.3.csproj">
242      <Project>{56F9106A-079F-4C61-92F6-86A84C2D84B7}</Project>
243      <Name>HeuristicLab.Parameters-3.3</Name>
244      <Private>False</Private>
245    </ProjectReference>
246    <ProjectReference Include="..\..\HeuristicLab.Persistence\3.3\HeuristicLab.Persistence-3.3.csproj">
247      <Project>{102bc7d3-0ef9-439c-8f6d-96ff0fdb8e1b}</Project>
248      <Name>HeuristicLab.Persistence-3.3</Name>
249      <Private>False</Private>
250    </ProjectReference>
251    <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\3.3\HeuristicLab.PluginInfrastructure-3.3.csproj">
252      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
253      <Name>HeuristicLab.PluginInfrastructure-3.3</Name>
254      <Private>False</Private>
255    </ProjectReference>
256    <ProjectReference Include="..\..\HeuristicLab.Problems.Instances\3.3\HeuristicLab.Problems.Instances-3.3.csproj">
257      <Project>{3540E29E-4793-49E7-8EE2-FEA7F61C3994}</Project>
258      <Name>HeuristicLab.Problems.Instances-3.3</Name>
259      <Private>False</Private>
260    </ProjectReference>
261    <ProjectReference Include="..\..\HeuristicLab.Random\3.3\HeuristicLab.Random-3.3.csproj">
262      <Project>{F4539FB6-4708-40C9-BE64-0A1390AEA197}</Project>
263      <Name>HeuristicLab.Random-3.3</Name>
264      <Private>False</Private>
265    </ProjectReference>
266  </ItemGroup>
267  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
268  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
269       Other similar extension points exist, see Microsoft.Common.targets.
270  <Target Name="BeforeBuild">
271  </Target>
272  <Target Name="AfterBuild">
273  </Target>
274  -->
275  <PropertyGroup>
276    <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
277set ProjectDir=$(ProjectDir)
278set SolutionDir=$(SolutionDir)
279set Outdir=$(Outdir)
280
281call PreBuildEvent.cmd
282</PreBuildEvent>
283    <PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' ">
284export ProjectDir=$(ProjectDir)
285export SolutionDir=$(SolutionDir)
286
287$SolutionDir/PreBuildEvent.sh
288</PreBuildEvent>
289  </PropertyGroup>
290</Project>
Note: See TracBrowser for help on using the repository browser.