Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.GP.StructureIdentification/HeuristicLab.GP.StructureIdentification.csproj @ 769

Last change on this file since 769 was 769, checked in by gkronber, 15 years ago

implemented crude version of an MSE evaluator that also calculates confidence bounds and stops evaluation early if it seems that the MSE is significantly better or worse than the quality-limit (based on parent quality). #366

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>{74223A32-C726-4978-BE78-37113A18373C}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.GP.StructureIdentification</RootNamespace>
12    <AssemblyName>HeuristicLab.GP.StructureIdentification-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="Addition.cs" />
69    <Compile Include="And.cs" />
70    <Compile Include="Average.cs" />
71    <Compile Include="BakedTreeEvaluator.cs" />
72    <Compile Include="Constant.cs" />
73    <Compile Include="Cosinus.cs" />
74    <Compile Include="Differential.cs" />
75    <Compile Include="Division.cs" />
76    <Compile Include="Equal.cs" />
77    <Compile Include="Evaluators\CoefficientOfDeterminationEvaluator.cs" />
78    <Compile Include="Evaluators\UncertainMeanSquaredErrorEvaluator.cs" />
79    <Compile Include="Evaluators\EarlyStoppingMeanSquaredErrorEvaluator.cs" />
80    <Compile Include="Evaluators\GPEvaluatorBase.cs" />
81    <Compile Include="Evaluators\MeanAbsolutePercentageErrorEvaluator.cs" />
82    <Compile Include="Evaluators\MeanSquaredErrorEvaluator.cs" />
83    <Compile Include="Evaluators\SimpleEvaluator.cs" />
84    <Compile Include="Evaluators\VarianceAccountedForEvaluator.cs" />
85    <Compile Include="Exponential.cs" />
86    <Compile Include="GreaterThan.cs" />
87    <Compile Include="HeuristicLabGPStructureIdentificationPlugin.cs" />
88    <Compile Include="IfThenElse.cs" />
89    <Compile Include="LessThan.cs" />
90    <Compile Include="Logarithm.cs" />
91    <Compile Include="ModelAnalyzerExporter.cs" />
92    <Compile Include="Multiplication.cs" />
93    <Compile Include="Not.cs" />
94    <Compile Include="Or.cs" />
95    <Compile Include="Power.cs" />
96    <Compile Include="Properties\AssemblyInfo.cs" />
97    <Compile Include="Signum.cs" />
98    <Compile Include="Sinus.cs" />
99    <Compile Include="Sqrt.cs" />
100    <Compile Include="StructIdProblemInjector.cs" />
101    <Compile Include="StructIdProblemInjectorView.cs">
102      <SubType>UserControl</SubType>
103    </Compile>
104    <Compile Include="StructIdProblemInjectorView.Designer.cs">
105      <DependentUpon>StructIdProblemInjectorView.cs</DependentUpon>
106    </Compile>
107    <Compile Include="Subtraction.cs" />
108    <Compile Include="SymbolicExpressionExporter.cs" />
109    <Compile Include="SymbolTable.cs" />
110    <Compile Include="Tangens.cs" />
111    <Compile Include="Variable.cs" />
112    <Compile Include="Xor.cs" />
113  </ItemGroup>
114  <ItemGroup>
115    <ProjectReference Include="..\HeuristicLab.Constraints\HeuristicLab.Constraints.csproj">
116      <Project>{FCD62C6F-4793-4593-AE9A-0BDCA256EE99}</Project>
117      <Name>HeuristicLab.Constraints</Name>
118    </ProjectReference>
119    <ProjectReference Include="..\HeuristicLab.Core\HeuristicLab.Core.csproj">
120      <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project>
121      <Name>HeuristicLab.Core</Name>
122    </ProjectReference>
123    <ProjectReference Include="..\HeuristicLab.DataAnalysis\HeuristicLab.DataAnalysis.csproj">
124      <Project>{7DD3A97A-56E9-462F-90E2-A351FE7AF5C2}</Project>
125      <Name>HeuristicLab.DataAnalysis</Name>
126    </ProjectReference>
127    <ProjectReference Include="..\HeuristicLab.Data\HeuristicLab.Data.csproj">
128      <Project>{F473D9AF-3F09-4296-9F28-3C65118DAFFA}</Project>
129      <Name>HeuristicLab.Data</Name>
130    </ProjectReference>
131    <ProjectReference Include="..\HeuristicLab.GP\HeuristicLab.GP.csproj">
132      <Project>{1F1CF3ED-374C-4288-995B-93F6B872F571}</Project>
133      <Name>HeuristicLab.GP</Name>
134    </ProjectReference>
135    <ProjectReference Include="..\HeuristicLab.Operators\HeuristicLab.Operators.csproj">
136      <Project>{A9983BA2-B3B2-475E-8E2C-62050B71D1C5}</Project>
137      <Name>HeuristicLab.Operators</Name>
138    </ProjectReference>
139    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
140      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
141      <Name>HeuristicLab.PluginInfrastructure</Name>
142    </ProjectReference>
143    <ProjectReference Include="..\HeuristicLab.Random\HeuristicLab.Random.csproj">
144      <Project>{47019A74-F7F7-482E-83AA-D3F4F777E879}</Project>
145      <Name>HeuristicLab.Random</Name>
146    </ProjectReference>
147  </ItemGroup>
148  <ItemGroup>
149    <EmbeddedResource Include="StructIdProblemInjectorView.resx">
150      <DependentUpon>StructIdProblemInjectorView.cs</DependentUpon>
151      <SubType>Designer</SubType>
152    </EmbeddedResource>
153  </ItemGroup>
154  <ItemGroup>
155    <None Include="HeuristicLab.snk" />
156    <None Include="Properties\AssemblyInfo.frame" />
157  </ItemGroup>
158  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
159  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
160       Other similar extension points exist, see Microsoft.Common.targets.
161  <Target Name="BeforeBuild">
162  </Target>
163  <Target Name="AfterBuild">
164  </Target>
165  -->
166  <PropertyGroup>
167    <PreBuildEvent>cmd /c ""$(SolutionDir)PreBuildEvent.cmd" "$(ProjectDir).""</PreBuildEvent>
168  </PropertyGroup>
169</Project>
Note: See TracBrowser for help on using the repository browser.