Free cookie consent management tool by TermsFeed Policy Generator

Changeset 10223


Ignore:
Timestamp:
12/11/13 23:51:15 (10 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
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  
    109109    <Compile Include="QhullWrapper.cs" />
    110110    <Compile Include="DoubleArrayExtensions.cs" />
    111     <Compile Include="FractionClass.cs" />
    112     <Compile Include="LiblrsWrapper.cs" />
    113111    <Compile Include="RealVectorConvexHullSolutionCacheAnalyzer.cs" />
    114112    <Compile Include="DistanceMatrixToPoints.cs" />
     
    168166    </ProjectReference>
    169167  </ItemGroup>
    170   <ItemGroup>
    171     <Content Include="liblrs.dll">
    172       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    173     </Content>
    174   </ItemGroup>
    175168  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
    176169  <PropertyGroup>
  • 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.