[11659] | 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>{EEA07488-1A51-412A-A52C-53B754A628B3}</ProjectGuid>
|
---|
| 8 | <OutputType>Library</OutputType>
|
---|
| 9 | <AppDesignerFolder>Properties</AppDesignerFolder>
|
---|
| 10 | <RootNamespace>HeuristicLab.Algorithms.GrammaticalOptimization</RootNamespace>
|
---|
| 11 | <AssemblyName>HeuristicLab.Algorithms.GrammaticalOptimization</AssemblyName>
|
---|
| 12 | <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
---|
| 13 | <FileAlignment>512</FileAlignment>
|
---|
| 14 | <TargetFrameworkProfile />
|
---|
| 15 | </PropertyGroup>
|
---|
| 16 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
---|
| 17 | <DebugSymbols>true</DebugSymbols>
|
---|
| 18 | <DebugType>full</DebugType>
|
---|
| 19 | <Optimize>false</Optimize>
|
---|
| 20 | <OutputPath>bin\Debug\</OutputPath>
|
---|
| 21 | <DefineConstants>DEBUG;TRACE</DefineConstants>
|
---|
| 22 | <ErrorReport>prompt</ErrorReport>
|
---|
| 23 | <WarningLevel>4</WarningLevel>
|
---|
| 24 | <Prefer32Bit>false</Prefer32Bit>
|
---|
| 25 | </PropertyGroup>
|
---|
| 26 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
---|
| 27 | <DebugType>pdbonly</DebugType>
|
---|
| 28 | <Optimize>true</Optimize>
|
---|
| 29 | <OutputPath>bin\Release\</OutputPath>
|
---|
| 30 | <DefineConstants>TRACE</DefineConstants>
|
---|
| 31 | <ErrorReport>prompt</ErrorReport>
|
---|
| 32 | <WarningLevel>4</WarningLevel>
|
---|
| 33 | <Prefer32Bit>false</Prefer32Bit>
|
---|
[12893] | 34 | <UseVSHostingProcess>true</UseVSHostingProcess>
|
---|
[11659] | 35 | </PropertyGroup>
|
---|
| 36 | <ItemGroup>
|
---|
[12893] | 37 | <Reference Include="HeuristicLab.Algorithms.DataAnalysis-3.4">
|
---|
| 38 | <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Algorithms.DataAnalysis-3.4.dll</HintPath>
|
---|
| 39 | </Reference>
|
---|
| 40 | <Reference Include="HeuristicLab.Common-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
|
---|
| 41 | <SpecificVersion>False</SpecificVersion>
|
---|
| 42 | <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Common-3.3.dll</HintPath>
|
---|
| 43 | </Reference>
|
---|
| 44 | <Reference Include="HeuristicLab.Core-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
|
---|
| 45 | <SpecificVersion>False</SpecificVersion>
|
---|
| 46 | <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Core-3.3.dll</HintPath>
|
---|
| 47 | </Reference>
|
---|
| 48 | <Reference Include="HeuristicLab.Data-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
|
---|
| 49 | <SpecificVersion>False</SpecificVersion>
|
---|
| 50 | <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Data-3.3.dll</HintPath>
|
---|
| 51 | </Reference>
|
---|
| 52 | <Reference Include="HeuristicLab.Problems.DataAnalysis-3.4">
|
---|
| 53 | <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Problems.DataAnalysis-3.4.dll</HintPath>
|
---|
| 54 | </Reference>
|
---|
| 55 | <Reference Include="HeuristicLab.Random-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
|
---|
| 56 | <SpecificVersion>False</SpecificVersion>
|
---|
| 57 | <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Random-3.3.dll</HintPath>
|
---|
| 58 | </Reference>
|
---|
[11659] | 59 | <Reference Include="System" />
|
---|
| 60 | <Reference Include="System.Core" />
|
---|
| 61 | </ItemGroup>
|
---|
| 62 | <ItemGroup>
|
---|
[12893] | 63 | <Compile Include="SentenceBandit.cs" />
|
---|
[11850] | 64 | <Compile Include="ISequentialDecisionPolicy.cs" />
|
---|
[12290] | 65 | <Compile Include="SequentialDecisionPolicies\GenericPolicy.cs" />
|
---|
[11850] | 66 | <Compile Include="SequentialDecisionPolicies\GenericFunctionApproximationGrammarPolicy.cs" />
|
---|
| 67 | <Compile Include="SequentialDecisionPolicies\GenericGrammarPolicy.cs" />
|
---|
| 68 | <Compile Include="SequentialDecisionPolicies\GrammarPolicy.cs" />
|
---|
| 69 | <Compile Include="SequentialDecisionPolicies\IGrammarPolicy.cs" />
|
---|
| 70 | <Compile Include="SequentialDecisionPolicies\RandomPolicy.cs" />
|
---|
[11846] | 71 | <Compile Include="SolverBase.cs" />
|
---|
| 72 | <Compile Include="ISolver.cs" />
|
---|
[11659] | 73 | <Compile Include="Properties\AssemblyInfo.cs" />
|
---|
[11850] | 74 | <Compile Include="Solvers\ExhaustiveBreadthFirstSearch.cs" />
|
---|
| 75 | <Compile Include="Solvers\ExhaustiveDepthFirstSearch.cs" />
|
---|
| 76 | <Compile Include="Solvers\ExhaustiveRandomFirstSearch.cs" />
|
---|
| 77 | <Compile Include="Solvers\RandomSearch.cs" />
|
---|
| 78 | <Compile Include="Solvers\SequentialSearch.cs" />
|
---|
[11659] | 79 | </ItemGroup>
|
---|
| 80 | <ItemGroup>
|
---|
[11727] | 81 | <ProjectReference Include="..\HeuristicLab.Algorithms.Bandits\HeuristicLab.Algorithms.Bandits.csproj">
|
---|
| 82 | <Project>{24408F7D-EE0F-4886-A08B-EC324D662E47}</Project>
|
---|
| 83 | <Name>HeuristicLab.Algorithms.Bandits</Name>
|
---|
| 84 | </ProjectReference>
|
---|
| 85 | <ProjectReference Include="..\HeuristicLab.Common\HeuristicLab.Common.csproj">
|
---|
[12893] | 86 | <Project>{3a2fbbcb-f9df-4970-87f3-f13337d941ad}</Project>
|
---|
[11727] | 87 | <Name>HeuristicLab.Common</Name>
|
---|
| 88 | </ProjectReference>
|
---|
[12893] | 89 | <ProjectReference Include="..\HeuristicLab.Problems.Bandits\HeuristicLab.Problems.Bandits.csproj">
|
---|
| 90 | <Project>{E8138227-0C64-4E85-B676-21D3B97F254F}</Project>
|
---|
| 91 | <Name>HeuristicLab.Problems.Bandits</Name>
|
---|
| 92 | </ProjectReference>
|
---|
[11659] | 93 | <ProjectReference Include="..\HeuristicLab.Problems.GrammaticalOptimization\HeuristicLab.Problems.GrammaticalOptimization.csproj">
|
---|
| 94 | <Project>{cb9dccf6-667e-4a13-b82d-dbd6b45a045e}</Project>
|
---|
| 95 | <Name>HeuristicLab.Problems.GrammaticalOptimization</Name>
|
---|
| 96 | </ProjectReference>
|
---|
| 97 | </ItemGroup>
|
---|
| 98 | <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
---|
| 99 | <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
---|
| 100 | Other similar extension points exist, see Microsoft.Common.targets.
|
---|
| 101 | <Target Name="BeforeBuild">
|
---|
| 102 | </Target>
|
---|
| 103 | <Target Name="AfterBuild">
|
---|
| 104 | </Target>
|
---|
| 105 | -->
|
---|
| 106 | </Project> |
---|