Changeset 9735
- Timestamp:
- 07/22/13 15:31:59 (11 years ago)
- 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 62 62 public void SymbolicDataAnalysisExpressionTreeInterpreterArithmeticGrammarPerformanceTest() { 63 63 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); 64 77 } 65 78 -
branches/HeuristicLab.DataAnalysis.Symbolic.LinearInterpreter/HeuristicLab.Tests/HeuristicLab.Tests.csproj
r9732 r9735 75 75 </Choose> 76 76 <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" /> 77 81 <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" />82 82 </ItemGroup> 83 83 <ItemGroup> -
branches/HeuristicLab.DataAnalysis.Symbolic.LinearInterpreter/LinearInterpreter.sln
r9271 r9735 5 5 EndProject 6 6 Project("{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}" 7 EndProject 8 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Tests", "HeuristicLab.Tests\HeuristicLab.Tests.csproj", "{506D14C4-8890-4974-8321-A1FBC6701910}" 7 9 EndProject 8 10 Global … … 40 42 {3D28463F-EC96-4D82-AFEE-38BE91A0CA00}.Release|x86.ActiveCfg = Release|x86 41 43 {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 42 52 EndGlobalSection 43 53 GlobalSection(SolutionProperties) = preSolution
Note: See TracChangeset
for help on using the changeset viewer.