- Timestamp:
- 12/11/13 23:51:15 (11 years ago)
- Location:
- branches/HeuristicLab.Analysis.AlgorithmBehavior/PerformanceTests
- Files:
-
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Analysis.AlgorithmBehavior/PerformanceTests/PerformanceTests.csproj
r10200 r10223 51 51 </ProjectReference> 52 52 </ItemGroup> 53 <ItemGroup>54 <Content Include="liblrs.dll">55 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>56 </Content>57 </ItemGroup>58 53 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> 59 54 <!-- To modify your build process, add your task inside one of the targets below and uncomment it. -
branches/HeuristicLab.Analysis.AlgorithmBehavior/PerformanceTests/Program.cs
r10222 r10223 83 83 Console.WriteLine("Volume calculation of whole data set took : " + watch.Elapsed.TotalSeconds + " seconds."); 84 84 Console.WriteLine("Volume of whole data is: " + volume); 85 86 87 //do volume calculation with lrs88 watch.Start();89 volume = LiblrsWrapper.CalculateVolume(dataList);90 watch.Stop();91 Console.WriteLine("Volume calculation of whole data set with lrs took : " + watch.Elapsed.TotalSeconds + " seconds.");92 Console.WriteLine("Volume of whole data with lrs is: " + volume);93 85 } 94 86 … … 130 122 Console.WriteLine("Volume calculation of whole data set took : " + watch.Elapsed.TotalSeconds + " seconds."); 131 123 Console.WriteLine("Volume of whole data is: " + volume); 132 133 134 //do volume calculation with lrs135 watch = new Stopwatch();136 watch.Start();137 volume = LiblrsWrapper.CalculateVolume(points);138 watch.Stop();139 Console.WriteLine("Volume calculation of whole data set with lrs took : " + watch.Elapsed.TotalSeconds + " seconds.");140 Console.WriteLine("Volume of whole data with lrs is: " + volume);141 124 } 142 125
Note: See TracChangeset
for help on using the changeset viewer.