Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ScatterSearch/HeuristicLab.Algorithms.ScatterSearch/3.3/HeuristicLab.Algorithms.ScatterSearch-3.3.csproj @ 7744

Last change on this file since 7744 was 7744, checked in by jkarder, 12 years ago

#1331:

  • added problem specific improvement operators (KnapsackImprovementOperator, TravelingSalesmanImprovementOperator)
  • added custom interface (IScatterSearchTargetProcessor) for Scatter Search specific operators that use a target parameter
  • added custom operator (OffspringProcessor) to process multiple children that were created by crossovers
  • extracted diversity calculation and added problem/encoding specific operators (BinaryVectorDiversityCalculator, PermutationDiversityCalculator) for it
  • added parameters and adjusted types
  • adjusted event handling
  • minor code improvements
File size: 6.7 KB
RevLine 
[7722]1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="4.0" 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>8.0.30703</ProductVersion>
7    <SchemaVersion>2.0</SchemaVersion>
8    <ProjectGuid>{5FEE5DB4-7FD9-4CBD-BEC2-3FEE17B31A94}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.Algorithms.ScatterSearch</RootNamespace>
12    <AssemblyName>HeuristicLab.Algorithms.ScatterSearch-3.3</AssemblyName>
13    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
15  </PropertyGroup>
16  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17    <DebugSymbols>true</DebugSymbols>
18    <DebugType>full</DebugType>
19    <Optimize>false</Optimize>
20    <OutputPath>..\..\..\..\trunk\sources\bin\</OutputPath>
21    <DefineConstants>DEBUG;TRACE</DefineConstants>
22    <ErrorReport>prompt</ErrorReport>
23    <WarningLevel>4</WarningLevel>
24    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
25  </PropertyGroup>
26  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
27    <DebugType>pdbonly</DebugType>
28    <Optimize>true</Optimize>
29    <OutputPath>bin\Release\</OutputPath>
30    <DefineConstants>TRACE</DefineConstants>
31    <ErrorReport>prompt</ErrorReport>
32    <WarningLevel>4</WarningLevel>
33  </PropertyGroup>
34  <PropertyGroup>
35    <SignAssembly>true</SignAssembly>
36  </PropertyGroup>
37  <PropertyGroup>
38    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
39  </PropertyGroup>
40  <ItemGroup>
41    <Reference Include="HeuristicLab.Algorithms.LocalSearch-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" />
42    <Reference Include="HeuristicLab.Analysis-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" />
43    <Reference Include="HeuristicLab.Collections-3.3">
44      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Collections-3.3.dll</HintPath>
45    </Reference>
46    <Reference Include="HeuristicLab.Common-3.3">
47      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Common-3.3.dll</HintPath>
48    </Reference>
49    <Reference Include="HeuristicLab.Core-3.3">
50      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Core-3.3.dll</HintPath>
51    </Reference>
52    <Reference Include="HeuristicLab.Data-3.3">
53      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Data-3.3.dll</HintPath>
54    </Reference>
55    <Reference Include="HeuristicLab.Encodings.BinaryVectorEncoding-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" />
[7740]56    <Reference Include="HeuristicLab.Encodings.PermutationEncoding-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" />
[7722]57    <Reference Include="HeuristicLab.Operators-3.3">
58      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Operators-3.3.dll</HintPath>
59    </Reference>
60    <Reference Include="HeuristicLab.Optimization-3.3">
61      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Optimization-3.3.dll</HintPath>
62    </Reference>
63    <Reference Include="HeuristicLab.Optimization.Operators-3.3">
64      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Optimization.Operators-3.3.dll</HintPath>
65    </Reference>
66    <Reference Include="HeuristicLab.Parameters-3.3">
67      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Parameters-3.3.dll</HintPath>
68    </Reference>
69    <Reference Include="HeuristicLab.Persistence-3.3">
70      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Persistence-3.3.dll</HintPath>
71    </Reference>
72    <Reference Include="HeuristicLab.PluginInfrastructure-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" />
73    <Reference Include="HeuristicLab.Problems.Knapsack-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" />
[7740]74    <Reference Include="HeuristicLab.Problems.TravelingSalesman-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" />
[7722]75    <Reference Include="HeuristicLab.Random-3.3">
76      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Random-3.3.dll</HintPath>
77    </Reference>
78    <Reference Include="HeuristicLab.Selection-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" />
79    <Reference Include="System" />
80    <Reference Include="System.Core" />
81    <Reference Include="System.Xml.Linq" />
82    <Reference Include="System.Data.DataSetExtensions" />
83    <Reference Include="Microsoft.CSharp" />
84    <Reference Include="System.Data" />
85    <Reference Include="System.Xml" />
86  </ItemGroup>
87  <ItemGroup>
[7744]88    <Compile Include="DiversityCalculator.cs" />
89    <Compile Include="Knapsack\BinaryVectorDiversityCalculator.cs" />
[7740]90    <Compile Include="Knapsack\INBinaryVectorCrossover.cs" />
[7744]91    <Compile Include="IScatterSearchTargetProcessor.cs" />
[7740]92    <Compile Include="Knapsack\NBinaryVectorCrossover.cs" />
93    <Compile Include="Knapsack\NChildCrossover.cs" />
94    <Compile Include="OffspringProcessor.cs" />
[7744]95    <Compile Include="TravelingSalesman\PermutationDiversityCalculator.cs" />
96    <Compile Include="TravelingSalesman\TravelingSalesmanImprovementOperator.cs" />
[7722]97    <None Include="HeuristicLab.snk" />
98    <None Include="Plugin.cs.frame" />
99    <Compile Include="Plugin.cs" />
100    <Compile Include="Properties\AssemblyInfo.cs" />
101    <None Include="Properties\AssemblyInfo.cs.frame" />
102    <Compile Include="ReferenceSetUpdateMethod.cs" />
103    <Compile Include="PopulationRebuildMethod.cs" />
104    <Compile Include="ScatterSearch.cs" />
[7744]105    <Compile Include="Knapsack\KnapsackImprovementOperator.cs" />
[7722]106    <Compile Include="ScatterSearchMainLoop.cs" />
107    <Compile Include="SolutionPoolUpdateMethod.cs" />
108  </ItemGroup>
109  <ItemGroup />
110  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
111  <PropertyGroup>
112    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
113set ProjectDir=$(ProjectDir)
114set SolutionDir=$(SolutionDir)
115set Outdir=$(Outdir)
116
117call PreBuildEvent.cmd
118</PreBuildEvent>
119  </PropertyGroup>
120  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
121       Other similar extension points exist, see Microsoft.Common.targets.
122  <Target Name="BeforeBuild">
123  </Target>
124  <Target Name="AfterBuild">
125  </Target>
126  -->
127</Project>
Note: See TracBrowser for help on using the repository browser.