Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.RealVector/HeuristicLab.RealVector.csproj @ 111

Last change on this file since 111 was 111, checked in by abeham, 16 years ago

Renamed Recombination operators to MultCrossover operators and added the necessary base classes (ticket #89)
Created a static Apply method that encapsulates the functionality of the operators (ticket #88)

File size: 5.2 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.21022</ProductVersion>
7    <SchemaVersion>2.0</SchemaVersion>
8    <ProjectGuid>{2D4E4565-3ED9-4BEB-AE75-39D871843D24}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.RealVector</RootNamespace>
12    <AssemblyName>HeuristicLab.RealVector</AssemblyName>
13    <TargetFrameworkVersion>v2.0</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    <DocumentationFile>bin\Release\HeuristicLab.RealVector.XML</DocumentationFile>
35  </PropertyGroup>
36  <ItemGroup>
37    <Reference Include="System" />
38    <Reference Include="System.Data" />
39    <Reference Include="System.Xml" />
40  </ItemGroup>
41  <ItemGroup>
42    <Compile Include="BlendAlphaBetaCrossover.cs" />
43    <Compile Include="BlendAlphaCrossover.cs" />
44    <Compile Include="BreederGeneticAlgorithmManipulator.cs" />
45    <Compile Include="ContinuousCrossover.cs" />
46    <Compile Include="CompleteContinuousCrossover.cs" />
47    <Compile Include="BoundsChecker.cs" />
48    <Compile Include="DiscreteCrossover.cs" />
49    <Compile Include="DiscreteMultiCrossover.cs" />
50    <Compile Include="HeuristicCrossover.cs" />
51    <Compile Include="IntermediateMultiCrossover.cs" />
52    <Compile Include="MichalewiczNonUniformAllPositionsManipulator.cs" />
53    <Compile Include="MichalewiczNonUniformOnePositionManipulator.cs" />
54    <Compile Include="RandomConvexCrossover.cs" />
55    <Compile Include="LocalCrossover.cs" />
56    <Compile Include="RealVectorMultiCrossoverBase.cs" />
57    <Compile Include="RealVectorSelfAdaptiveMultiCrossoverBase.cs" />
58    <Compile Include="SelfAdaptiveDiscreteMultiCrossover.cs" />
59    <Compile Include="SelfAdaptiveIntermediateMultiCrossover.cs" />
60    <Compile Include="SelfAdaptiveNormalAllPositionsManipulator.cs" />
61    <Compile Include="UniformAllPositionsManipulator.cs" />
62    <Compile Include="UniformRandomRealVectorGenerator.cs" />
63    <Compile Include="UniformOnePositionManipulator.cs" />
64    <Compile Include="RealVectorCrossoverBase.cs" />
65    <Compile Include="RealVectorManipulatorBase.cs" />
66    <Compile Include="HeuristicLabRealVectorPlugin.cs" />
67    <Compile Include="Properties\AssemblyInfo.cs" />
68    <Compile Include="SinglePointCrossover.cs" />
69    <Compile Include="VariableStrengthNormalAllPositionsManipulator.cs" />
70  </ItemGroup>
71  <ItemGroup>
72    <None Include="HeuristicLab.snk" />
73    <None Include="Properties\AssemblyInfo.frame" />
74  </ItemGroup>
75  <ItemGroup>
76    <ProjectReference Include="..\HeuristicLab.Core\HeuristicLab.Core.csproj">
77      <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project>
78      <Name>HeuristicLab.Core</Name>
79    </ProjectReference>
80    <ProjectReference Include="..\HeuristicLab.Data\HeuristicLab.Data.csproj">
81      <Project>{F473D9AF-3F09-4296-9F28-3C65118DAFFA}</Project>
82      <Name>HeuristicLab.Data</Name>
83    </ProjectReference>
84    <ProjectReference Include="..\HeuristicLab.Evolutionary\HeuristicLab.Evolutionary.csproj">
85      <Project>{F5614C53-153C-4A37-A608-121E1C087F07}</Project>
86      <Name>HeuristicLab.Evolutionary</Name>
87    </ProjectReference>
88    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
89      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
90      <Name>HeuristicLab.PluginInfrastructure</Name>
91    </ProjectReference>
92    <ProjectReference Include="..\HeuristicLab.Random\HeuristicLab.Random.csproj">
93      <Project>{47019A74-F7F7-482E-83AA-D3F4F777E879}</Project>
94      <Name>HeuristicLab.Random</Name>
95    </ProjectReference>
96  </ItemGroup>
97  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
98  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
99       Other similar extension points exist, see Microsoft.Common.targets.
100  <Target Name="BeforeBuild">
101  </Target>
102  <Target Name="AfterBuild">
103  </Target>
104  -->
105  <PropertyGroup>
106    <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
107  </PropertyGroup>
108</Project>
Note: See TracBrowser for help on using the repository browser.