Changeset 10223
- Timestamp:
- 12/11/13 23:51:15 (11 years ago)
- Location:
- branches/HeuristicLab.Analysis.AlgorithmBehavior
- Files:
-
- 4 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.AlgorithmBehavior.Analyzers/3.3/HeuristicLab.Analysis.AlgorithmBehavior.Analyzers-3.3.csproj
r10211 r10223 109 109 <Compile Include="QhullWrapper.cs" /> 110 110 <Compile Include="DoubleArrayExtensions.cs" /> 111 <Compile Include="FractionClass.cs" />112 <Compile Include="LiblrsWrapper.cs" />113 111 <Compile Include="RealVectorConvexHullSolutionCacheAnalyzer.cs" /> 114 112 <Compile Include="DistanceMatrixToPoints.cs" /> … … 168 166 </ProjectReference> 169 167 </ItemGroup> 170 <ItemGroup>171 <Content Include="liblrs.dll">172 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>173 </Content>174 </ItemGroup>175 168 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> 176 169 <PropertyGroup> -
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.