Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PerformanceComparison/HeuristicLab.Optimization.Views/3.3/RunCollectionViews/RunCollectionRLDView.Designer.cs @ 12803

Last change on this file since 12803 was 12803, checked in by abeham, 9 years ago

#2431: worked on RLD analysis

  • started implementation of IRRRun
  • renamed view from ECDF to RLD
  • reverted algorithms (execution time)
  • changed per clock analyzer
File size: 6.5 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21namespace HeuristicLab.Optimization.Views {
22  partial class RunCollectionRLDView {
23    /// <summary>
24    /// Required designer variable.
25    /// </summary>
26    private System.ComponentModel.IContainer components = null;
27
28    /// <summary>
29    /// Clean up any resources being used.
30    /// </summary>
31    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
32    protected override void Dispose(bool disposing) {
33      if (disposing && (components != null)) {
34        components.Dispose();
35      }
36      base.Dispose(disposing);
37    }
38
39    #region Component Designer generated code
40
41    /// <summary>
42    /// Required method for Designer support - do not modify
43    /// the contents of this method with the code editor.
44    /// </summary>
45    private void InitializeComponent() {
46      this.dataTableComboBox = new System.Windows.Forms.ComboBox();
47      this.label1 = new System.Windows.Forms.Label();
48      this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
49      this.label2 = new System.Windows.Forms.Label();
50      this.groupComboBox = new System.Windows.Forms.ComboBox();
51      this.logScalingCheckBox = new System.Windows.Forms.CheckBox();
52      this.SuspendLayout();
53      //
54      // dataTableComboBox
55      //
56      this.dataTableComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
57            | System.Windows.Forms.AnchorStyles.Right)));
58      this.dataTableComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
59      this.dataTableComboBox.FormattingEnabled = true;
60      this.dataTableComboBox.Location = new System.Drawing.Point(69, 30);
61      this.dataTableComboBox.Name = "dataTableComboBox";
62      this.dataTableComboBox.Size = new System.Drawing.Size(455, 21);
63      this.dataTableComboBox.TabIndex = 0;
64      this.dataTableComboBox.SelectedIndexChanged += new System.EventHandler(this.dataTableComboBox_SelectedIndexChanged);
65      //
66      // label1
67      //
68      this.label1.AutoSize = true;
69      this.label1.Location = new System.Drawing.Point(3, 33);
70      this.label1.Name = "label1";
71      this.label1.Size = new System.Drawing.Size(60, 13);
72      this.label1.TabIndex = 1;
73      this.label1.Text = "DataTable:";
74      //
75      // viewHost
76      //
77      this.viewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
78            | System.Windows.Forms.AnchorStyles.Left)
79            | System.Windows.Forms.AnchorStyles.Right)));
80      this.viewHost.Caption = "View";
81      this.viewHost.Content = null;
82      this.viewHost.Enabled = false;
83      this.viewHost.Location = new System.Drawing.Point(4, 57);
84      this.viewHost.Name = "viewHost";
85      this.viewHost.ReadOnly = false;
86      this.viewHost.Size = new System.Drawing.Size(520, 291);
87      this.viewHost.TabIndex = 2;
88      this.viewHost.ViewsLabelVisible = true;
89      this.viewHost.ViewType = null;
90      //
91      // label2
92      //
93      this.label2.AutoSize = true;
94      this.label2.Location = new System.Drawing.Point(3, 6);
95      this.label2.Name = "label2";
96      this.label2.Size = new System.Drawing.Size(39, 13);
97      this.label2.TabIndex = 3;
98      this.label2.Text = "Group:";
99      //
100      // groupComboBox
101      //
102      this.groupComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
103            | System.Windows.Forms.AnchorStyles.Right)));
104      this.groupComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
105      this.groupComboBox.FormattingEnabled = true;
106      this.groupComboBox.Location = new System.Drawing.Point(69, 3);
107      this.groupComboBox.Name = "groupComboBox";
108      this.groupComboBox.Size = new System.Drawing.Size(455, 21);
109      this.groupComboBox.TabIndex = 4;
110      this.groupComboBox.SelectedIndexChanged += new System.EventHandler(this.groupComboBox_SelectedIndexChanged);
111      //
112      // logScalingCheckBox
113      //
114      this.logScalingCheckBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
115      this.logScalingCheckBox.AutoSize = true;
116      this.logScalingCheckBox.Location = new System.Drawing.Point(0, 354);
117      this.logScalingCheckBox.Name = "logScalingCheckBox";
118      this.logScalingCheckBox.Size = new System.Drawing.Size(112, 17);
119      this.logScalingCheckBox.TabIndex = 5;
120      this.logScalingCheckBox.Text = "logarithmic scaling";
121      this.logScalingCheckBox.UseVisualStyleBackColor = true;
122      this.logScalingCheckBox.CheckedChanged += new System.EventHandler(this.logScalingCheckBox_CheckedChanged);
123      //
124      // RunCollectionECDFView
125      //
126      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
127      this.Controls.Add(this.logScalingCheckBox);
128      this.Controls.Add(this.groupComboBox);
129      this.Controls.Add(this.label2);
130      this.Controls.Add(this.viewHost);
131      this.Controls.Add(this.label1);
132      this.Controls.Add(this.dataTableComboBox);
133      this.Name = "RunCollectionECDFView";
134      this.Size = new System.Drawing.Size(527, 374);
135      this.ResumeLayout(false);
136      this.PerformLayout();
137
138    }
139
140    #endregion
141
142    private System.Windows.Forms.ComboBox dataTableComboBox;
143    private System.Windows.Forms.Label label1;
144    private MainForm.WindowsForms.ViewHost viewHost;
145    private System.Windows.Forms.Label label2;
146    private System.Windows.Forms.ComboBox groupComboBox;
147    private System.Windows.Forms.CheckBox logScalingCheckBox;
148  }
149}
Note: See TracBrowser for help on using the repository browser.