Free cookie consent management tool by TermsFeed Policy Generator

source: branches/GrammaticalEvolution/HeuristicLab.Problems.GrammaticalEvolution/HeuristicLab.Problems.GrammaticalEvolution-3.3.csproj @ 10039

Last change on this file since 10039 was 10039, checked in by sawinkle, 11 years ago

#2109:

  • Renamed GEEvaluator.cs to GEArtificialAntEvaluator.cs, because a further Evaluator for the Symbolic Regression problem (single objective) is planned to be implemented.
  • Excluded the mapping process from GEArtificialAntEvaluator.cs and created several separated mapper classes. Created stubs for breath-first, depth-first, random and PIGE mappers. These mapper implementations should later be easily usable together with different problems. The mapper can be selected in the GUI, via a Problem parameter. The depth-first mapper is already usable, the others still cause exceptions.
File size: 11.6 KB
Line 
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>9.0.30729</ProductVersion>
7    <SchemaVersion>2.0</SchemaVersion>
8    <ProjectGuid>{E4EE5AFB-D552-447B-8A16-6CBE7938AF32}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.Problems.GrammaticalEvolution</RootNamespace>
12    <AssemblyName>HeuristicLab.Problems.GrammaticalEvolution-3.3</AssemblyName>
13    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
14    <TargetFrameworkProfile>
15    </TargetFrameworkProfile>
16    <FileAlignment>512</FileAlignment>
17    <SignAssembly>True</SignAssembly>
18    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
19    <FileUpgradeFlags>
20    </FileUpgradeFlags>
21    <OldToolsVersion>3.5</OldToolsVersion>
22    <UpgradeBackupLocation />
23    <PublishUrl>publish\</PublishUrl>
24    <Install>true</Install>
25    <InstallFrom>Disk</InstallFrom>
26    <UpdateEnabled>false</UpdateEnabled>
27    <UpdateMode>Foreground</UpdateMode>
28    <UpdateInterval>7</UpdateInterval>
29    <UpdateIntervalUnits>Days</UpdateIntervalUnits>
30    <UpdatePeriodically>false</UpdatePeriodically>
31    <UpdateRequired>false</UpdateRequired>
32    <MapFileExtensions>true</MapFileExtensions>
33    <ApplicationRevision>0</ApplicationRevision>
34    <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
35    <IsWebBootstrapper>false</IsWebBootstrapper>
36    <UseApplicationTrust>false</UseApplicationTrust>
37    <BootstrapperEnabled>true</BootstrapperEnabled>
38    <NoWin32Manifest>False</NoWin32Manifest>
39    <DelaySign>False</DelaySign>
40    <AssemblyOriginatorKeyMode>File</AssemblyOriginatorKeyMode>
41    <RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
42    <AllowUnsafeBlocks>False</AllowUnsafeBlocks>
43    <NoStdLib>False</NoStdLib>
44    <TreatWarningsAsErrors>False</TreatWarningsAsErrors>
45    <IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
46    <RunCodeAnalysis>False</RunCodeAnalysis>
47    <SourceAnalysisOverrideSettingsFile>C:\Users\Sabine\AppData\Roaming\ICSharpCode/SharpDevelop4\Settings.SourceAnalysis</SourceAnalysisOverrideSettingsFile>
48  </PropertyGroup>
49  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
50    <DebugSymbols>true</DebugSymbols>
51    <DebugType>Full</DebugType>
52    <Optimize>False</Optimize>
53    <OutputPath>..\..\..\trunk\sources\bin\</OutputPath>
54    <DefineConstants>DEBUG;TRACE</DefineConstants>
55    <ErrorReport>prompt</ErrorReport>
56    <WarningLevel>4</WarningLevel>
57    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
58  </PropertyGroup>
59  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
60    <DebugType>pdbonly</DebugType>
61    <Optimize>true</Optimize>
62    <OutputPath>bin\Release\</OutputPath>
63    <DefineConstants>TRACE</DefineConstants>
64    <ErrorReport>prompt</ErrorReport>
65    <WarningLevel>4</WarningLevel>
66    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
67  </PropertyGroup>
68  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
69    <DebugSymbols>true</DebugSymbols>
70    <OutputPath>..\..\..\trunk\sources\bin\</OutputPath>
71    <DefineConstants>DEBUG;TRACE</DefineConstants>
72    <DebugType>full</DebugType>
73    <ErrorReport>prompt</ErrorReport>
74    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
75  </PropertyGroup>
76  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
77    <OutputPath>bin\x64\Release\</OutputPath>
78    <DefineConstants>TRACE</DefineConstants>
79    <Optimize>true</Optimize>
80    <DebugType>pdbonly</DebugType>
81    <ErrorReport>prompt</ErrorReport>
82    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
83  </PropertyGroup>
84  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
85    <DebugSymbols>true</DebugSymbols>
86    <OutputPath>..\..\..\trunk\sources\bin\</OutputPath>
87    <DefineConstants>DEBUG;TRACE</DefineConstants>
88    <DebugType>full</DebugType>
89    <ErrorReport>prompt</ErrorReport>
90    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
91  </PropertyGroup>
92  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
93    <OutputPath>bin\x86\Release\</OutputPath>
94    <DefineConstants>TRACE</DefineConstants>
95    <Optimize>true</Optimize>
96    <DebugType>pdbonly</DebugType>
97    <ErrorReport>prompt</ErrorReport>
98    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
99  </PropertyGroup>
100  <ItemGroup>
101    <Reference Include="HeuristicLab.Collections-3.3">
102      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Collections-3.3.dll</HintPath>
103    </Reference>
104    <Reference Include="HeuristicLab.Common-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
105      <SpecificVersion>False</SpecificVersion>
106      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Common-3.3.dll</HintPath>
107      <Private>False</Private>
108    </Reference>
109    <Reference Include="HeuristicLab.Core-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
110      <SpecificVersion>False</SpecificVersion>
111      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Core-3.3.dll</HintPath>
112      <Private>False</Private>
113    </Reference>
114    <Reference Include="HeuristicLab.Data-3.3">
115      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Data-3.3.dll</HintPath>
116    </Reference>
117    <Reference Include="HeuristicLab.Encodings.IntegerVectorEncoding-3.3">
118      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Encodings.IntegerVectorEncoding-3.3.dll</HintPath>
119      <Private>False</Private>
120    </Reference>
121    <Reference Include="HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4, Version=3.4.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
122      <SpecificVersion>False</SpecificVersion>
123      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4.dll</HintPath>
124      <Private>False</Private>
125    </Reference>
126    <Reference Include="HeuristicLab.Operators-3.3">
127      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Operators-3.3.dll</HintPath>
128    </Reference>
129    <Reference Include="HeuristicLab.Optimization-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
130      <SpecificVersion>False</SpecificVersion>
131      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Optimization-3.3.dll</HintPath>
132      <Private>False</Private>
133    </Reference>
134    <Reference Include="HeuristicLab.Optimization.Operators-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
135      <SpecificVersion>False</SpecificVersion>
136      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Optimization.Operators-3.3.dll</HintPath>
137      <Private>False</Private>
138    </Reference>
139    <Reference Include="HeuristicLab.Parameters-3.3">
140      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Parameters-3.3.dll</HintPath>
141    </Reference>
142    <Reference Include="HeuristicLab.Persistence-3.3">
143      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Persistence-3.3.dll</HintPath>
144    </Reference>
145    <Reference Include="HeuristicLab.PluginInfrastructure-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
146      <SpecificVersion>False</SpecificVersion>
147      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.PluginInfrastructure-3.3.dll</HintPath>
148      <Private>False</Private>
149    </Reference>
150    <Reference Include="HeuristicLab.Problems.ArtificialAnt-3.4">
151      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Problems.ArtificialAnt-3.4.dll</HintPath>
152    </Reference>
153    <Reference Include="HeuristicLab.Random-3.3">
154      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Random-3.3.dll</HintPath>
155    </Reference>
156    <Reference Include="System" />
157    <Reference Include="System.Core">
158      <RequiredTargetFramework>3.5</RequiredTargetFramework>
159    </Reference>
160    <Reference Include="System.Drawing" />
161    <Reference Include="System.Windows.Forms" />
162    <Reference Include="System.Windows.Forms.DataVisualization" />
163    <Reference Include="System.Xml.Linq">
164      <RequiredTargetFramework>3.5</RequiredTargetFramework>
165    </Reference>
166    <Reference Include="System.Data.DataSetExtensions">
167      <RequiredTargetFramework>3.5</RequiredTargetFramework>
168    </Reference>
169    <Reference Include="System.Data" />
170    <Reference Include="System.Xml" />
171  </ItemGroup>
172  <ItemGroup>
173    <None Include="HeuristicLab.snk" />
174    <Compile Include="GEArtificialAntEvaluator.cs" />
175    <Compile Include="GEArtificialAntProblem.cs" />
176    <Compile Include="Mappers\BreathFirstMapper.cs" />
177    <Compile Include="Mappers\DepthFirstMapper.cs" />
178    <Compile Include="Mappers\GenotypeToPhenotypeMapper.cs" />
179    <Compile Include="Mappers\IGenotypeToPhenotypeMapper.cs" />
180    <Compile Include="Mappers\PIGEMapper.cs" />
181    <Compile Include="Mappers\RandomMapper.cs" />
182    <Compile Include="Plugin.cs" />
183    <Compile Include="Properties\AssemblyInfo.cs" />
184    <None Include="Plugin.cs.frame" />
185    <None Include="Properties\AssemblyInfo.cs.frame" />
186  </ItemGroup>
187  <ItemGroup>
188    <BootstrapperPackage Include="Microsoft.Net.Client.3.5">
189      <Visible>False</Visible>
190      <ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
191      <Install>false</Install>
192    </BootstrapperPackage>
193    <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
194      <Visible>False</Visible>
195      <ProductName>.NET Framework 3.5 SP1</ProductName>
196      <Install>true</Install>
197    </BootstrapperPackage>
198    <BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
199      <Visible>False</Visible>
200      <ProductName>Windows Installer 3.1</ProductName>
201      <Install>true</Install>
202    </BootstrapperPackage>
203  </ItemGroup>
204  <ItemGroup>
205    <Folder Include="Mappers" />
206  </ItemGroup>
207  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
208  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
209       Other similar extension points exist, see Microsoft.Common.targets.
210  <Target Name="BeforeBuild">
211  </Target>
212  <Target Name="AfterBuild">
213  </Target>
214  -->
215  <PropertyGroup>
216    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
217set ProjectDir=$(ProjectDir)
218set SolutionDir=$(SolutionDir)
219set Outdir=$(Outdir)
220
221call PreBuildEvent.cmd</PreBuildEvent>
222  </PropertyGroup>
223  <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
224    <CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
225    <BaseIntermediateOutputPath>obj\</BaseIntermediateOutputPath>
226    <StartAction>Program</StartAction>
227    <StartProgram>..\..\..\trunk\sources\bin\HeuristicLab 3.3.exe</StartProgram>
228  </PropertyGroup>
229  <PropertyGroup Condition=" '$(Platform)' == 'AnyCPU' ">
230    <BaseAddress>4194304</BaseAddress>
231    <PlatformTarget>x86</PlatformTarget>
232    <RegisterForComInterop>False</RegisterForComInterop>
233    <GenerateSerializationAssemblies>Auto</GenerateSerializationAssemblies>
234  </PropertyGroup>
235  <PropertyGroup Condition=" '$(Platform)' == 'x64' ">
236    <PlatformTarget>x64</PlatformTarget>
237  </PropertyGroup>
238  <PropertyGroup Condition=" '$(Platform)' == 'x86' ">
239    <PlatformTarget>x86</PlatformTarget>
240  </PropertyGroup>
241</Project>
Note: See TracBrowser for help on using the repository browser.