Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.GP/HeuristicLab.GP.csproj @ 835

Last change on this file since 835 was 835, checked in by gkronber, 15 years ago
  • added another abstract base class for GP crossover operators with maxsize and maxheight constraints
  • changed StandardCrossOver to inherit from SizeConstrictedGPCrossoverBase
  • changed SizeFairCrossOver to inherit from SizeConstrictedGPCrossoverBase
  • generally improved code of SizeFairCrossOver
  • changed LangdonHomologousCrossOver to inherit from SizeFairCrossOver and implemented only the method to finally select branches.

#393 (Refactor GP crossover operators to extract common code into the abstract base class GPCrossoverBase)

File size: 7.6 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>{1F1CF3ED-374C-4288-995B-93F6B872F571}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.GP</RootNamespace>
12    <AssemblyName>HeuristicLab.GP-3.2</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|x86' ">
36    <DebugSymbols>true</DebugSymbols>
37    <OutputPath>bin\x86\Debug\</OutputPath>
38    <DefineConstants>DEBUG;TRACE</DefineConstants>
39    <DebugType>full</DebugType>
40    <PlatformTarget>x86</PlatformTarget>
41    <ErrorReport>prompt</ErrorReport>
42  </PropertyGroup>
43  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
44    <OutputPath>bin\x86\Release\</OutputPath>
45    <DefineConstants>TRACE</DefineConstants>
46    <Optimize>true</Optimize>
47    <DebugType>pdbonly</DebugType>
48    <PlatformTarget>x86</PlatformTarget>
49    <ErrorReport>prompt</ErrorReport>
50  </PropertyGroup>
51  <ItemGroup>
52    <Reference Include="System" />
53    <Reference Include="System.Core">
54      <RequiredTargetFramework>3.5</RequiredTargetFramework>
55    </Reference>
56    <Reference Include="System.Drawing" />
57    <Reference Include="System.Windows.Forms" />
58    <Reference Include="System.Xml.Linq">
59      <RequiredTargetFramework>3.5</RequiredTargetFramework>
60    </Reference>
61    <Reference Include="System.Data.DataSetExtensions">
62      <RequiredTargetFramework>3.5</RequiredTargetFramework>
63    </Reference>
64    <Reference Include="System.Data" />
65    <Reference Include="System.Xml" />
66  </ItemGroup>
67  <ItemGroup>
68    <Compile Include="BakedFunctionTree.cs" />
69    <Compile Include="DefaultFunctionTreeNameGenerator.cs" />
70    <Compile Include="EqualiserController.cs" />
71    <Compile Include="Logging\TreeArityAnalyser.cs" />
72    <Compile Include="OffspringEqualiser.cs" />
73    <Compile Include="Recombination\SizeConstrictedGPCrossoverBase.cs" />
74    <Compile Include="Recombination\GPCrossoverBase.cs" />
75    <Compile Include="Recombination\UniformCrossover.cs" />
76    <Compile Include="UnknownFunctionException.cs" />
77    <Compile Include="IFunctionTreeNameGenerator.cs" />
78    <Compile Include="IFunctionTreeExporter.cs" />
79    <Compile Include="FunctionBase.cs" />
80    <Compile Include="FunctionView.cs">
81      <SubType>UserControl</SubType>
82    </Compile>
83    <Compile Include="FunctionView.Designer.cs">
84      <DependentUpon>FunctionView.cs</DependentUpon>
85    </Compile>
86    <Compile Include="GPOperatorGroup.cs" />
87    <Compile Include="GPOperatorLibrary.cs" />
88    <Compile Include="GPOperatorLibraryEditor.cs">
89      <SubType>UserControl</SubType>
90    </Compile>
91    <Compile Include="GPOperatorLibraryEditor.Designer.cs">
92      <DependentUpon>GPOperatorLibraryEditor.cs</DependentUpon>
93    </Compile>
94    <Compile Include="HeuristicLabGPPlugin.cs" />
95    <Compile Include="IFunction.cs" />
96    <Compile Include="IFunctionTree.cs" />
97    <Compile Include="Manipulation\ChangeNodeTypeManipulation.cs" />
98    <Compile Include="Manipulation\CutOutNodeManipulation.cs" />
99    <Compile Include="Manipulation\DeleteSubTreeManipulation.cs" />
100    <Compile Include="Manipulation\FullTreeShaker.cs" />
101    <Compile Include="Manipulation\OnePointShaker.cs" />
102    <Compile Include="Manipulation\SubstituteSubTreeManipulation.cs" />
103    <Compile Include="ProbabilisticTreeCreator.cs" />
104    <Compile Include="Properties\AssemblyInfo.cs" />
105    <Compile Include="RampedTreeCreator.cs" />
106    <Compile Include="Recombination\LangdonHomologousCrossOver.cs" />
107    <Compile Include="Recombination\OnePointCrossOver.cs" />
108    <Compile Include="Recombination\SizeFairCrossOver.cs" />
109    <Compile Include="Recombination\StandardCrossOver.cs" />
110    <Compile Include="TreeGardener.cs" />
111  </ItemGroup>
112  <ItemGroup>
113    <ProjectReference Include="..\HeuristicLab.Constraints\HeuristicLab.Constraints.csproj">
114      <Project>{FCD62C6F-4793-4593-AE9A-0BDCA256EE99}</Project>
115      <Name>HeuristicLab.Constraints</Name>
116    </ProjectReference>
117    <ProjectReference Include="..\HeuristicLab.Core\HeuristicLab.Core.csproj">
118      <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project>
119      <Name>HeuristicLab.Core</Name>
120    </ProjectReference>
121    <ProjectReference Include="..\HeuristicLab.Data\HeuristicLab.Data.csproj">
122      <Project>{F473D9AF-3F09-4296-9F28-3C65118DAFFA}</Project>
123      <Name>HeuristicLab.Data</Name>
124    </ProjectReference>
125    <ProjectReference Include="..\HeuristicLab.Operators\HeuristicLab.Operators.csproj">
126      <Project>{A9983BA2-B3B2-475E-8E2C-62050B71D1C5}</Project>
127      <Name>HeuristicLab.Operators</Name>
128    </ProjectReference>
129    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
130      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
131      <Name>HeuristicLab.PluginInfrastructure</Name>
132    </ProjectReference>
133    <ProjectReference Include="..\HeuristicLab.Random\HeuristicLab.Random.csproj">
134      <Project>{47019A74-F7F7-482E-83AA-D3F4F777E879}</Project>
135      <Name>HeuristicLab.Random</Name>
136    </ProjectReference>
137    <ProjectReference Include="..\HeuristicLab.Selection\HeuristicLab.Selection.csproj">
138      <Project>{F7CF0571-25CB-43D5-8443-0843A1E2861A}</Project>
139      <Name>HeuristicLab.Selection</Name>
140    </ProjectReference>
141  </ItemGroup>
142  <ItemGroup>
143    <EmbeddedResource Include="FunctionView.resx">
144      <DependentUpon>FunctionView.cs</DependentUpon>
145      <SubType>Designer</SubType>
146    </EmbeddedResource>
147    <EmbeddedResource Include="GPOperatorLibraryEditor.resx">
148      <DependentUpon>GPOperatorLibraryEditor.cs</DependentUpon>
149      <SubType>Designer</SubType>
150    </EmbeddedResource>
151  </ItemGroup>
152  <ItemGroup>
153    <None Include="HeuristicLab.snk" />
154    <None Include="Properties\AssemblyInfo.frame" />
155  </ItemGroup>
156  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
157  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
158       Other similar extension points exist, see Microsoft.Common.targets.
159  <Target Name="BeforeBuild">
160  </Target>
161  <Target Name="AfterBuild">
162  </Target>
163  -->
164  <PropertyGroup>
165    <PreBuildEvent>cmd /c ""$(SolutionDir)PreBuildEvent.cmd" "$(ProjectDir).""</PreBuildEvent>
166  </PropertyGroup>
167</Project>
Note: See TracBrowser for help on using the repository browser.