Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HL-3.2-MonoMigration/HeuristicLab.StructureIdentification/HeuristicLab.StructureIdentification.csproj @ 4361

Last change on this file since 4361 was 619, checked in by gkronber, 16 years ago

added a homologous crossover operator for GP as described by Langdon. (ticket #108)

File size: 8.6 KB
Line 
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>
5    <ProductVersion>9.0.21022</ProductVersion>
6    <SchemaVersion>2.0</SchemaVersion>
7    <ProjectGuid>{5948F299-0A5E-43B9-8F17-2D15298EEC34}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>HeuristicLab.StructureIdentification</RootNamespace>
11    <AssemblyName>HeuristicLab.StructureIdentification-3.2</AssemblyName>
12    <SignAssembly>true</SignAssembly>
13    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
14    <FileUpgradeFlags>
15    </FileUpgradeFlags>
16    <OldToolsVersion>2.0</OldToolsVersion>
17    <UpgradeBackupLocation>
18    </UpgradeBackupLocation>
19    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
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    <DocumentationFile>bin\Release\HeuristicLab.StructureIdentification-3.2.XML</DocumentationFile>
38  </PropertyGroup>
39  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
40    <DebugSymbols>true</DebugSymbols>
41    <OutputPath>bin\x86\Debug\</OutputPath>
42    <DefineConstants>DEBUG;TRACE</DefineConstants>
43    <DebugType>full</DebugType>
44    <PlatformTarget>x86</PlatformTarget>
45    <ErrorReport>prompt</ErrorReport>
46  </PropertyGroup>
47  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
48    <OutputPath>bin\x86\Release\</OutputPath>
49    <DefineConstants>TRACE</DefineConstants>
50    <DocumentationFile>bin\Release\HeuristicLab.StructureIdentification-3.2.XML</DocumentationFile>
51    <Optimize>true</Optimize>
52    <DebugType>pdbonly</DebugType>
53    <PlatformTarget>x86</PlatformTarget>
54    <ErrorReport>prompt</ErrorReport>
55  </PropertyGroup>
56  <ItemGroup>
57    <Reference Include="System" />
58    <Reference Include="System.Core">
59      <RequiredTargetFramework>3.5</RequiredTargetFramework>
60    </Reference>
61    <Reference Include="System.Data" />
62    <Reference Include="System.Drawing" />
63    <Reference Include="System.Windows.Forms" />
64    <Reference Include="System.XML" />
65  </ItemGroup>
66  <ItemGroup>
67    <Compile Include="CrossValidation.cs" />
68    <Compile Include="Evaluation\AveragePercentageChangeEvaluator.cs" />
69    <Compile Include="Evaluation\ProfitEvaluator.cs" />
70    <Compile Include="MulticlassOneVsOneAnalyzer.cs" />
71    <Compile Include="MulticlassModeller.cs" />
72    <Compile Include="Evaluation\ClassificationMeanSquaredErrorEvaluator.cs" />
73    <Compile Include="Evaluation\ClassificationMatrixEvaluator.cs" />
74    <Compile Include="FunctionLibraryInjector.cs" />
75    <Compile Include="Evaluation\AccuracyEvaluator.cs" />
76    <Compile Include="Evaluation\MeanAbsolutePercentageErrorEvaluator.cs" />
77    <Compile Include="Evaluation\TheilInequalityCoefficientEvaluator.cs" />
78    <Compile Include="Evaluation\SimpleEvaluator.cs" />
79    <Compile Include="ProbabilisticTreeCreator.cs" />
80    <Compile Include="Evaluation\CoefficientOfDeterminationEvaluator.cs" />
81    <Compile Include="Evaluation\MCCEvaluator.cs" />
82    <Compile Include="Evaluation\GPEvaluatorBase.cs" />
83    <Compile Include="Evaluation\EarlyStoppingMeanSquaredErrorEvaluator.cs" />
84    <Compile Include="Evaluation\MeanSquaredErrorEvaluator.cs" />
85    <Compile Include="Evaluation\VarianceAccountedForEvaluator.cs" />
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="Manipulation\ChangeNodeTypeManipulation.cs" />
95    <Compile Include="Manipulation\CutOutNodeManipulation.cs" />
96    <Compile Include="Manipulation\DeleteSubTreeManipulation.cs" />
97    <Compile Include="Manipulation\FullTreeShaker.cs" />
98    <Compile Include="Manipulation\OnePointShaker.cs" />
99    <Compile Include="Manipulation\SubstituteSubTreeManipulation.cs" />
100    <Compile Include="HeuristicLabStructureIdentificationPlugin.cs" />
101    <Compile Include="Properties\AssemblyInfo.cs" />
102    <Compile Include="RampedTreeCreator.cs" />
103    <Compile Include="Recombination\LangdonHomologousCrossOver.cs" />
104    <Compile Include="Recombination\OnePointCrossOver.cs" />
105    <Compile Include="Recombination\StandardCrossOver.cs" />
106    <Compile Include="Recombination\SizeFairCrossOver.cs" />
107    <Compile Include="TreeGardener.cs" />
108    <Compile Include="StructIdProblemInjector.cs" />
109    <Compile Include="StructIdProblemInjectorView.cs">
110      <SubType>UserControl</SubType>
111    </Compile>
112    <Compile Include="StructIdProblemInjectorView.Designer.cs">
113      <DependentUpon>StructIdProblemInjectorView.cs</DependentUpon>
114    </Compile>
115  </ItemGroup>
116  <ItemGroup>
117    <ProjectReference Include="..\HeuristicLab.Constraints\HeuristicLab.Constraints.csproj">
118      <Project>{FCD62C6F-4793-4593-AE9A-0BDCA256EE99}</Project>
119      <Name>HeuristicLab.Constraints</Name>
120    </ProjectReference>
121    <ProjectReference Include="..\HeuristicLab.Core\HeuristicLab.Core.csproj">
122      <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project>
123      <Name>HeuristicLab.Core</Name>
124    </ProjectReference>
125    <ProjectReference Include="..\HeuristicLab.DataAnalysis\HeuristicLab.DataAnalysis.csproj">
126      <Project>{7DD3A97A-56E9-462F-90E2-A351FE7AF5C2}</Project>
127      <Name>HeuristicLab.DataAnalysis</Name>
128    </ProjectReference>
129    <ProjectReference Include="..\HeuristicLab.Data\HeuristicLab.Data.csproj">
130      <Project>{F473D9AF-3F09-4296-9F28-3C65118DAFFA}</Project>
131      <Name>HeuristicLab.Data</Name>
132    </ProjectReference>
133    <ProjectReference Include="..\HeuristicLab.Functions\HeuristicLab.Functions.csproj">
134      <Project>{B95CA6E2-34BC-4430-994D-BD6E99375319}</Project>
135      <Name>HeuristicLab.Functions</Name>
136    </ProjectReference>
137    <ProjectReference Include="..\HeuristicLab.Operators\HeuristicLab.Operators.csproj">
138      <Project>{A9983BA2-B3B2-475E-8E2C-62050B71D1C5}</Project>
139      <Name>HeuristicLab.Operators</Name>
140    </ProjectReference>
141    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
142      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
143      <Name>HeuristicLab.PluginInfrastructure</Name>
144    </ProjectReference>
145    <ProjectReference Include="..\HeuristicLab.Random\HeuristicLab.Random.csproj">
146      <Project>{47019A74-F7F7-482E-83AA-D3F4F777E879}</Project>
147      <Name>HeuristicLab.Random</Name>
148    </ProjectReference>
149    <ProjectReference Include="..\HeuristicLab.Selection\HeuristicLab.Selection.csproj">
150      <Project>{F7CF0571-25CB-43D5-8443-0843A1E2861A}</Project>
151      <Name>HeuristicLab.Selection</Name>
152    </ProjectReference>
153  </ItemGroup>
154  <ItemGroup>
155    <None Include="HeuristicLab.snk" />
156    <None Include="Properties\AssemblyInfo.frame" />
157  </ItemGroup>
158  <ItemGroup>
159    <EmbeddedResource Include="GPOperatorLibraryEditor.resx">
160      <DependentUpon>GPOperatorLibraryEditor.cs</DependentUpon>
161      <SubType>Designer</SubType>
162    </EmbeddedResource>
163    <EmbeddedResource Include="StructIdProblemInjectorView.resx">
164      <DependentUpon>StructIdProblemInjectorView.cs</DependentUpon>
165      <SubType>Designer</SubType>
166    </EmbeddedResource>
167  </ItemGroup>
168  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
169  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
170       Other similar extension points exist, see Microsoft.Common.targets.
171  <Target Name="BeforeBuild">
172  </Target>
173  <Target Name="AfterBuild">
174  </Target>
175  -->
176  <PropertyGroup>
177    <PreBuildEvent>cmd /c ""$(SolutionDir)PreBuildEvent.cmd" "$(ProjectDir).""</PreBuildEvent>
178  </PropertyGroup>
179</Project>
Note: See TracBrowser for help on using the repository browser.