Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.DataAnalysis.Symbolic.LinearInterpreter/HeuristicLab.Tests/HeuristicLab.Tests.csproj @ 9739

Last change on this file since 9739 was 9739, checked in by bburlacu, 11 years ago

#2021: Added separate SymbolicExpressionTreeLinearCompiler. Updated the SymbolicDataAnalysisExpressionTreeLinearInterpreter:

  • moved constants evaluation outside of loop
  • simplified code
  • renamed EvaluateFast method to Evaluate and made it static.
File size: 8.9 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    <ProjectGuid>{506D14C4-8890-4974-8321-A1FBC6701910}</ProjectGuid>
7    <OutputType>Library</OutputType>
8    <AppDesignerFolder>Properties</AppDesignerFolder>
9    <RootNamespace>HeuristicLab.Tests</RootNamespace>
10    <AssemblyName>HeuristicLab.Tests</AssemblyName>
11    <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
12    <FileAlignment>512</FileAlignment>
13    <ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
14    <VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
15    <VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
16    <ReferencePath>$(ProgramFiles)\Common Files\microsoft shared\VSTT\$(VisualStudioVersion)\UITestExtensionPackages</ReferencePath>
17    <IsCodedUITest>False</IsCodedUITest>
18    <TestProjectType>UnitTest</TestProjectType>
19  </PropertyGroup>
20  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
21    <DebugSymbols>true</DebugSymbols>
22    <DebugType>full</DebugType>
23    <Optimize>false</Optimize>
24    <OutputPath>..\..\..\..\trunk\sources\bin\</OutputPath>
25    <DefineConstants>DEBUG;TRACE</DefineConstants>
26    <ErrorReport>prompt</ErrorReport>
27    <WarningLevel>4</WarningLevel>
28    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
29  </PropertyGroup>
30  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
31    <DebugType>pdbonly</DebugType>
32    <Optimize>true</Optimize>
33    <OutputPath>bin\</OutputPath>
34    <DefineConstants>TRACE</DefineConstants>
35    <ErrorReport>prompt</ErrorReport>
36    <WarningLevel>4</WarningLevel>
37    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
38  </PropertyGroup>
39  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
40    <DebugSymbols>true</DebugSymbols>
41    <OutputPath>..\..\..\..\trunk\sources\bin\</OutputPath>
42    <DefineConstants>DEBUG;TRACE</DefineConstants>
43    <DebugType>full</DebugType>
44    <PlatformTarget>x64</PlatformTarget>
45    <ErrorReport>prompt</ErrorReport>
46    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
47  </PropertyGroup>
48  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
49    <OutputPath>..\..\..\..\trunk\sources\bin\</OutputPath>
50    <DefineConstants>TRACE</DefineConstants>
51    <Optimize>true</Optimize>
52    <DebugType>pdbonly</DebugType>
53    <PlatformTarget>x64</PlatformTarget>
54    <ErrorReport>prompt</ErrorReport>
55    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
56  </PropertyGroup>
57  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
58    <DebugSymbols>true</DebugSymbols>
59    <OutputPath>..\..\..\..\trunk\sources\bin\</OutputPath>
60    <DefineConstants>DEBUG;TRACE</DefineConstants>
61    <DebugType>full</DebugType>
62    <PlatformTarget>x86</PlatformTarget>
63    <ErrorReport>prompt</ErrorReport>
64    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
65  </PropertyGroup>
66  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
67    <OutputPath>..\..\..\..\trunk\sources\bin\</OutputPath>
68    <DefineConstants>TRACE</DefineConstants>
69    <Optimize>true</Optimize>
70    <DebugType>pdbonly</DebugType>
71    <PlatformTarget>x86</PlatformTarget>
72    <ErrorReport>prompt</ErrorReport>
73    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
74  </PropertyGroup>
75  <PropertyGroup>
76    <SignAssembly>true</SignAssembly>
77  </PropertyGroup>
78  <PropertyGroup>
79    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
80  </PropertyGroup>
81  <ItemGroup>
82    <Reference Include="ALGLIB-3.7.0">
83      <HintPath>..\..\..\Trunk\sources\bin\ALGLIB-3.7.0.dll</HintPath>
84      <Private>True</Private>
85    </Reference>
86    <Reference Include="HeuristicLab.Common-3.3">
87      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Common-3.3.dll</HintPath>
88      <Private>True</Private>
89    </Reference>
90    <Reference Include="HeuristicLab.Core-3.3">
91      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Core-3.3.dll</HintPath>
92      <Private>True</Private>
93    </Reference>
94    <Reference Include="HeuristicLab.Data-3.3">
95      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Data-3.3.dll</HintPath>
96      <Private>True</Private>
97    </Reference>
98    <Reference Include="HeuristicLab.Operators-3.3">
99      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Operators-3.3.dll</HintPath>
100      <Private>True</Private>
101    </Reference>
102    <Reference Include="HeuristicLab.Optimization-3.3">
103      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Optimization-3.3.dll</HintPath>
104      <Private>True</Private>
105    </Reference>
106    <Reference Include="HeuristicLab.Problems.DataAnalysis-3.4">
107      <HintPath>..\..\..\Trunk\sources\bin\HeuristicLab.Problems.DataAnalysis-3.4.dll</HintPath>
108      <Private>True</Private>
109    </Reference>
110    <Reference Include="HeuristicLab.Random-3.3">
111      <HintPath>..\..\..\Trunk\sources\bin\HeuristicLab.Random-3.3.dll</HintPath>
112      <Private>True</Private>
113    </Reference>
114    <Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
115    <Reference Include="System" />
116  </ItemGroup>
117  <Choose>
118    <When Condition="('$(VisualStudioVersion)' == '10.0' or '$(VisualStudioVersion)' == '') and '$(TargetFrameworkVersion)' == 'v3.5'">
119      <ItemGroup>
120        <Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework, Version=10.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
121      </ItemGroup>
122    </When>
123    <Otherwise />
124  </Choose>
125  <ItemGroup>
126    <Compile Include="HeuristicLab.Problems.DataAnalysis.Symbolic-3.4\SymbolicDataAnalysisExpressionTreeInterpreterTest.cs" />
127    <Compile Include="HeuristicLab.Problems.DataAnalysis.Symbolic-3.4\SymbolicExpressionImporter.cs" />
128    <Compile Include="HeuristicLab.Problems.DataAnalysis.Symbolic-3.4\Token.cs" />
129    <Compile Include="HeuristicLab.Problems.DataAnalysis.Symbolic-3.4\Util.cs" />
130    <Compile Include="Properties\AssemblyInfo.cs" />
131  </ItemGroup>
132  <ItemGroup>
133    <ProjectReference Include="..\HeuristicLab.Encodings.SymbolicExpressionTreeEncoding\3.4\HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4.csproj">
134      <Project>{06d4a186-9319-48a0-bade-a2058d462eea}</Project>
135      <Name>HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4</Name>
136      <Private>True</Private>
137    </ProjectReference>
138    <ProjectReference Include="..\HeuristicLab.Problems.DataAnalysis.Symbolic\3.4\HeuristicLab.Problems.DataAnalysis.Symbolic-3.4.csproj">
139      <Project>{3d28463f-ec96-4d82-afee-38be91a0ca00}</Project>
140      <Name>HeuristicLab.Problems.DataAnalysis.Symbolic-3.4</Name>
141      <Private>True</Private>
142    </ProjectReference>
143  </ItemGroup>
144  <ItemGroup>
145    <None Include="HeuristicLab.snk" />
146  </ItemGroup>
147  <Choose>
148    <When Condition="'$(VisualStudioVersion)' == '10.0' And '$(IsCodedUITest)' == 'True'">
149      <ItemGroup>
150        <Reference Include="Microsoft.VisualStudio.QualityTools.CodedUITestFramework, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
151          <Private>False</Private>
152        </Reference>
153        <Reference Include="Microsoft.VisualStudio.TestTools.UITest.Common, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
154          <Private>False</Private>
155        </Reference>
156        <Reference Include="Microsoft.VisualStudio.TestTools.UITest.Extension, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
157          <Private>False</Private>
158        </Reference>
159        <Reference Include="Microsoft.VisualStudio.TestTools.UITesting, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
160          <Private>False</Private>
161        </Reference>
162      </ItemGroup>
163    </When>
164  </Choose>
165  <Import Project="$(VSToolsPath)\TeamTest\Microsoft.TestTools.targets" Condition="Exists('$(VSToolsPath)\TeamTest\Microsoft.TestTools.targets')" />
166  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
167  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
168       Other similar extension points exist, see Microsoft.Common.targets.
169  <Target Name="BeforeBuild">
170  </Target>
171  <Target Name="AfterBuild">
172  </Target>
173  -->
174</Project>
Note: See TracBrowser for help on using the repository browser.