Free cookie consent management tool by TermsFeed Policy Generator

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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.