Free cookie consent management tool by TermsFeed Policy Generator

Changeset 9735


Ignore:
Timestamp:
07/22/13 15:31:59 (11 years ago)
Author:
bburlacu
Message:

#2021: Forgot to add tests subproject to the solution.

Location:
branches/HeuristicLab.DataAnalysis.Symbolic.LinearInterpreter
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.DataAnalysis.Symbolic.LinearInterpreter/HeuristicLab.Tests/HeuristicLab.Problems.DataAnalysis.Symbolic-3.4/SymbolicDataAnalysisExpressionTreeInterpreterTest.cs

    r9732 r9735  
    6262    public void SymbolicDataAnalysisExpressionTreeInterpreterArithmeticGrammarPerformanceTest() {
    6363      ArithmeticGrammarPerformanceTest(new SymbolicDataAnalysisExpressionTreeInterpreter(), 12.5e6);
     64    }
     65
     66    [TestMethod]
     67    public void SymbolicDataAnalysisExpressionTreeLinearInterpreterTypeCoherentGrammarPerformanceTest() {
     68      TypeCoherentGrammarPerformanceTest(new SymbolicDataAnalysisExpressionTreeLinearInterpreter(), 12.5e6);
     69    }
     70    [TestMethod]
     71    public void SymbolicDataAnalysisExpressionTreeLinearInterpreterFullGrammarPerformanceTest() {
     72      FullGrammarPerformanceTest(new SymbolicDataAnalysisExpressionTreeLinearInterpreter(), 12.5e6);
     73    }
     74    [TestMethod]
     75    public void SymbolicDataAnalysisExpressionTreeLinearInterpreterArithmeticGrammarPerformanceTest() {
     76      ArithmeticGrammarPerformanceTest(new SymbolicDataAnalysisExpressionTreeLinearInterpreter(), 12.5e6);
    6477    }
    6578
  • branches/HeuristicLab.DataAnalysis.Symbolic.LinearInterpreter/HeuristicLab.Tests/HeuristicLab.Tests.csproj

    r9732 r9735  
    7575  </Choose>
    7676  <ItemGroup>
     77    <Compile Include="HeuristicLab.Problems.DataAnalysis.Symbolic-3.4\SymbolicDataAnalysisExpressionTreeInterpreterTest.cs" />
     78    <Compile Include="HeuristicLab.Problems.DataAnalysis.Symbolic-3.4\SymbolicExpressionImporter.cs" />
     79    <Compile Include="HeuristicLab.Problems.DataAnalysis.Symbolic-3.4\Token.cs" />
     80    <Compile Include="HeuristicLab.Problems.DataAnalysis.Symbolic-3.4\Util.cs" />
    7781    <Compile Include="Properties\AssemblyInfo.cs" />
    78     <Compile Include="SymbolicDataAnalysisExpressionTreeInterpreterTest.cs" />
    79     <Compile Include="SymbolicExpressionImporter.cs" />
    80     <Compile Include="Token.cs" />
    81     <Compile Include="Util.cs" />
    8282  </ItemGroup>
    8383  <ItemGroup>
  • branches/HeuristicLab.DataAnalysis.Symbolic.LinearInterpreter/LinearInterpreter.sln

    r9271 r9735  
    55EndProject
    66Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Problems.DataAnalysis.Symbolic-3.4", "HeuristicLab.Problems.DataAnalysis.Symbolic\3.4\HeuristicLab.Problems.DataAnalysis.Symbolic-3.4.csproj", "{3D28463F-EC96-4D82-AFEE-38BE91A0CA00}"
     7EndProject
     8Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Tests", "HeuristicLab.Tests\HeuristicLab.Tests.csproj", "{506D14C4-8890-4974-8321-A1FBC6701910}"
    79EndProject
    810Global
     
    4042    {3D28463F-EC96-4D82-AFEE-38BE91A0CA00}.Release|x86.ActiveCfg = Release|x86
    4143    {3D28463F-EC96-4D82-AFEE-38BE91A0CA00}.Release|x86.Build.0 = Release|x86
     44    {506D14C4-8890-4974-8321-A1FBC6701910}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
     45    {506D14C4-8890-4974-8321-A1FBC6701910}.Debug|Any CPU.Build.0 = Debug|Any CPU
     46    {506D14C4-8890-4974-8321-A1FBC6701910}.Debug|x64.ActiveCfg = Debug|Any CPU
     47    {506D14C4-8890-4974-8321-A1FBC6701910}.Debug|x86.ActiveCfg = Debug|Any CPU
     48    {506D14C4-8890-4974-8321-A1FBC6701910}.Release|Any CPU.ActiveCfg = Release|Any CPU
     49    {506D14C4-8890-4974-8321-A1FBC6701910}.Release|Any CPU.Build.0 = Release|Any CPU
     50    {506D14C4-8890-4974-8321-A1FBC6701910}.Release|x64.ActiveCfg = Release|Any CPU
     51    {506D14C4-8890-4974-8321-A1FBC6701910}.Release|x86.ActiveCfg = Release|Any CPU
    4252  EndGlobalSection
    4353  GlobalSection(SolutionProperties) = preSolution
Note: See TracChangeset for help on using the changeset viewer.