Free cookie consent management tool by TermsFeed Policy Generator

source: branches/CEDMA-Refactoring-Ticket419/HeuristicLab.GP.StructureIdentification/HeuristicLab.GP.StructureIdentification.csproj @ 1246

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

Implemented first version of evaluation operator for the mean percentage error relative to the range of the original values of the target variable #505.

File size: 10.0 KB
RevLine 
[644]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>
[769]6    <ProductVersion>9.0.30729</ProductVersion>
[644]7    <SchemaVersion>2.0</SchemaVersion>
[645]8    <ProjectGuid>{74223A32-C726-4978-BE78-37113A18373C}</ProjectGuid>
[644]9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.GP.StructureIdentification</RootNamespace>
[651]12    <AssemblyName>HeuristicLab.GP.StructureIdentification-3.2</AssemblyName>
[644]13    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
[645]15    <SignAssembly>true</SignAssembly>
16    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
[644]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>
[651]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>
[644]51  <ItemGroup>
52    <Reference Include="System" />
53    <Reference Include="System.Core">
54      <RequiredTargetFramework>3.5</RequiredTargetFramework>
55    </Reference>
[645]56    <Reference Include="System.Drawing" />
57    <Reference Include="System.Windows.Forms" />
[644]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>
[645]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" />
[1230]73    <Compile Include="AlgorithmBase.cs" />
[1246]74    <Compile Include="Evaluators\MeanAbsolutePercentageOfRangeErrorEvaluator.cs" />
[1050]75    <Compile Include="FunctionLibraryInjector.cs" />
[1201]76    <Compile Include="OffspringSelectionGP.cs" />
77    <Compile Include="OffSpringSelectionGpEditor.cs">
78      <SubType>UserControl</SubType>
79    </Compile>
80    <Compile Include="OffSpringSelectionGpEditor.Designer.cs">
81      <DependentUpon>OffSpringSelectionGpEditor.cs</DependentUpon>
82    </Compile>
[1051]83    <Compile Include="StandardGpEditor.cs">
84      <SubType>UserControl</SubType>
85    </Compile>
86    <Compile Include="StandardGpEditor.Designer.cs">
87      <DependentUpon>StandardGpEditor.cs</DependentUpon>
88    </Compile>
[1050]89    <Compile Include="StandardGP.cs" />
[645]90    <Compile Include="Cosinus.cs" />
91    <Compile Include="Differential.cs" />
92    <Compile Include="Division.cs" />
93    <Compile Include="Equal.cs" />
94    <Compile Include="Evaluators\CoefficientOfDeterminationEvaluator.cs" />
[769]95    <Compile Include="Evaluators\UncertainMeanSquaredErrorEvaluator.cs" />
[645]96    <Compile Include="Evaluators\EarlyStoppingMeanSquaredErrorEvaluator.cs" />
[651]97    <Compile Include="Evaluators\GPEvaluatorBase.cs" />
[645]98    <Compile Include="Evaluators\MeanAbsolutePercentageErrorEvaluator.cs" />
99    <Compile Include="Evaluators\MeanSquaredErrorEvaluator.cs" />
100    <Compile Include="Evaluators\SimpleEvaluator.cs" />
101    <Compile Include="Evaluators\VarianceAccountedForEvaluator.cs" />
102    <Compile Include="Exponential.cs" />
103    <Compile Include="GreaterThan.cs" />
104    <Compile Include="HeuristicLabGPStructureIdentificationPlugin.cs" />
105    <Compile Include="IfThenElse.cs" />
106    <Compile Include="LessThan.cs" />
107    <Compile Include="Logarithm.cs" />
108    <Compile Include="ModelAnalyzerExporter.cs" />
109    <Compile Include="Multiplication.cs" />
110    <Compile Include="Not.cs" />
111    <Compile Include="Or.cs" />
112    <Compile Include="Power.cs" />
[644]113    <Compile Include="Properties\AssemblyInfo.cs" />
[645]114    <Compile Include="Signum.cs" />
115    <Compile Include="Sinus.cs" />
116    <Compile Include="Sqrt.cs" />
117    <Compile Include="StructIdProblemInjector.cs" />
118    <Compile Include="StructIdProblemInjectorView.cs">
119      <SubType>UserControl</SubType>
120    </Compile>
121    <Compile Include="StructIdProblemInjectorView.Designer.cs">
122      <DependentUpon>StructIdProblemInjectorView.cs</DependentUpon>
123    </Compile>
124    <Compile Include="Subtraction.cs" />
125    <Compile Include="SymbolicExpressionExporter.cs" />
126    <Compile Include="SymbolTable.cs" />
127    <Compile Include="Tangens.cs" />
128    <Compile Include="Variable.cs" />
129    <Compile Include="Xor.cs" />
[644]130  </ItemGroup>
[645]131  <ItemGroup>
132    <ProjectReference Include="..\HeuristicLab.Constraints\HeuristicLab.Constraints.csproj">
133      <Project>{FCD62C6F-4793-4593-AE9A-0BDCA256EE99}</Project>
134      <Name>HeuristicLab.Constraints</Name>
135    </ProjectReference>
136    <ProjectReference Include="..\HeuristicLab.Core\HeuristicLab.Core.csproj">
137      <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project>
138      <Name>HeuristicLab.Core</Name>
139    </ProjectReference>
140    <ProjectReference Include="..\HeuristicLab.DataAnalysis\HeuristicLab.DataAnalysis.csproj">
141      <Project>{7DD3A97A-56E9-462F-90E2-A351FE7AF5C2}</Project>
142      <Name>HeuristicLab.DataAnalysis</Name>
143    </ProjectReference>
144    <ProjectReference Include="..\HeuristicLab.Data\HeuristicLab.Data.csproj">
145      <Project>{F473D9AF-3F09-4296-9F28-3C65118DAFFA}</Project>
146      <Name>HeuristicLab.Data</Name>
147    </ProjectReference>
148    <ProjectReference Include="..\HeuristicLab.GP\HeuristicLab.GP.csproj">
149      <Project>{1F1CF3ED-374C-4288-995B-93F6B872F571}</Project>
150      <Name>HeuristicLab.GP</Name>
151    </ProjectReference>
[1050]152    <ProjectReference Include="..\HeuristicLab.Logging\HeuristicLab.Logging.csproj">
153      <Project>{4095C92C-5A4C-44BC-9963-5F384CF5CC3F}</Project>
154      <Name>HeuristicLab.Logging</Name>
155    </ProjectReference>
[1052]156    <ProjectReference Include="..\HeuristicLab.Operators.Programmable\HeuristicLab.Operators.Programmable.csproj">
157      <Project>{E3CCBFC6-900C-41B6-AFB8-6646DB097435}</Project>
158      <Name>HeuristicLab.Operators.Programmable</Name>
159    </ProjectReference>
[645]160    <ProjectReference Include="..\HeuristicLab.Operators\HeuristicLab.Operators.csproj">
161      <Project>{A9983BA2-B3B2-475E-8E2C-62050B71D1C5}</Project>
162      <Name>HeuristicLab.Operators</Name>
163    </ProjectReference>
164    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
165      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
166      <Name>HeuristicLab.PluginInfrastructure</Name>
167    </ProjectReference>
168    <ProjectReference Include="..\HeuristicLab.Random\HeuristicLab.Random.csproj">
169      <Project>{47019A74-F7F7-482E-83AA-D3F4F777E879}</Project>
170      <Name>HeuristicLab.Random</Name>
171    </ProjectReference>
[1201]172    <ProjectReference Include="..\HeuristicLab.Selection.OffspringSelection\HeuristicLab.Selection.OffspringSelection.csproj">
173      <Project>{205898D3-2717-4686-AF17-52409B7EC0C6}</Project>
174      <Name>HeuristicLab.Selection.OffspringSelection</Name>
175    </ProjectReference>
[1050]176    <ProjectReference Include="..\HeuristicLab.Selection\HeuristicLab.Selection.csproj">
177      <Project>{F7CF0571-25CB-43D5-8443-0843A1E2861A}</Project>
178      <Name>HeuristicLab.Selection</Name>
179    </ProjectReference>
180    <ProjectReference Include="..\HeuristicLab.SequentialEngine\HeuristicLab.SequentialEngine.csproj">
181      <Project>{B4BE8E53-BA06-4237-9A01-24255F880201}</Project>
182      <Name>HeuristicLab.SequentialEngine</Name>
183    </ProjectReference>
[645]184  </ItemGroup>
185  <ItemGroup>
[1201]186    <EmbeddedResource Include="OffSpringSelectionGpEditor.resx">
187      <DependentUpon>OffSpringSelectionGpEditor.cs</DependentUpon>
188    </EmbeddedResource>
[1051]189    <EmbeddedResource Include="StandardGpEditor.resx">
190      <DependentUpon>StandardGpEditor.cs</DependentUpon>
191      <SubType>Designer</SubType>
192    </EmbeddedResource>
[645]193    <EmbeddedResource Include="StructIdProblemInjectorView.resx">
194      <DependentUpon>StructIdProblemInjectorView.cs</DependentUpon>
195      <SubType>Designer</SubType>
196    </EmbeddedResource>
197  </ItemGroup>
198  <ItemGroup>
199    <None Include="HeuristicLab.snk" />
[651]200    <None Include="Properties\AssemblyInfo.frame" />
[645]201  </ItemGroup>
[644]202  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
203  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
204       Other similar extension points exist, see Microsoft.Common.targets.
205  <Target Name="BeforeBuild">
206  </Target>
207  <Target Name="AfterBuild">
208  </Target>
209  -->
[651]210  <PropertyGroup>
[852]211    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
212set ProjectDir=$(ProjectDir)
213set SolutionDir=$(SolutionDir)
214set Outdir=$(Outdir)
215
216call PreBuildEvent.cmd</PreBuildEvent>
[651]217  </PropertyGroup>
[644]218</Project>
Note: See TracBrowser for help on using the repository browser.