Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/11/13 23:51:15 (11 years ago)
Author:
ascheibe
Message:

#1886 removed lrs code from the main solution as this did not work out as expected

Location:
branches/HeuristicLab.Analysis.AlgorithmBehavior/PerformanceTests
Files:
1 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Analysis.AlgorithmBehavior/PerformanceTests/PerformanceTests.csproj

    r10200 r10223  
    5151    </ProjectReference>
    5252  </ItemGroup>
    53   <ItemGroup>
    54     <Content Include="liblrs.dll">
    55       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    56     </Content>
    57   </ItemGroup>
    5853  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
    5954  <!-- 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  
    8383      Console.WriteLine("Volume calculation of whole data set took : " + watch.Elapsed.TotalSeconds + " seconds.");
    8484      Console.WriteLine("Volume of whole data is: " + volume);
    85 
    86 
    87       //do volume calculation with lrs
    88       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);
    9385    }
    9486
     
    130122      Console.WriteLine("Volume calculation of whole data set took : " + watch.Elapsed.TotalSeconds + " seconds.");
    131123      Console.WriteLine("Volume of whole data is: " + volume);
    132 
    133 
    134       //do volume calculation with lrs
    135       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);
    141124    }
    142125
Note: See TracChangeset for help on using the changeset viewer.