Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Encodings.BinaryVectorEncoding/3.3/HeuristicLab.Encodings.BinaryVectorEncoding-3.3.csproj @ 3418

Last change on this file since 3418 was 3418, checked in by abeham, 14 years ago

Moved TabuMaker from Optimization to Optimization.Operators (and updated references)
Added StochasticMultiBranch
Implemented MultiCrossover and PermutationMultiCrossover
#976, #840

File size: 8.7 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="3.5" 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>9.0.30729</ProductVersion>
7    <SchemaVersion>2.0</SchemaVersion>
8    <ProjectGuid>{66D249C3-A01D-42A8-82A2-919BC8EC3D83}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.Encodings.BinaryVectorEncoding</RootNamespace>
12    <AssemblyName>HeuristicLab.Encodings.BinaryVectorEncoding-3.3</AssemblyName>
13    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
15    <SignAssembly>true</SignAssembly>
16    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
17  </PropertyGroup>
18  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
19    <DebugSymbols>true</DebugSymbols>
20    <DebugType>full</DebugType>
21    <Optimize>false</Optimize>
22    <OutputPath>bin\Debug\</OutputPath>
23    <DefineConstants>DEBUG;TRACE</DefineConstants>
24    <ErrorReport>prompt</ErrorReport>
25    <WarningLevel>4</WarningLevel>
26  </PropertyGroup>
27  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
28    <DebugType>pdbonly</DebugType>
29    <Optimize>true</Optimize>
30    <OutputPath>bin\Release\</OutputPath>
31    <DefineConstants>TRACE</DefineConstants>
32    <ErrorReport>prompt</ErrorReport>
33    <WarningLevel>4</WarningLevel>
34  </PropertyGroup>
35  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
36    <DebugSymbols>true</DebugSymbols>
37    <OutputPath>bin\x64\Debug\</OutputPath>
38    <DefineConstants>DEBUG;TRACE</DefineConstants>
39    <DebugType>full</DebugType>
40    <PlatformTarget>x64</PlatformTarget>
41    <ErrorReport>prompt</ErrorReport>
42  </PropertyGroup>
43  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
44    <OutputPath>bin\x64\Release\</OutputPath>
45    <DefineConstants>TRACE</DefineConstants>
46    <Optimize>true</Optimize>
47    <DebugType>pdbonly</DebugType>
48    <PlatformTarget>x64</PlatformTarget>
49    <ErrorReport>prompt</ErrorReport>
50  </PropertyGroup>
51  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
52    <DebugSymbols>true</DebugSymbols>
53    <OutputPath>bin\x86\Debug\</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\x86\Release\</OutputPath>
61    <DefineConstants>TRACE</DefineConstants>
62    <Optimize>true</Optimize>
63    <DebugType>pdbonly</DebugType>
64    <PlatformTarget>x86</PlatformTarget>
65    <ErrorReport>prompt</ErrorReport>
66  </PropertyGroup>
67  <ItemGroup>
68    <Reference Include="System" />
69    <Reference Include="System.Core">
70      <RequiredTargetFramework>3.5</RequiredTargetFramework>
71    </Reference>
72    <Reference Include="System.Xml.Linq">
73      <RequiredTargetFramework>3.5</RequiredTargetFramework>
74    </Reference>
75    <Reference Include="System.Data.DataSetExtensions">
76      <RequiredTargetFramework>3.5</RequiredTargetFramework>
77    </Reference>
78    <Reference Include="System.Data" />
79    <Reference Include="System.Xml" />
80  </ItemGroup>
81  <ItemGroup>
82    <None Include="HeuristicLab.snk" />
83    <None Include="HeuristicLabEncodingsBinaryVectorEncodingPlugin.cs.frame" />
84    <None Include="Properties\AssemblyInfo.frame" />
85  </ItemGroup>
86  <ItemGroup>
87    <Compile Include="Creators\RandomBinaryVectorCreator.cs" />
88    <Compile Include="Crossovers\UniformCrossover.cs" />
89    <Compile Include="Crossovers\SinglePointCrossover.cs" />
90    <Compile Include="Crossovers\NPointCrossover.cs" />
91    <Compile Include="HeuristicLabEncodingsBinaryVectorEncodingPlugin.cs" />
92    <Compile Include="BinaryVector.cs" />
93    <Compile Include="Interfaces\IOneBitflipMoveOperator.cs" />
94    <Compile Include="Interfaces\IBinaryVectorCreator.cs" />
95    <Compile Include="Interfaces\IBinaryVectorCrossover.cs" />
96    <Compile Include="Interfaces\IBinaryVectorManipulator.cs" />
97    <Compile Include="Interfaces\IBinaryVectorOperator.cs" />
98    <Compile Include="BinaryVectorCreator.cs" />
99    <Compile Include="BinaryVectorCrossover.cs" />
100    <Compile Include="BinaryVectorManipulator.cs" />
101    <Compile Include="Interfaces\IBinaryVectorMoveOperator.cs" />
102    <Compile Include="Manipulators\SomePositionsBitflipManipulator.cs" />
103    <Compile Include="Manipulators\SinglePositionBitflipManipulator.cs" />
104    <Compile Include="Moves\OneBitflipMove\ExhaustiveOneBitflipMoveGenerator.cs" />
105    <Compile Include="Moves\OneBitflipMove\OneBitflipMove.cs" />
106    <Compile Include="Moves\OneBitflipMove\OneBitflipMoveGenerator.cs" />
107    <Compile Include="Moves\OneBitflipMove\OneBitflipMoveMaker.cs" />
108    <Compile Include="Moves\OneBitflipMove\OneBitflipMoveTabuChecker.cs" />
109    <Compile Include="Moves\OneBitflipMove\OneBitflipMoveTabuMaker.cs" />
110    <Compile Include="Moves\OneBitflipMove\OneBitflipMoveAttribute.cs" />
111    <Compile Include="Moves\OneBitflipMove\StochasticOneBitflipMultiMoveGenerator.cs" />
112    <Compile Include="Moves\OneBitflipMove\StochasticOneBitflipSingleMoveGenerator.cs" />
113    <Compile Include="Moves\OneIndexMove.cs" />
114    <Compile Include="Properties\AssemblyInfo.cs" />
115  </ItemGroup>
116  <ItemGroup>
117    <ProjectReference Include="..\..\HeuristicLab.Collections\3.3\HeuristicLab.Collections-3.3.csproj">
118      <Project>{958B43BC-CC5C-4FA2-8628-2B3B01D890B6}</Project>
119      <Name>HeuristicLab.Collections-3.3</Name>
120    </ProjectReference>
121    <ProjectReference Include="..\..\HeuristicLab.Common\3.3\HeuristicLab.Common-3.3.csproj">
122      <Project>{A9AD58B9-3EF9-4CC1-97E5-8D909039FF5C}</Project>
123      <Name>HeuristicLab.Common-3.3</Name>
124    </ProjectReference>
125    <ProjectReference Include="..\..\HeuristicLab.Core\3.3\HeuristicLab.Core-3.3.csproj">
126      <Project>{C36BD924-A541-4A00-AFA8-41701378DDC5}</Project>
127      <Name>HeuristicLab.Core-3.3</Name>
128    </ProjectReference>
129    <ProjectReference Include="..\..\HeuristicLab.Data\3.3\HeuristicLab.Data-3.3.csproj">
130      <Project>{BBAB9DF5-5EF3-4BA8-ADE9-B36E82114937}</Project>
131      <Name>HeuristicLab.Data-3.3</Name>
132    </ProjectReference>
133    <ProjectReference Include="..\..\HeuristicLab.Operators\3.3\HeuristicLab.Operators-3.3.csproj">
134      <Project>{23DA7FF4-D5B8-41B6-AA96-F0561D24F3EE}</Project>
135      <Name>HeuristicLab.Operators-3.3</Name>
136    </ProjectReference>
137    <ProjectReference Include="..\..\HeuristicLab.Optimization.Operators\3.3\HeuristicLab.Optimization.Operators-3.3.csproj">
138      <Project>{25087811-F74C-4128-BC86-8324271DA13E}</Project>
139      <Name>HeuristicLab.Optimization.Operators-3.3</Name>
140    </ProjectReference>
141    <ProjectReference Include="..\..\HeuristicLab.Optimization\3.3\HeuristicLab.Optimization-3.3.csproj">
142      <Project>{14AB8D24-25BC-400C-A846-4627AA945192}</Project>
143      <Name>HeuristicLab.Optimization-3.3</Name>
144    </ProjectReference>
145    <ProjectReference Include="..\..\HeuristicLab.Parameters\3.3\HeuristicLab.Parameters-3.3.csproj">
146      <Project>{56F9106A-079F-4C61-92F6-86A84C2D84B7}</Project>
147      <Name>HeuristicLab.Parameters-3.3</Name>
148    </ProjectReference>
149    <ProjectReference Include="..\..\HeuristicLab.Persistence\3.3\HeuristicLab.Persistence-3.3.csproj">
150      <Project>{102BC7D3-0EF9-439C-8F6D-96FF0FDB8E1B}</Project>
151      <Name>HeuristicLab.Persistence-3.3</Name>
152    </ProjectReference>
153    <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
154      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
155      <Name>HeuristicLab.PluginInfrastructure</Name>
156    </ProjectReference>
157  </ItemGroup>
158  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
159  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
160       Other similar extension points exist, see Microsoft.Common.targets.
161  <Target Name="BeforeBuild">
162  </Target>
163  <Target Name="AfterBuild">
164  </Target>
165  -->
166  <PropertyGroup>
167    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
168set ProjectDir=$(ProjectDir)
169set SolutionDir=$(SolutionDir)
170set Outdir=$(Outdir)
171
172call PreBuildEvent.cmd
173SubWCRev "%25ProjectDir%25\" "%25ProjectDir%25\HeuristicLabEncodingsBinaryVectorEncodingPlugin.cs.frame" "%25ProjectDir%25\HeuristicLabEncodingsBinaryVectorEncodingPlugin.cs"</PreBuildEvent>
174  </PropertyGroup>
175</Project>
Note: See TracBrowser for help on using the repository browser.