Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PerformanceComparison/HeuristicLab.OptimizationExpertSystem/3.3/Views/UnderstandingProblemInstanceView.Designer.cs @ 13752

Last change on this file since 13752 was 13752, checked in by abeham, 7 years ago

#2457:

  • improved mapping of problem instances by normalization (z-score) and handling of missing values (median)
  • enabled to select the characteristics that should be included in the mapping
  • improved speed of OKB download by calling service methods in parallel
File size: 14.4 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2016 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
21
22namespace HeuristicLab.OptimizationExpertSystem {
23  partial class UnderstandingProblemInstanceView {
24    /// <summary>
25    /// Required designer variable.
26    /// </summary>
27    private System.ComponentModel.IContainer components = null;
28
29    /// <summary>
30    /// Clean up any resources being used.
31    /// </summary>
32    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
33    protected override void Dispose(bool disposing) {
34      if (disposing && (components != null)) {
35        components.Dispose();
36      }
37      base.Dispose(disposing);
38    }
39
40    #region Component Designer generated code
41
42    /// <summary>
43    /// Required method for Designer support - do not modify
44    /// the contents of this method with the code editor.
45    /// </summary>
46    private void InitializeComponent() {
47      this.components = new System.ComponentModel.Container();
48      System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
49      System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
50      System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
51      System.Windows.Forms.DataVisualization.Charting.Series series2 = new System.Windows.Forms.DataVisualization.Charting.Series();
52      this.problemInstancesTabControl = new HeuristicLab.MainForm.WindowsForms.DragOverTabControl();
53      this.mapTabPage = new System.Windows.Forms.TabPage();
54      this.mapSplitContainer = new System.Windows.Forms.SplitContainer();
55      this.showCharacteristicsCheckBox = new System.Windows.Forms.CheckBox();
56      this.invPropCheckBox = new System.Windows.Forms.CheckBox();
57      this.sizeLabel = new System.Windows.Forms.Label();
58      this.projectionLabel = new System.Windows.Forms.Label();
59      this.instanceMapChart = new HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart();
60      this.sizeComboBox = new System.Windows.Forms.ComboBox();
61      this.projectionComboBox = new System.Windows.Forms.ComboBox();
62      this.instancesTabPage = new System.Windows.Forms.TabPage();
63      this.problemInstancesView = new HeuristicLab.MainForm.WindowsForms.ViewHost();
64      this.problemInstancesTabControl.SuspendLayout();
65      this.mapTabPage.SuspendLayout();
66      ((System.ComponentModel.ISupportInitialize)(this.mapSplitContainer)).BeginInit();
67      this.mapSplitContainer.Panel1.SuspendLayout();
68      this.mapSplitContainer.SuspendLayout();
69      ((System.ComponentModel.ISupportInitialize)(this.instanceMapChart)).BeginInit();
70      this.instancesTabPage.SuspendLayout();
71      this.SuspendLayout();
72      //
73      // problemInstancesTabControl
74      //
75      this.problemInstancesTabControl.AllowDrop = true;
76      this.problemInstancesTabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
77            | System.Windows.Forms.AnchorStyles.Left)
78            | System.Windows.Forms.AnchorStyles.Right)));
79      this.problemInstancesTabControl.Controls.Add(this.mapTabPage);
80      this.problemInstancesTabControl.Controls.Add(this.instancesTabPage);
81      this.problemInstancesTabControl.Location = new System.Drawing.Point(0, 0);
82      this.problemInstancesTabControl.Name = "problemInstancesTabControl";
83      this.problemInstancesTabControl.SelectedIndex = 0;
84      this.problemInstancesTabControl.Size = new System.Drawing.Size(1000, 760);
85      this.problemInstancesTabControl.TabIndex = 8;
86      //
87      // mapTabPage
88      //
89      this.mapTabPage.Controls.Add(this.mapSplitContainer);
90      this.mapTabPage.Location = new System.Drawing.Point(4, 22);
91      this.mapTabPage.Name = "mapTabPage";
92      this.mapTabPage.Padding = new System.Windows.Forms.Padding(3);
93      this.mapTabPage.Size = new System.Drawing.Size(992, 734);
94      this.mapTabPage.TabIndex = 1;
95      this.mapTabPage.Text = "Map";
96      this.mapTabPage.UseVisualStyleBackColor = true;
97      //
98      // mapSplitContainer
99      //
100      this.mapSplitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
101      this.mapSplitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
102      this.mapSplitContainer.Location = new System.Drawing.Point(3, 3);
103      this.mapSplitContainer.Name = "mapSplitContainer";
104      //
105      // mapSplitContainer.Panel1
106      //
107      this.mapSplitContainer.Panel1.Controls.Add(this.showCharacteristicsCheckBox);
108      this.mapSplitContainer.Panel1.Controls.Add(this.invPropCheckBox);
109      this.mapSplitContainer.Panel1.Controls.Add(this.sizeLabel);
110      this.mapSplitContainer.Panel1.Controls.Add(this.projectionLabel);
111      this.mapSplitContainer.Panel1.Controls.Add(this.instanceMapChart);
112      this.mapSplitContainer.Panel1.Controls.Add(this.sizeComboBox);
113      this.mapSplitContainer.Panel1.Controls.Add(this.projectionComboBox);
114      this.mapSplitContainer.Panel1.Padding = new System.Windows.Forms.Padding(0, 3, 0, 0);
115      this.mapSplitContainer.Panel2Collapsed = true;
116      this.mapSplitContainer.Size = new System.Drawing.Size(986, 728);
117      this.mapSplitContainer.SplitterDistance = 847;
118      this.mapSplitContainer.TabIndex = 12;
119      //
120      // showCharacteristicsCheckBox
121      //
122      this.showCharacteristicsCheckBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
123      this.showCharacteristicsCheckBox.Appearance = System.Windows.Forms.Appearance.Button;
124      this.showCharacteristicsCheckBox.Location = new System.Drawing.Point(957, 4);
125      this.showCharacteristicsCheckBox.Name = "showCharacteristicsCheckBox";
126      this.showCharacteristicsCheckBox.Size = new System.Drawing.Size(26, 23);
127      this.showCharacteristicsCheckBox.TabIndex = 18;
128      this.showCharacteristicsCheckBox.Text = "Detail";
129      this.showCharacteristicsCheckBox.UseVisualStyleBackColor = true;
130      this.showCharacteristicsCheckBox.CheckedChanged += new System.EventHandler(this.showCharacteristicsCheckBox_CheckedChanged);
131      //
132      // invPropCheckBox
133      //
134      this.invPropCheckBox.AutoSize = true;
135      this.invPropCheckBox.Checked = true;
136      this.invPropCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
137      this.invPropCheckBox.Location = new System.Drawing.Point(579, 12);
138      this.invPropCheckBox.Name = "invPropCheckBox";
139      this.invPropCheckBox.Size = new System.Drawing.Size(118, 17);
140      this.invPropCheckBox.TabIndex = 17;
141      this.invPropCheckBox.Text = "inverse proportional";
142      this.invPropCheckBox.UseVisualStyleBackColor = true;
143      this.invPropCheckBox.CheckedChanged += new System.EventHandler(this.InvPropCheckBoxOnCheckedChanged);
144      //
145      // sizeLabel
146      //
147      this.sizeLabel.AutoSize = true;
148      this.sizeLabel.Location = new System.Drawing.Point(264, 12);
149      this.sizeLabel.Name = "sizeLabel";
150      this.sizeLabel.Size = new System.Drawing.Size(30, 13);
151      this.sizeLabel.TabIndex = 15;
152      this.sizeLabel.Text = "Size:";
153      //
154      // projectionLabel
155      //
156      this.projectionLabel.AutoSize = true;
157      this.projectionLabel.Location = new System.Drawing.Point(2, 12);
158      this.projectionLabel.Name = "projectionLabel";
159      this.projectionLabel.Size = new System.Drawing.Size(57, 13);
160      this.projectionLabel.TabIndex = 16;
161      this.projectionLabel.Text = "Projection:";
162      //
163      // instanceMapChart
164      //
165      this.instanceMapChart.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
166            | System.Windows.Forms.AnchorStyles.Left)
167            | System.Windows.Forms.AnchorStyles.Right)));
168      chartArea1.AxisX.MajorGrid.LineColor = System.Drawing.Color.LightGray;
169      chartArea1.AxisX.MajorGrid.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
170      chartArea1.AxisY.MajorGrid.LineColor = System.Drawing.Color.LightGray;
171      chartArea1.AxisY.MajorGrid.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
172      chartArea1.Name = "Default";
173      this.instanceMapChart.ChartAreas.Add(chartArea1);
174      legend1.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Top;
175      legend1.Enabled = false;
176      legend1.Name = "Legend";
177      this.instanceMapChart.Legends.Add(legend1);
178      this.instanceMapChart.Location = new System.Drawing.Point(3, 33);
179      this.instanceMapChart.Name = "instanceMapChart";
180      series1.ChartArea = "Default";
181      series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Point;
182      series1.Legend = "Legend";
183      series1.MarkerSize = 10;
184      series1.Name = "InstancesSeries";
185      series2.ChartArea = "Default";
186      series2.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Point;
187      series2.Legend = "Legend";
188      series2.MarkerColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
189      series2.MarkerSize = 15;
190      series2.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Cross;
191      series2.Name = "CurrentInstanceSeries";
192      this.instanceMapChart.Series.Add(series1);
193      this.instanceMapChart.Series.Add(series2);
194      this.instanceMapChart.Size = new System.Drawing.Size(980, 692);
195      this.instanceMapChart.TabIndex = 12;
196      //
197      // sizeComboBox
198      //
199      this.sizeComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
200      this.sizeComboBox.FormattingEnabled = true;
201      this.sizeComboBox.Location = new System.Drawing.Point(300, 6);
202      this.sizeComboBox.Name = "sizeComboBox";
203      this.sizeComboBox.Size = new System.Drawing.Size(273, 21);
204      this.sizeComboBox.TabIndex = 13;
205      this.sizeComboBox.SelectedIndexChanged += new System.EventHandler(this.SizeComboBoxOnSelectedIndexChanged);
206      //
207      // projectionComboBox
208      //
209      this.projectionComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
210      this.projectionComboBox.FormattingEnabled = true;
211      this.projectionComboBox.Location = new System.Drawing.Point(65, 6);
212      this.projectionComboBox.Name = "projectionComboBox";
213      this.projectionComboBox.Size = new System.Drawing.Size(158, 21);
214      this.projectionComboBox.TabIndex = 14;
215      this.projectionComboBox.SelectedIndexChanged += new System.EventHandler(this.ProjectionComboBoxOnSelectedIndexChanged);
216      //
217      // instancesTabPage
218      //
219      this.instancesTabPage.Controls.Add(this.problemInstancesView);
220      this.instancesTabPage.Location = new System.Drawing.Point(4, 22);
221      this.instancesTabPage.Name = "instancesTabPage";
222      this.instancesTabPage.Padding = new System.Windows.Forms.Padding(3);
223      this.instancesTabPage.Size = new System.Drawing.Size(992, 734);
224      this.instancesTabPage.TabIndex = 0;
225      this.instancesTabPage.Text = "Instances";
226      this.instancesTabPage.UseVisualStyleBackColor = true;
227      //
228      // problemInstancesView
229      //
230      this.problemInstancesView.Caption = "View";
231      this.problemInstancesView.Content = null;
232      this.problemInstancesView.Dock = System.Windows.Forms.DockStyle.Fill;
233      this.problemInstancesView.Enabled = false;
234      this.problemInstancesView.Location = new System.Drawing.Point(3, 3);
235      this.problemInstancesView.Name = "problemInstancesView";
236      this.problemInstancesView.ReadOnly = false;
237      this.problemInstancesView.Size = new System.Drawing.Size(986, 728);
238      this.problemInstancesView.TabIndex = 0;
239      this.problemInstancesView.ViewsLabelVisible = true;
240      this.problemInstancesView.ViewType = null;
241      //
242      // UnderstandingProblemInstanceView
243      //
244      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
245      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
246      this.Controls.Add(this.problemInstancesTabControl);
247      this.Name = "UnderstandingProblemInstanceView";
248      this.Size = new System.Drawing.Size(1000, 760);
249      this.problemInstancesTabControl.ResumeLayout(false);
250      this.mapTabPage.ResumeLayout(false);
251      this.mapSplitContainer.Panel1.ResumeLayout(false);
252      this.mapSplitContainer.Panel1.PerformLayout();
253      ((System.ComponentModel.ISupportInitialize)(this.mapSplitContainer)).EndInit();
254      this.mapSplitContainer.ResumeLayout(false);
255      ((System.ComponentModel.ISupportInitialize)(this.instanceMapChart)).EndInit();
256      this.instancesTabPage.ResumeLayout(false);
257      this.ResumeLayout(false);
258
259    }
260
261    #endregion
262
263    private MainForm.WindowsForms.DragOverTabControl problemInstancesTabControl;
264    private System.Windows.Forms.TabPage mapTabPage;
265    private System.Windows.Forms.TabPage instancesTabPage;
266    private MainForm.WindowsForms.ViewHost problemInstancesView;
267    private System.Windows.Forms.SplitContainer mapSplitContainer;
268    private System.Windows.Forms.CheckBox showCharacteristicsCheckBox;
269    private System.Windows.Forms.CheckBox invPropCheckBox;
270    private System.Windows.Forms.Label sizeLabel;
271    private System.Windows.Forms.Label projectionLabel;
272    private Visualization.ChartControlsExtensions.EnhancedChart instanceMapChart;
273    private System.Windows.Forms.ComboBox sizeComboBox;
274    private System.Windows.Forms.ComboBox projectionComboBox;
275  }
276}
Note: See TracBrowser for help on using the repository browser.