Free cookie consent management tool by TermsFeed Policy Generator

source: branches/LearningClassifierSystems/HeuristicLab.Encodings.ConditionActionEncoding/3.3/HeuristicLab.Encodings.ConditionActionEncoding-3.3.csproj @ 9105

Last change on this file since 9105 was 9105, checked in by sforsten, 11 years ago

#1980:

  • included an adapted version of GA correctly
  • added action set subsumption
  • added deletion after GA and before covering
File size: 7.0 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>8.0.30703</ProductVersion>
7    <SchemaVersion>2.0</SchemaVersion>
8    <ProjectGuid>{422FB262-0845-4969-8D16-12F057AA90B1}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.Encodings.ConditionActionEncoding</RootNamespace>
12    <AssemblyName>HeuristicLab.Encodings.ConditionActionEncoding-3.3</AssemblyName>
13    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
15  </PropertyGroup>
16  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17    <DebugSymbols>true</DebugSymbols>
18    <DebugType>full</DebugType>
19    <Optimize>false</Optimize>
20    <OutputPath>..\..\..\..\trunk\sources\bin\</OutputPath>
21    <DefineConstants>DEBUG;TRACE</DefineConstants>
22    <ErrorReport>prompt</ErrorReport>
23    <WarningLevel>4</WarningLevel>
24  </PropertyGroup>
25  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26    <DebugType>pdbonly</DebugType>
27    <Optimize>true</Optimize>
28    <OutputPath>..\..\..\..\trunk\sources\bin\</OutputPath>
29    <DefineConstants>TRACE</DefineConstants>
30    <ErrorReport>prompt</ErrorReport>
31    <WarningLevel>4</WarningLevel>
32  </PropertyGroup>
33  <PropertyGroup>
34    <SignAssembly>true</SignAssembly>
35  </PropertyGroup>
36  <PropertyGroup>
37    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
38  </PropertyGroup>
39  <ItemGroup>
40    <Reference Include="HeuristicLab.Collections-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
41      <Private>False</Private>
42    </Reference>
43    <Reference Include="HeuristicLab.Common-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
44      <Private>False</Private>
45    </Reference>
46    <Reference Include="HeuristicLab.Core-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
47      <Private>False</Private>
48    </Reference>
49    <Reference Include="HeuristicLab.Data-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
50      <Private>False</Private>
51    </Reference>
52    <Reference Include="HeuristicLab.Operators-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
53      <Private>False</Private>
54    </Reference>
55    <Reference Include="HeuristicLab.Optimization-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
56      <Private>False</Private>
57    </Reference>
58    <Reference Include="HeuristicLab.Parameters-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
59      <Private>False</Private>
60    </Reference>
61    <Reference Include="HeuristicLab.Persistence-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
62      <Private>False</Private>
63    </Reference>
64    <Reference Include="HeuristicLab.PluginInfrastructure-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
65      <Private>False</Private>
66    </Reference>
67    <Reference Include="HeuristicLab.Problems.DataAnalysis-3.4, Version=3.4.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" />
68    <Reference Include="HeuristicLab.Selection-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
69      <Private>False</Private>
70    </Reference>
71    <Reference Include="System" />
72    <Reference Include="System.Core" />
73    <Reference Include="System.Drawing" />
74    <Reference Include="System.Xml.Linq" />
75    <Reference Include="System.Data.DataSetExtensions" />
76    <Reference Include="Microsoft.CSharp" />
77    <Reference Include="System.Data" />
78    <Reference Include="System.Xml" />
79  </ItemGroup>
80  <ItemGroup>
81    <Compile Include="ActionSelection\ActionSelector.cs" />
82    <Compile Include="ActionSelection\OldActionSelector.cs" />
83    <Compile Include="ActionSelection\MaxValueActionSelector.cs" />
84    <Compile Include="ActionSelection\RandomActionSelector.cs" />
85    <Compile Include="Covering\CoveringOperator.cs" />
86    <Compile Include="Covering\DoDeletionBeforeCovering.cs" />
87    <Compile Include="Covering\ICovering.cs" />
88    <Compile Include="Covering\ICoveringSolutionCreator.cs" />
89    <Compile Include="Deletion\CalculateNumberOfDeletionsOperator.cs" />
90    <Compile Include="Deletion\XCSDeletionOperator.cs" />
91    <Compile Include="Evaluators\XCSEvaluator.cs" />
92    <Compile Include="Evaluators\IConditionActionEvaluator.cs" />
93    <Compile Include="Evaluators\IXCSEvaluator.cs" />
94    <Compile Include="GA\XCSAfterCrossoverOperator.cs" />
95    <Compile Include="IClassifier.cs" />
96    <Compile Include="Interfaces\IConditionActionProblem.cs" />
97    <Compile Include="Interfaces\IConditionActionProblemData.cs" />
98    <Compile Include="Operator\CalculateAccuracy.cs" />
99    <Compile Include="GA\XCSCheckIfGAShouldBeApplied.cs" />
100    <Compile Include="Operator\CountNumberOfUniqueActions.cs" />
101    <Compile Include="Operator\PredictionArrayCalculator.cs" />
102    <Compile Include="Operator\MatchActionOperator.cs" />
103    <Compile Include="Operator\MatchConditionOperator.cs" />
104    <Compile Include="Operator\SubScopeVariableCopier.cs" />
105    <Compile Include="Operator\SumAccuracy.cs" />
106    <Compile Include="Properties\AssemblyInfo.cs" />
107    <Compile Include="Plugin.cs" />
108    <Compile Include="Reinforcement\ActionExecuter.cs" />
109    <Compile Include="Reinforcement\IActionExecuter.cs" />
110    <Compile Include="Reinforcement\IClassifierFetcher.cs" />
111    <Compile Include="Selectors\IMatchSelector.cs" />
112    <Compile Include="Selectors\MatchSelector.cs" />
113    <Compile Include="Subsumption\ActionSetSubsumptionoperator.cs" />
114    <Compile Include="Subsumption\IActionSetSubsumption.cs" />
115    <None Include="Properties\AssemblyInfo.cs.frame" />
116  </ItemGroup>
117  <ItemGroup>
118    <None Include="HeuristicLab.snk" />
119    <None Include="Plugin.cs.frame" />
120  </ItemGroup>
121  <ItemGroup />
122  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
123  <PropertyGroup>
124    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
125set ProjectDir=$(ProjectDir)
126set SolutionDir=$(SolutionDir)
127set Outdir=$(Outdir)
128
129call PreBuildEvent.cmd
130</PreBuildEvent>
131  </PropertyGroup>
132  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
133       Other similar extension points exist, see Microsoft.Common.targets.
134  <Target Name="BeforeBuild">
135  </Target>
136  <Target Name="AfterBuild">
137  </Target>
138  -->
139</Project>
Note: See TracBrowser for help on using the repository browser.