Free cookie consent management tool by TermsFeed Policy Generator

source: branches/MemPRAlgorithm/HeuristicLab.Problems.GraphColoring/3.3/HeuristicLab.Problems.GraphColoring-3.3.csproj @ 14492

Last change on this file since 14492 was 14492, checked in by abeham, 7 years ago

#2701:

  • Updated LLE encoding
    • Made folder for version 3.4
    • Added conversion from and to LLE-b representation (back-links)
    • Updated moves and movegenerator to replace bidirectionaldictionary with LLE-b representation
  • Updated MemPR (linear linkage)
    • Updated tabu walk
  • Added test for conversion between LLE-e and LLE and LLE-b and LLE
  • Updated test for move apply/undo and added test for applying in sequence
File size: 7.0 KB
RevLine 
[14466]1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="14.0" DefaultTargets="Build" 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>{4B76E2CB-A990-4959-B080-1D81D418D325}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>HeuristicLab.Problems.GraphColoring</RootNamespace>
11    <AssemblyName>HeuristicLab.Problems.GraphColoring-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>..\..\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>..\..\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    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
38  </PropertyGroup>
39  <ItemGroup>
40    <Reference Include="System" />
41    <Reference Include="System.Core" />
42    <Reference Include="System.Xml.Linq" />
43    <Reference Include="System.Data.DataSetExtensions" />
44    <Reference Include="Microsoft.CSharp" />
45    <Reference Include="System.Data" />
46    <Reference Include="System.Net.Http" />
47    <Reference Include="System.Xml" />
48  </ItemGroup>
49  <ItemGroup>
50    <Compile Include="GraphColoringProblem.cs" />
51    <Compile Include="Plugin.cs" />
52    <None Include="Plugin.cs.frame" />
53    <None Include="Properties\AssemblyInfo.cs.frame" />
54    <Compile Include="Properties\AssemblyInfo.cs" />
55  </ItemGroup>
56  <ItemGroup>
57    <None Include="HeuristicLab.snk" />
58  </ItemGroup>
59  <ItemGroup>
[14471]60    <ProjectReference Include="..\..\HeuristicLab.Analysis\3.3\HeuristicLab.Analysis-3.3.csproj">
61      <Project>{887425B4-4348-49ED-A457-B7D2C26DDBF9}</Project>
62      <Name>HeuristicLab.Analysis-3.3</Name>
63      <Private>False</Private>
64    </ProjectReference>
[14466]65    <ProjectReference Include="..\..\HeuristicLab.Collections\3.3\HeuristicLab.Collections-3.3.csproj">
66      <Project>{958b43bc-cc5c-4fa2-8628-2b3b01d890b6}</Project>
67      <Name>HeuristicLab.Collections-3.3</Name>
68      <Private>False</Private>
69    </ProjectReference>
70    <ProjectReference Include="..\..\HeuristicLab.Common.Resources\3.3\HeuristicLab.Common.Resources-3.3.csproj">
71      <Project>{0e27a536-1c4a-4624-a65e-dc4f4f23e3e1}</Project>
72      <Name>HeuristicLab.Common.Resources-3.3</Name>
73      <Private>False</Private>
74    </ProjectReference>
75    <ProjectReference Include="..\..\HeuristicLab.Common\3.3\HeuristicLab.Common-3.3.csproj">
76      <Project>{a9ad58b9-3ef9-4cc1-97e5-8d909039ff5c}</Project>
77      <Name>HeuristicLab.Common-3.3</Name>
78      <Private>False</Private>
79    </ProjectReference>
80    <ProjectReference Include="..\..\HeuristicLab.Core\3.3\HeuristicLab.Core-3.3.csproj">
81      <Project>{C36BD924-A541-4A00-AFA8-41701378DDC5}</Project>
82      <Name>HeuristicLab.Core-3.3</Name>
83      <Private>False</Private>
84    </ProjectReference>
85    <ProjectReference Include="..\..\HeuristicLab.Data\3.3\HeuristicLab.Data-3.3.csproj">
86      <Project>{bbab9df5-5ef3-4ba8-ade9-b36e82114937}</Project>
87      <Name>HeuristicLab.Data-3.3</Name>
88      <Private>False</Private>
89    </ProjectReference>
[14492]90    <ProjectReference Include="..\..\HeuristicLab.Encodings.LinearLinkageEncoding\3.4\HeuristicLab.Encodings.LinearLinkageEncoding-3.4.csproj">
[14487]91      <Project>{166507c9-ef26-4370-bb80-699742a29d4f}</Project>
92      <Name>HeuristicLab.Encodings.LinearLinkageEncoding-3.4</Name>
[14466]93    </ProjectReference>
94    <ProjectReference Include="..\..\HeuristicLab.Operators\3.3\HeuristicLab.Operators-3.3.csproj">
95      <Project>{23da7ff4-d5b8-41b6-aa96-f0561d24f3ee}</Project>
96      <Name>HeuristicLab.Operators-3.3</Name>
97      <Private>False</Private>
98    </ProjectReference>
[14471]99    <ProjectReference Include="..\..\HeuristicLab.Optimization.Operators\3.3\HeuristicLab.Optimization.Operators-3.3.csproj">
100      <Project>{25087811-f74c-4128-bc86-8324271da13e}</Project>
101      <Name>HeuristicLab.Optimization.Operators-3.3</Name>
102      <Private>False</Private>
103    </ProjectReference>
[14466]104    <ProjectReference Include="..\..\HeuristicLab.Optimization\3.3\HeuristicLab.Optimization-3.3.csproj">
105      <Project>{14ab8d24-25bc-400c-a846-4627aa945192}</Project>
106      <Name>HeuristicLab.Optimization-3.3</Name>
107      <Private>False</Private>
108    </ProjectReference>
109    <ProjectReference Include="..\..\HeuristicLab.Parameters\3.3\HeuristicLab.Parameters-3.3.csproj">
110      <Project>{56f9106a-079f-4c61-92f6-86a84c2d84b7}</Project>
111      <Name>HeuristicLab.Parameters-3.3</Name>
112      <Private>False</Private>
113    </ProjectReference>
114    <ProjectReference Include="..\..\HeuristicLab.Persistence\3.3\HeuristicLab.Persistence-3.3.csproj">
115      <Project>{102bc7d3-0ef9-439c-8f6d-96ff0fdb8e1b}</Project>
116      <Name>HeuristicLab.Persistence-3.3</Name>
117      <Private>False</Private>
118    </ProjectReference>
119    <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\3.3\HeuristicLab.PluginInfrastructure-3.3.csproj">
120      <Project>{94186a6a-5176-4402-ae83-886557b53cca}</Project>
121      <Name>HeuristicLab.PluginInfrastructure-3.3</Name>
122      <Private>False</Private>
123    </ProjectReference>
124    <ProjectReference Include="..\..\HeuristicLab.Problems.Instances\3.3\HeuristicLab.Problems.Instances-3.3.csproj">
125      <Project>{3540e29e-4793-49e7-8ee2-fea7f61c3994}</Project>
126      <Name>HeuristicLab.Problems.Instances-3.3</Name>
127      <Private>False</Private>
128    </ProjectReference>
129  </ItemGroup>
130  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
131  <PropertyGroup>
132    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
133set ProjectDir=$(ProjectDir)
134set SolutionDir=$(SolutionDir)
135set Outdir=$(Outdir)
136
137call PreBuildEvent.cmd</PreBuildEvent>
138  </PropertyGroup>
139  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
140       Other similar extension points exist, see Microsoft.Common.targets.
141  <Target Name="BeforeBuild">
142  </Target>
143  <Target Name="AfterBuild">
144  </Target>
145  -->
146</Project>
Note: See TracBrowser for help on using the repository browser.