Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Encodings.PermutationEncoding/3.3/HeuristicLab.Encodings.PermutationEncoding-3.3.csproj @ 4047

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

#1040

  • Added first possibly working NSGA-II
  • Added Maximization parameter to IMultiObjectiveProblem and IMultiObjectiveSelector
File size: 11.3 KB
RevLine 
[2]1<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
2  <PropertyGroup>
3    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
4    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
[574]5    <ProductVersion>9.0.30729</ProductVersion>
[2]6    <SchemaVersion>2.0</SchemaVersion>
[3053]7    <ProjectGuid>{DBECB8B0-B166-4133-BAF1-ED67C3FD7FCA}</ProjectGuid>
[2]8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
[3053]10    <RootNamespace>HeuristicLab.Encodings.PermutationEncoding</RootNamespace>
11    <AssemblyName>HeuristicLab.Encodings.PermutationEncoding-3.3</AssemblyName>
[2]12    <SignAssembly>true</SignAssembly>
13    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
14    <FileUpgradeFlags>
15    </FileUpgradeFlags>
16    <OldToolsVersion>2.0</OldToolsVersion>
17    <UpgradeBackupLocation>
18    </UpgradeBackupLocation>
[1689]19    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
[2]20  </PropertyGroup>
21  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
22    <DebugSymbols>true</DebugSymbols>
23    <DebugType>full</DebugType>
24    <Optimize>false</Optimize>
25    <OutputPath>bin\Debug\</OutputPath>
26    <DefineConstants>DEBUG;TRACE</DefineConstants>
27    <ErrorReport>prompt</ErrorReport>
28    <WarningLevel>4</WarningLevel>
29  </PropertyGroup>
30  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
31    <DebugType>pdbonly</DebugType>
32    <Optimize>true</Optimize>
33    <OutputPath>bin\Release\</OutputPath>
34    <DefineConstants>TRACE</DefineConstants>
35    <ErrorReport>prompt</ErrorReport>
36    <WarningLevel>4</WarningLevel>
37    <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
[3053]38    <DocumentationFile>bin\Release\HeuristicLab.Encodings.PermutationEncoding-3.3.xml</DocumentationFile>
[2]39  </PropertyGroup>
[564]40  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
41    <DebugSymbols>true</DebugSymbols>
42    <OutputPath>bin\x86\Debug\</OutputPath>
43    <DefineConstants>DEBUG;TRACE</DefineConstants>
44    <DebugType>full</DebugType>
45    <PlatformTarget>x86</PlatformTarget>
46    <ErrorReport>prompt</ErrorReport>
47  </PropertyGroup>
48  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
49    <OutputPath>bin\x86\Release\</OutputPath>
50    <DefineConstants>TRACE</DefineConstants>
[3053]51    <DocumentationFile>bin\x86\Release\HeuristicLab.Encodings.PermutationEncoding-3.3.xml</DocumentationFile>
[564]52    <Optimize>true</Optimize>
53    <DebugType>pdbonly</DebugType>
54    <PlatformTarget>x86</PlatformTarget>
55    <ErrorReport>prompt</ErrorReport>
56  </PropertyGroup>
[1474]57  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
58    <DebugSymbols>true</DebugSymbols>
59    <OutputPath>bin\x64\Debug\</OutputPath>
60    <DefineConstants>DEBUG;TRACE</DefineConstants>
61    <DebugType>full</DebugType>
62    <PlatformTarget>x64</PlatformTarget>
63    <ErrorReport>prompt</ErrorReport>
64  </PropertyGroup>
65  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
66    <OutputPath>bin\x64\Release\</OutputPath>
67    <DefineConstants>TRACE</DefineConstants>
[2900]68    <DocumentationFile>bin\x64\Release\HeuristicLab.Permutation-3.2.xml</DocumentationFile>
[1474]69    <Optimize>true</Optimize>
70    <DebugType>pdbonly</DebugType>
71    <PlatformTarget>x64</PlatformTarget>
72    <ErrorReport>prompt</ErrorReport>
73  </PropertyGroup>
[2]74  <ItemGroup>
75    <Reference Include="System" />
[1689]76    <Reference Include="System.Core">
77      <RequiredTargetFramework>3.5</RequiredTargetFramework>
78    </Reference>
[2]79    <Reference Include="System.Data" />
[3436]80    <Reference Include="System.Drawing" />
[2]81    <Reference Include="System.Xml" />
82  </ItemGroup>
83  <ItemGroup>
[2907]84    <Compile Include="Creators\RandomPermutationCreator.cs" />
85    <Compile Include="Crossovers\CosaCrossover.cs" />
86    <Compile Include="Crossovers\CyclicCrossover.cs" />
87    <Compile Include="Crossovers\CyclicCrossover2.cs" />
88    <Compile Include="Crossovers\EdgeRecombinationCrossover.cs" />
89    <Compile Include="Crossovers\MaximalPreservativeCrossover.cs" />
[3420]90    <Compile Include="Crossovers\MultiPermutationCrossover.cs" />
[2907]91    <Compile Include="Crossovers\OrderBasedCrossover.cs" />
92    <Compile Include="Crossovers\OrderCrossover.cs" />
93    <Compile Include="Crossovers\OrderCrossover2.cs" />
94    <Compile Include="Crossovers\PartiallyMatchedCrossover.cs" />
95    <Compile Include="Crossovers\PositionBasedCrossover.cs" />
[3053]96    <Compile Include="HeuristicLabEncodingsPermutationEncodingPlugin.cs" />
[2907]97    <Compile Include="Interfaces\IPermutationCreator.cs" />
98    <Compile Include="Interfaces\IPermutationCrossover.cs" />
99    <Compile Include="Interfaces\IPermutationManipulator.cs" />
[3044]100    <Compile Include="Interfaces\IPermutationMoveOperator.cs" />
[2907]101    <Compile Include="Interfaces\IPermutationOperator.cs" />
[3232]102    <Compile Include="Interfaces\IPermutationTranslocationMoveOperator.cs" />
103    <Compile Include="Interfaces\IPermutationInversionMoveOperator.cs" />
[2907]104    <Compile Include="Manipulators\InsertionManipulator.cs" />
105    <Compile Include="Manipulators\InversionManipulator.cs" />
[3425]106    <Compile Include="Manipulators\MultiPermutationManipulator.cs" />
[2907]107    <Compile Include="Manipulators\ScrambleManipulator.cs" />
108    <Compile Include="Manipulators\Swap2Manipulator.cs" />
109    <Compile Include="Manipulators\Swap3Manipulator.cs" />
110    <Compile Include="Manipulators\TranslocationInversionManipulator.cs" />
111    <Compile Include="Manipulators\TranslocationManipulator.cs" />
[3340]112    <Compile Include="Moves\PermutationMoveAttribute.cs" />
[3074]113    <Compile Include="Moves\ThreeIndexMove.cs" />
[4045]114    <Compile Include="Moves\ThreeOpt\StochasticSingleInsertionMoveGenerator.cs" />
[3340]115    <Compile Include="Moves\ThreeOpt\TranslocationMoveAbsoluteAttribute.cs" />
[3232]116    <Compile Include="Moves\ThreeOpt\ExhaustiveInsertionMoveGenerator.cs">
[3221]117      <SubType>Code</SubType>
118    </Compile>
[3232]119    <Compile Include="Moves\ThreeOpt\StochasticTranslocationMultiMoveGenerator.cs" />
120    <Compile Include="Moves\ThreeOpt\StochasticTranslocationSingleMoveGenerator.cs" />
121    <Compile Include="Moves\ThreeOpt\TranslocationMove.cs" />
122    <Compile Include="Moves\ThreeOpt\TranslocationMoveGenerator.cs" />
[3340]123    <Compile Include="Moves\ThreeOpt\TranslocationMoveHardTabuCriterion.cs" />
[3232]124    <Compile Include="Moves\ThreeOpt\TranslocationMoveMaker.cs" />
[3340]125    <Compile Include="Moves\ThreeOpt\TranslocationMoveRelativeAttribute.cs" />
126    <Compile Include="Moves\ThreeOpt\TranslocationMoveSoftTabuCriterion.cs" />
[3232]127    <Compile Include="Moves\ThreeOpt\TranslocationMoveTabuMaker.cs" />
[2997]128    <Compile Include="Moves\TwoIndexMove.cs">
129      <SubType>Code</SubType>
130    </Compile>
[3233]131    <Compile Include="Moves\TwoOpt\InversionMoveAbsoluteAttribute.cs" />
[3232]132    <Compile Include="Moves\TwoOpt\ExhaustiveInversionMoveGenerator.cs" />
133    <Compile Include="Moves\TwoOpt\InversionMove.cs" />
[3340]134    <Compile Include="Moves\TwoOpt\InversionMoveHardTabuCriterion.cs" />
[3233]135    <Compile Include="Moves\TwoOpt\InversionMoveRelativeAttribute.cs" />
[3232]136    <Compile Include="Moves\TwoOpt\InversionMoveGenerator.cs" />
137    <Compile Include="Moves\TwoOpt\InversionMoveMaker.cs" />
[3340]138    <Compile Include="Moves\TwoOpt\InversionMoveSoftTabuCriterion.cs" />
[3232]139    <Compile Include="Moves\TwoOpt\InversionMoveTabuMaker.cs" />
140    <Compile Include="Moves\TwoOpt\StochasticInversionMultiMoveGenerator.cs" />
141    <Compile Include="Moves\TwoOpt\StochasticInversionSingleMoveGenerator.cs" />
[2794]142    <Compile Include="PermutationManipulator.cs" />
143    <Compile Include="PermutationCrossover.cs" />
144    <Compile Include="Permutation.cs" />
[3231]145    <Compile Include="PermutationType.cs" />
146    <Compile Include="PermutationTypes.cs" />
[2]147    <Compile Include="Properties\AssemblyInfo.cs" />
148  </ItemGroup>
149  <ItemGroup>
150    <None Include="HeuristicLab.snk" />
[3053]151    <None Include="HeuristicLabEncodingsPermutationEncodingPlugin.cs.frame" />
[30]152    <None Include="Properties\AssemblyInfo.frame" />
[2]153  </ItemGroup>
154  <ItemGroup>
[2794]155    <ProjectReference Include="..\..\HeuristicLab.Collections\3.3\HeuristicLab.Collections-3.3.csproj">
156      <Project>{958B43BC-CC5C-4FA2-8628-2B3B01D890B6}</Project>
157      <Name>HeuristicLab.Collections-3.3</Name>
158    </ProjectReference>
[3702]159    <ProjectReference Include="..\..\HeuristicLab.Common.Resources\3.3\HeuristicLab.Common.Resources-3.3.csproj">
[3436]160      <Project>{0E27A536-1C4A-4624-A65E-DC4F4F23E3E1}</Project>
[3702]161      <Name>HeuristicLab.Common.Resources-3.3</Name>
[3436]162    </ProjectReference>
[3384]163    <ProjectReference Include="..\..\HeuristicLab.Common\3.3\HeuristicLab.Common-3.3.csproj">
164      <Project>{A9AD58B9-3EF9-4CC1-97E5-8D909039FF5C}</Project>
165      <Name>HeuristicLab.Common-3.3</Name>
[2794]166    </ProjectReference>
[1691]167    <ProjectReference Include="..\..\HeuristicLab.Core\3.3\HeuristicLab.Core-3.3.csproj">
168      <Project>{C36BD924-A541-4A00-AFA8-41701378DDC5}</Project>
169      <Name>HeuristicLab.Core-3.3</Name>
[2]170    </ProjectReference>
[1691]171    <ProjectReference Include="..\..\HeuristicLab.Data\3.3\HeuristicLab.Data-3.3.csproj">
172      <Project>{BBAB9DF5-5EF3-4BA8-ADE9-B36E82114937}</Project>
173      <Name>HeuristicLab.Data-3.3</Name>
[2]174    </ProjectReference>
[2794]175    <ProjectReference Include="..\..\HeuristicLab.Operators\3.3\HeuristicLab.Operators-3.3.csproj">
176      <Project>{23DA7FF4-D5B8-41B6-AA96-F0561D24F3EE}</Project>
177      <Name>HeuristicLab.Operators-3.3</Name>
[2]178    </ProjectReference>
[3418]179    <ProjectReference Include="..\..\HeuristicLab.Optimization.Operators\3.3\HeuristicLab.Optimization.Operators-3.3.csproj">
180      <Project>{25087811-F74C-4128-BC86-8324271DA13E}</Project>
181      <Name>HeuristicLab.Optimization.Operators-3.3</Name>
182    </ProjectReference>
[2852]183    <ProjectReference Include="..\..\HeuristicLab.Optimization\3.3\HeuristicLab.Optimization-3.3.csproj">
184      <Project>{14AB8D24-25BC-400C-A846-4627AA945192}</Project>
185      <Name>HeuristicLab.Optimization-3.3</Name>
186    </ProjectReference>
[2794]187    <ProjectReference Include="..\..\HeuristicLab.Parameters\3.3\HeuristicLab.Parameters-3.3.csproj">
188      <Project>{56F9106A-079F-4C61-92F6-86A84C2D84B7}</Project>
189      <Name>HeuristicLab.Parameters-3.3</Name>
190    </ProjectReference>
191    <ProjectReference Include="..\..\HeuristicLab.Persistence\3.3\HeuristicLab.Persistence-3.3.csproj">
192      <Project>{102BC7D3-0EF9-439C-8F6D-96FF0FDB8E1B}</Project>
193      <Name>HeuristicLab.Persistence-3.3</Name>
194    </ProjectReference>
[3832]195    <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\3.3\HeuristicLab.PluginInfrastructure-3.3.csproj">
[2]196      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
[3832]197      <Name>HeuristicLab.PluginInfrastructure-3.3</Name>
[2]198    </ProjectReference>
199  </ItemGroup>
200  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
201  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
202       Other similar extension points exist, see Microsoft.Common.targets.
203  <Target Name="BeforeBuild">
204  </Target>
205  <Target Name="AfterBuild">
206  </Target>
207  -->
[30]208  <PropertyGroup>
[852]209    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
210set ProjectDir=$(ProjectDir)
211set SolutionDir=$(SolutionDir)
212set Outdir=$(Outdir)
213
[2790]214call PreBuildEvent.cmd
[3053]215SubWCRev "%25ProjectDir%25\" "%25ProjectDir%25\HeuristicLabEncodingsPermutationEncodingPlugin.cs.frame" "%25ProjectDir%25\HeuristicLabEncodingsPermutationEncodingPlugin.cs"</PreBuildEvent>
[30]216  </PropertyGroup>
[2]217</Project>
Note: See TracBrowser for help on using the repository browser.