Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Permutation/3.3/Tests/HeuristicLab.Permutation-3.3.Tests.csproj @ 2871

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

readded references to operator descriptions and updated documentation
added OrderCrossover2 to implement the behavior described in our book (this was the behavior of the former OrderCrossover)
added CyclicCrossover2 to implement the behavior described in our book (this was the behavior of the former CyclicCrossover)
implemented unit tests for the new variants
#889

File size: 6.8 KB
Line 
1<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2  <PropertyGroup>
3    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
4    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
5    <ProductVersion>9.0.30729</ProductVersion>
6    <SchemaVersion>2.0</SchemaVersion>
7    <ProjectGuid>{4D59BEC9-A69E-4686-B8C9-0E6C073B093E}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>HeuristicLab.Permutation.Tests</RootNamespace>
11    <AssemblyName>HeuristicLab.Permutation-3.3.Tests</AssemblyName>
12    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
13    <FileAlignment>512</FileAlignment>
14    <ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
15  </PropertyGroup>
16  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17    <DebugSymbols>true</DebugSymbols>
18    <DebugType>full</DebugType>
19    <Optimize>false</Optimize>
20    <OutputPath>bin\Debug\</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\Release\</OutputPath>
29    <DefineConstants>TRACE</DefineConstants>
30    <ErrorReport>prompt</ErrorReport>
31    <WarningLevel>4</WarningLevel>
32  </PropertyGroup>
33  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
34    <DebugSymbols>true</DebugSymbols>
35    <OutputPath>bin\x86\Debug\</OutputPath>
36    <DefineConstants>DEBUG;TRACE</DefineConstants>
37    <DebugType>full</DebugType>
38    <PlatformTarget>x86</PlatformTarget>
39    <ErrorReport>prompt</ErrorReport>
40  </PropertyGroup>
41  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
42    <OutputPath>bin\x86\Release\</OutputPath>
43    <DefineConstants>TRACE</DefineConstants>
44    <Optimize>true</Optimize>
45    <DebugType>pdbonly</DebugType>
46    <PlatformTarget>x86</PlatformTarget>
47    <ErrorReport>prompt</ErrorReport>
48  </PropertyGroup>
49  <ItemGroup>
50    <Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
51    <Reference Include="System" />
52    <Reference Include="System.Core">
53      <RequiredTargetFramework>3.5</RequiredTargetFramework>
54    </Reference>
55    <Reference Include="System.Data" />
56    <Reference Include="System.Drawing" />
57    <Reference Include="System.Xml" />
58  </ItemGroup>
59  <ItemGroup>
60    <Compile Include="AbsolutePositionTopologicalCrossoverTest.cs" />
61    <Compile Include="Auxiliary.cs" />
62    <Compile Include="CosaCrossoverTest.cs" />
63    <Compile Include="CyclicCrossover2Test.cs" />
64    <Compile Include="CyclicCrossoverTest.cs" />
65    <Compile Include="EdgeRecombinationCrossoverTest.cs" />
66    <Compile Include="InsertionManipulatorTest.cs" />
67    <Compile Include="InversionManipulatorTest.cs" />
68    <Compile Include="MaximalPreservativeCrossoverTest.cs" />
69    <Compile Include="OrderBasedCrossoverTest.cs" />
70    <Compile Include="OrderCrossover2Test.cs" />
71    <Compile Include="OrderCrossoverTest.cs" />
72    <Compile Include="PartiallyMatchedCrossoverTest.cs" />
73    <Compile Include="PositionBasedCrossoverTest.cs" />
74    <Compile Include="Properties\AssemblyInfo.cs" />
75    <Compile Include="Random.cs" />
76    <Compile Include="ScrambleManipulatorTest.cs" />
77    <Compile Include="Swap2ManipulatorTest.cs" />
78    <Compile Include="Swap3ManipulatorTest.cs" />
79    <Compile Include="TranslocationInversionManipulatorTest.cs" />
80    <Compile Include="TranslocationManipulatorTest.cs" />
81  </ItemGroup>
82  <ItemGroup>
83    <Content Include="AuthoringTests.txt" />
84  </ItemGroup>
85  <ItemGroup>
86    <ProjectReference Include="..\..\..\HeuristicLab.Collections\3.3\HeuristicLab.Collections-3.3.csproj">
87      <Project>{958B43BC-CC5C-4FA2-8628-2B3B01D890B6}</Project>
88      <Name>HeuristicLab.Collections-3.3</Name>
89    </ProjectReference>
90    <ProjectReference Include="..\..\..\HeuristicLab.Common\3.2\HeuristicLab.Common-3.2.csproj">
91      <Project>{1FC004FC-59AF-4249-B1B6-FF25873A20E4}</Project>
92      <Name>HeuristicLab.Common-3.2</Name>
93    </ProjectReference>
94    <ProjectReference Include="..\..\..\HeuristicLab.Core\3.3\HeuristicLab.Core-3.3.csproj">
95      <Project>{C36BD924-A541-4A00-AFA8-41701378DDC5}</Project>
96      <Name>HeuristicLab.Core-3.3</Name>
97    </ProjectReference>
98    <ProjectReference Include="..\..\..\HeuristicLab.Data\3.3\HeuristicLab.Data-3.3.csproj">
99      <Project>{BBAB9DF5-5EF3-4BA8-ADE9-B36E82114937}</Project>
100      <Name>HeuristicLab.Data-3.3</Name>
101    </ProjectReference>
102    <ProjectReference Include="..\..\..\HeuristicLab.Operators\3.3\HeuristicLab.Operators-3.3.csproj">
103      <Project>{23DA7FF4-D5B8-41B6-AA96-F0561D24F3EE}</Project>
104      <Name>HeuristicLab.Operators-3.3</Name>
105    </ProjectReference>
106    <ProjectReference Include="..\..\..\HeuristicLab.Optimization\3.3\HeuristicLab.Optimization-3.3.csproj">
107      <Project>{14AB8D24-25BC-400C-A846-4627AA945192}</Project>
108      <Name>HeuristicLab.Optimization-3.3</Name>
109    </ProjectReference>
110    <ProjectReference Include="..\..\..\HeuristicLab.Parameters\3.3\HeuristicLab.Parameters-3.3.csproj">
111      <Project>{56F9106A-079F-4C61-92F6-86A84C2D84B7}</Project>
112      <Name>HeuristicLab.Parameters-3.3</Name>
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    </ProjectReference>
118    <ProjectReference Include="..\..\..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
119      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
120      <Name>HeuristicLab.PluginInfrastructure</Name>
121    </ProjectReference>
122    <ProjectReference Include="..\HeuristicLab.Permutation-3.3.csproj">
123      <Project>{00282156-589D-424F-9CE4-A8038636C926}</Project>
124      <Name>HeuristicLab.Permutation-3.3</Name>
125    </ProjectReference>
126  </ItemGroup>
127  <ItemGroup>
128    <Shadow Include="Test References\HeuristicLab.Permutation-3.3.accessor" />
129  </ItemGroup>
130  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
131  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
132       Other similar extension points exist, see Microsoft.Common.targets.
133  <Target Name="BeforeBuild">
134  </Target>
135  <Target Name="AfterBuild">
136  </Target>
137  -->
138</Project>
Note: See TracBrowser for help on using the repository browser.