Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/HeuristicLab.Algorithms.Bandits/HeuristicLab.Algorithms.Bandits.csproj @ 11732

Last change on this file since 11732 was 11732, checked in by gkronber, 9 years ago

#2283: refactoring and bug fixes

File size: 4.7 KB
RevLine 
[11708]1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4  <PropertyGroup>
5    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7    <ProjectGuid>{24408F7D-EE0F-4886-A08B-EC324D662E47}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>HeuristicLab.Algorithms.Bandits</RootNamespace>
11    <AssemblyName>HeuristicLab.Algorithms.Bandits</AssemblyName>
12    <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
13    <FileAlignment>512</FileAlignment>
14  </PropertyGroup>
15  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
16    <DebugSymbols>true</DebugSymbols>
17    <DebugType>full</DebugType>
18    <Optimize>false</Optimize>
19    <OutputPath>bin\Debug\</OutputPath>
20    <DefineConstants>DEBUG;TRACE</DefineConstants>
21    <ErrorReport>prompt</ErrorReport>
22    <WarningLevel>4</WarningLevel>
23  </PropertyGroup>
24  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
25    <DebugType>pdbonly</DebugType>
26    <Optimize>true</Optimize>
27    <OutputPath>bin\Release\</OutputPath>
28    <DefineConstants>TRACE</DefineConstants>
29    <ErrorReport>prompt</ErrorReport>
30    <WarningLevel>4</WarningLevel>
31  </PropertyGroup>
32  <ItemGroup>
[11732]33    <Reference Include="ALGLIB-3.7.0">
34      <HintPath>..\..\..\trunk\sources\bin\ALGLIB-3.7.0.dll</HintPath>
35    </Reference>
[11708]36    <Reference Include="System" />
37    <Reference Include="System.Core" />
38    <Reference Include="System.Xml.Linq" />
39    <Reference Include="System.Data.DataSetExtensions" />
40    <Reference Include="Microsoft.CSharp" />
41    <Reference Include="System.Data" />
42    <Reference Include="System.Xml" />
43  </ItemGroup>
44  <ItemGroup>
[11730]45    <Compile Include="BanditHelper.cs" />
[11711]46    <Compile Include="Bandits\BernoulliBandit.cs" />
[11732]47    <Compile Include="Bandits\GaussianBandit.cs" />
[11730]48    <Compile Include="Bandits\GaussianMixtureBandit.cs" />
49    <Compile Include="Bandits\IBandit.cs" />
[11711]50    <Compile Include="Bandits\TruncatedNormalBandit.cs" />
[11732]51    <Compile Include="OnlineMeanAndVarianceEstimator.cs" />
52    <Compile Include="IPolicyActionInfo.cs" />
[11730]53    <Compile Include="Models\BernoulliModel.cs" />
54    <Compile Include="Models\GaussianModel.cs" />
55    <Compile Include="Models\IModel.cs" />
[11732]56    <Compile Include="Policies\BernoulliThompsonSamplingPolicy.cs">
57      <SubType>Code</SubType>
58    </Compile>
59    <Compile Include="Policies\BoltzmannExplorationPolicy.cs">
60      <SubType>Code</SubType>
61    </Compile>
62    <Compile Include="Policies\ChernoffIntervalEstimationPolicy.cs">
63      <SubType>Code</SubType>
64    </Compile>
65    <Compile Include="Policies\BernoulliPolicyActionInfo.cs" />
66    <Compile Include="Policies\ModelPolicyActionInfo.cs" />
67    <Compile Include="Policies\EpsGreedyPolicy.cs">
68      <SubType>Code</SubType>
69    </Compile>
70    <Compile Include="Policies\GaussianThompsonSamplingPolicy.cs">
71      <SubType>Code</SubType>
72    </Compile>
73    <Compile Include="Policies\GenericThompsonSamplingPolicy.cs">
74      <SubType>Code</SubType>
75    </Compile>
76    <Compile Include="Policies\MeanAndVariancePolicyActionInfo.cs" />
77    <Compile Include="Policies\DefaultPolicyActionInfo.cs" />
78    <Compile Include="Policies\EmptyPolicyActionInfo.cs" />
[11711]79    <Compile Include="Policies\RandomPolicy.cs" />
80    <Compile Include="Policies\UCB1Policy.cs" />
[11708]81    <Compile Include="IPolicy.cs" />
[11732]82    <Compile Include="Policies\UCB1TunedPolicy.cs">
83      <SubType>Code</SubType>
84    </Compile>
85    <Compile Include="Policies\UCBNormalPolicy.cs">
86      <SubType>Code</SubType>
87    </Compile>
88    <Compile Include="Policies\UCTPolicy.cs">
89      <SubType>Code</SubType>
90    </Compile>
[11708]91    <Compile Include="Properties\AssemblyInfo.cs" />
92  </ItemGroup>
[11727]93  <ItemGroup>
94    <ProjectReference Include="..\HeuristicLab.Common\HeuristicLab.Common.csproj">
95      <Project>{3A2FBBCB-F9DF-4970-87F3-F13337D941AD}</Project>
96      <Name>HeuristicLab.Common</Name>
97    </ProjectReference>
98  </ItemGroup>
[11708]99  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
100  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
101       Other similar extension points exist, see Microsoft.Common.targets.
102  <Target Name="BeforeBuild">
103  </Target>
104  <Target Name="AfterBuild">
105  </Target>
106  -->
107</Project>
Note: See TracBrowser for help on using the repository browser.