Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/24/15 15:31:54 (9 years ago)
Author:
abeham
Message:

#2431: worked on RLD analysis

  • started implementation of IRRRun
  • renamed view from ECDF to RLD
  • reverted algorithms (execution time)
  • changed per clock analyzer
File:
1 moved

Legend:

Unmodified
Added
Removed
  • branches/PerformanceComparison/HeuristicLab.Optimization.Views/3.3/RunCollectionViews/RunCollectionRLDView.cs

    r12774 r12803  
    3232
    3333namespace HeuristicLab.Optimization.Views {
    34   [View("ECDF Performance Comparison")]
     34  [View("Run-length Distribution View")]
    3535  [Content(typeof(RunCollection), false)]
    36   public partial class RunCollectionECDFView : ItemView {
     36  public partial class RunCollectionRLDView : ItemView {
    3737    private const string AllRuns = "All Runs";
    3838
     
    4848    }
    4949
    50     public RunCollectionECDFView() {
     50    public RunCollectionRLDView() {
    5151      InitializeComponent();
    5252      combinedDataTable = new IndexedDataTable<double>("Combined DataTable", "A data table containing the ECDF of each of a number of groups.") {
     
    253253
    254254    private void UpdateCaption() {
    255       Caption = Content != null ? Content.OptimizerName + " ECDF Comparison" : ViewAttribute.GetViewName(GetType());
     255      Caption = Content != null ? Content.OptimizerName + " RLD View" : ViewAttribute.GetViewName(GetType());
    256256    }
    257257
Note: See TracChangeset for help on using the changeset viewer.