Free cookie consent management tool by TermsFeed Policy Generator

source: branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms-3.3.csproj @ 15553

Last change on this file since 15553 was 15553, checked in by abeham, 6 years ago

#1614:

  • Implementing basic algorithm according to paper (rechecking all operators)
  • Checking implementation with paper
  • Improved speed of move generator
  • Improved speed of randomized solution creator
File size: 6.3 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4  <PropertyGroup>
5    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7    <ProjectGuid>{577239EC-7D7F-4505-A0A4-572E34010DBA}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms</RootNamespace>
11    <AssemblyName>HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms-3.3</AssemblyName>
12    <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
13    <FileAlignment>512</FileAlignment>
14    <TargetFrameworkProfile />
15  </PropertyGroup>
16  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17    <DebugSymbols>true</DebugSymbols>
18    <DebugType>full</DebugType>
19    <Optimize>false</Optimize>
20    <OutputPath>..\..\..\..\trunk\sources\bin\</OutputPath>
21    <DefineConstants>DEBUG;TRACE</DefineConstants>
22    <ErrorReport>prompt</ErrorReport>
23    <WarningLevel>4</WarningLevel>
24  </PropertyGroup>
25  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26    <DebugType>pdbonly</DebugType>
27    <Optimize>true</Optimize>
28    <OutputPath>..\..\..\..\trunk\sources\bin\</OutputPath>
29    <DefineConstants>TRACE</DefineConstants>
30    <ErrorReport>prompt</ErrorReport>
31    <WarningLevel>4</WarningLevel>
32  </PropertyGroup>
33  <PropertyGroup>
34    <SignAssembly>true</SignAssembly>
35  </PropertyGroup>
36  <PropertyGroup>
37    <DelaySign>false</DelaySign>
38  </PropertyGroup>
39  <PropertyGroup>
40    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
41  </PropertyGroup>
42  <ItemGroup>
43    <Reference Include="HeuristicLab.Analysis-3.3">
44      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Analysis-3.3.dll</HintPath>
45      <Private>False</Private>
46    </Reference>
47    <Reference Include="HeuristicLab.Collections-3.3">
48      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Collections-3.3.dll</HintPath>
49      <Private>False</Private>
50    </Reference>
51    <Reference Include="HeuristicLab.Common-3.3">
52      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Common-3.3.dll</HintPath>
53      <Private>False</Private>
54    </Reference>
55    <Reference Include="HeuristicLab.Common.Resources-3.3">
56      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Common.Resources-3.3.dll</HintPath>
57      <Private>False</Private>
58    </Reference>
59    <Reference Include="HeuristicLab.Core-3.3">
60      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Core-3.3.dll</HintPath>
61      <Private>False</Private>
62    </Reference>
63    <Reference Include="HeuristicLab.Data-3.3">
64      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Data-3.3.dll</HintPath>
65      <Private>False</Private>
66    </Reference>
67    <Reference Include="HeuristicLab.Operators-3.3">
68      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Operators-3.3.dll</HintPath>
69      <Private>False</Private>
70    </Reference>
71    <Reference Include="HeuristicLab.Optimization.Operators-3.3">
72      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Optimization.Operators-3.3.dll</HintPath>
73      <Private>False</Private>
74    </Reference>
75    <Reference Include="HeuristicLab.Parameters-3.3">
76      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Parameters-3.3.dll</HintPath>
77      <Private>False</Private>
78    </Reference>
79    <Reference Include="HeuristicLab.Persistence-3.3">
80      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Persistence-3.3.dll</HintPath>
81      <Private>False</Private>
82    </Reference>
83    <Reference Include="HeuristicLab.PluginInfrastructure-3.3">
84      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.PluginInfrastructure-3.3.dll</HintPath>
85      <Private>False</Private>
86    </Reference>
87    <Reference Include="HeuristicLab.Problems.Instances-3.3">
88      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Problems.Instances-3.3.dll</HintPath>
89      <Private>False</Private>
90    </Reference>
91    <Reference Include="HeuristicLab.Random-3.3">
92      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Random-3.3.dll</HintPath>
93      <Private>False</Private>
94    </Reference>
95    <Reference Include="System" />
96    <Reference Include="System.Core" />
97    <Reference Include="System.Data" />
98    <Reference Include="System.Drawing" />
99  </ItemGroup>
100  <ItemGroup>
101    <Compile Include="GRASPContext.cs" />
102    <Compile Include="GRASP.cs" />
103    <Compile Include="Interfaces.cs" />
104    <Compile Include="Plugin.cs" />
105    <Compile Include="Properties\AssemblyInfo.cs" />
106    <Compile Include="SingleObjectiveSolutionScope.cs" />
107  </ItemGroup>
108  <ItemGroup>
109    <ProjectReference Include="..\..\HeuristicLab.Encodings.IntegerVectorEncoding\3.3\HeuristicLab.Encodings.IntegerVectorEncoding-3.3.csproj">
110      <Project>{ddfb14dd-2a85-493c-a52d-e69729bbaeb0}</Project>
111      <Name>HeuristicLab.Encodings.IntegerVectorEncoding-3.3</Name>
112      <Private>False</Private>
113    </ProjectReference>
114    <ProjectReference Include="..\..\HeuristicLab.Optimization\3.3\HeuristicLab.Optimization-3.3.csproj">
115      <Project>{14ab8d24-25bc-400c-a846-4627aa945192}</Project>
116      <Name>HeuristicLab.Optimization-3.3</Name>
117      <Private>False</Private>
118    </ProjectReference>
119    <ProjectReference Include="..\..\HeuristicLab.Problems.GeneralizedQuadraticAssignment\3.3\HeuristicLab.Problems.GeneralizedQuadraticAssignment-3.3.csproj">
120      <Project>{c739e6d2-5680-4804-a810-8017da0c238f}</Project>
121      <Name>HeuristicLab.Problems.GeneralizedQuadraticAssignment-3.3</Name>
122      <Private>False</Private>
123    </ProjectReference>
124  </ItemGroup>
125  <ItemGroup>
126    <None Include="HeuristicLab.snk" />
127  </ItemGroup>
128  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
129  <PropertyGroup>
130    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
131set ProjectDir=$(ProjectDir)
132set SolutionDir=$(SolutionDir)
133set Outdir=$(Outdir)
134
135call PreBuildEvent.cmd</PreBuildEvent>
136  </PropertyGroup>
137</Project>
Note: See TracBrowser for help on using the repository browser.