[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" />
|
---|
[11742] | 46 | <Compile Include="BanditPolicies\BernoulliPolicyActionInfo.cs" />
|
---|
| 47 | <Compile Include="BanditPolicies\BernoulliThompsonSamplingPolicy.cs" />
|
---|
| 48 | <Compile Include="BanditPolicies\BoltzmannExplorationPolicy.cs" />
|
---|
| 49 | <Compile Include="BanditPolicies\ChernoffIntervalEstimationPolicy.cs" />
|
---|
[11747] | 50 | <Compile Include="BanditPolicies\ActiveLearningPolicy.cs" />
|
---|
[11742] | 51 | <Compile Include="BanditPolicies\DefaultPolicyActionInfo.cs" />
|
---|
| 52 | <Compile Include="BanditPolicies\EpsGreedyPolicy.cs" />
|
---|
| 53 | <Compile Include="BanditPolicies\GaussianThompsonSamplingPolicy.cs" />
|
---|
| 54 | <Compile Include="BanditPolicies\GenericThompsonSamplingPolicy.cs" />
|
---|
| 55 | <Compile Include="BanditPolicies\MeanAndVariancePolicyActionInfo.cs" />
|
---|
| 56 | <Compile Include="BanditPolicies\ModelPolicyActionInfo.cs" />
|
---|
| 57 | <Compile Include="BanditPolicies\RandomPolicy.cs" />
|
---|
| 58 | <Compile Include="BanditPolicies\ThresholdAscentPolicy.cs" />
|
---|
| 59 | <Compile Include="BanditPolicies\UCB1Policy.cs" />
|
---|
| 60 | <Compile Include="BanditPolicies\UCB1TunedPolicy.cs" />
|
---|
| 61 | <Compile Include="BanditPolicies\UCBNormalPolicy.cs" />
|
---|
| 62 | <Compile Include="BanditPolicies\UCTPolicy.cs" />
|
---|
[11711] | 63 | <Compile Include="Bandits\BernoulliBandit.cs" />
|
---|
[11732] | 64 | <Compile Include="Bandits\GaussianBandit.cs" />
|
---|
[11730] | 65 | <Compile Include="Bandits\GaussianMixtureBandit.cs" />
|
---|
| 66 | <Compile Include="Bandits\IBandit.cs" />
|
---|
[11711] | 67 | <Compile Include="Bandits\TruncatedNormalBandit.cs" />
|
---|
[11770] | 68 | <Compile Include="GrammarPolicies\BoltzmanExplorationPolicy.cs" />
|
---|
| 69 | <Compile Include="GrammarPolicies\GenericGrammarPolicy.cs">
|
---|
| 70 | <SubType>Code</SubType>
|
---|
| 71 | </Compile>
|
---|
| 72 | <Compile Include="GrammarPolicies\TDPolicy.cs" />
|
---|
| 73 | <Compile Include="GrammarPolicies\UCTPolicy.cs" />
|
---|
| 74 | <Compile Include="GrammarPolicies\GrammarPolicy.cs" />
|
---|
| 75 | <Compile Include="GrammarPolicies\EpsGreedyPolicy.cs" />
|
---|
| 76 | <Compile Include="GrammarPolicies\GreedyPolicy.cs" />
|
---|
| 77 | <Compile Include="GrammarPolicies\IGrammarPolicy.cs" />
|
---|
| 78 | <Compile Include="GrammarPolicies\RandomNoResamplingPolicy.cs" />
|
---|
[11742] | 79 | <Compile Include="GrammarPolicies\RandomPolicy.cs" />
|
---|
| 80 | <Compile Include="IPolicy.cs" />
|
---|
| 81 | <Compile Include="IBanditPolicy.cs" />
|
---|
| 82 | <Compile Include="IBanditPolicyActionInfo.cs" />
|
---|
[11744] | 83 | <Compile Include="Models\GaussianMixtureModel.cs" />
|
---|
| 84 | <Compile Include="Models\LogitNormalModel.cs" />
|
---|
[11732] | 85 | <Compile Include="OnlineMeanAndVarianceEstimator.cs" />
|
---|
[11730] | 86 | <Compile Include="Models\BernoulliModel.cs" />
|
---|
| 87 | <Compile Include="Models\GaussianModel.cs" />
|
---|
| 88 | <Compile Include="Models\IModel.cs" />
|
---|
[11708] | 89 | <Compile Include="Properties\AssemblyInfo.cs" />
|
---|
| 90 | </ItemGroup>
|
---|
[11727] | 91 | <ItemGroup>
|
---|
| 92 | <ProjectReference Include="..\HeuristicLab.Common\HeuristicLab.Common.csproj">
|
---|
| 93 | <Project>{3A2FBBCB-F9DF-4970-87F3-F13337D941AD}</Project>
|
---|
| 94 | <Name>HeuristicLab.Common</Name>
|
---|
| 95 | </ProjectReference>
|
---|
[11742] | 96 | <ProjectReference Include="..\HeuristicLab.Problems.GrammaticalOptimization\HeuristicLab.Problems.GrammaticalOptimization.csproj">
|
---|
| 97 | <Project>{cb9dccf6-667e-4a13-b82d-dbd6b45a045e}</Project>
|
---|
| 98 | <Name>HeuristicLab.Problems.GrammaticalOptimization</Name>
|
---|
| 99 | </ProjectReference>
|
---|
[11727] | 100 | </ItemGroup>
|
---|
[11708] | 101 | <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
---|
| 102 | <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
---|
| 103 | Other similar extension points exist, see Microsoft.Common.targets.
|
---|
| 104 | <Target Name="BeforeBuild">
|
---|
| 105 | </Target>
|
---|
| 106 | <Target Name="AfterBuild">
|
---|
| 107 | </Target>
|
---|
| 108 | -->
|
---|
| 109 | </Project> |
---|