[4536] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2010 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 |
|
---|
| 22 |
|
---|
| 23 | namespace HeuristicLab.Algorithms.DataAnalysis.Views {
|
---|
| 24 | partial class CrossValidationView {
|
---|
| 25 | /// <summary>
|
---|
| 26 | /// Required designer variable.
|
---|
| 27 | /// </summary>
|
---|
| 28 | private System.ComponentModel.IContainer components = null;
|
---|
| 29 |
|
---|
| 30 | /// <summary>
|
---|
| 31 | /// Clean up any resources being used.
|
---|
| 32 | /// </summary>
|
---|
| 33 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
| 34 | protected override void Dispose(bool disposing) {
|
---|
| 35 | if (disposing && (components != null)) {
|
---|
| 36 | components.Dispose();
|
---|
| 37 | }
|
---|
| 38 | base.Dispose(disposing);
|
---|
| 39 | }
|
---|
| 40 |
|
---|
| 41 | #region Component Designer generated code
|
---|
| 42 |
|
---|
| 43 | /// <summary>
|
---|
| 44 | /// Required method for Designer support - do not modify
|
---|
| 45 | /// the contents of this method with the code editor.
|
---|
| 46 | /// </summary>
|
---|
| 47 | private void InitializeComponent() {
|
---|
| 48 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CrossValidationView));
|
---|
| 49 | this.startButton = new System.Windows.Forms.Button();
|
---|
| 50 | this.pauseButton = new System.Windows.Forms.Button();
|
---|
| 51 | this.stopButton = new System.Windows.Forms.Button();
|
---|
| 52 | this.resetButton = new System.Windows.Forms.Button();
|
---|
| 53 | this.executionTimeTextBox = new System.Windows.Forms.TextBox();
|
---|
| 54 | this.executionTimeLabel = new System.Windows.Forms.Label();
|
---|
| 55 | this.foldsNumericUpDown = new System.Windows.Forms.NumericUpDown();
|
---|
| 56 | this.foldsLabel = new System.Windows.Forms.Label();
|
---|
| 57 | this.workersNumericUpDown = new System.Windows.Forms.NumericUpDown();
|
---|
| 58 | this.workersLabel = new System.Windows.Forms.Label();
|
---|
| 59 | this.samplesStartLabel = new System.Windows.Forms.Label();
|
---|
| 60 | this.samplesEndLabel = new System.Windows.Forms.Label();
|
---|
| 61 | this.samplesEndStringConvertibleValueView = new HeuristicLab.Data.Views.StringConvertibleValueView();
|
---|
| 62 | this.samplesStartStringConvertibleValueView = new HeuristicLab.Data.Views.StringConvertibleValueView();
|
---|
| 63 | this.tabControl = new System.Windows.Forms.TabControl();
|
---|
| 64 | this.algorithmTabPage = new System.Windows.Forms.TabPage();
|
---|
| 65 | this.algorithmNamedItemView = new HeuristicLab.Core.Views.NamedItemView();
|
---|
| 66 | this.algorithmTabControl = new System.Windows.Forms.TabControl();
|
---|
| 67 | this.algorithmProblemTabPage = new System.Windows.Forms.TabPage();
|
---|
| 68 | this.openProblemButton = new System.Windows.Forms.Button();
|
---|
| 69 | this.algorithmProblemViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
|
---|
| 70 | this.newProblemButton = new System.Windows.Forms.Button();
|
---|
| 71 | this.algorithmParametersTabPage = new System.Windows.Forms.TabPage();
|
---|
| 72 | this.algorithmParameterCollectionView = new HeuristicLab.Core.Views.ParameterCollectionView();
|
---|
| 73 | this.openAlgorithmButton = new System.Windows.Forms.Button();
|
---|
| 74 | this.newAlgorithmButton = new System.Windows.Forms.Button();
|
---|
[4567] | 75 | this.resultsTabPage = new System.Windows.Forms.TabPage();
|
---|
[4561] | 76 | this.runsTabPage = new System.Windows.Forms.TabPage();
|
---|
| 77 | this.storeAlgorithmInEachRunCheckBox = new System.Windows.Forms.CheckBox();
|
---|
| 78 | this.runCollectionView = new HeuristicLab.Optimization.Views.RunCollectionView();
|
---|
[4536] | 79 | this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
|
---|
[4567] | 80 | this.splitContainer = new System.Windows.Forms.SplitContainer();
|
---|
| 81 | this.resultCollectionView = new HeuristicLab.Optimization.Views.ResultCollectionView();
|
---|
[4536] | 82 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
|
---|
| 83 | ((System.ComponentModel.ISupportInitialize)(this.foldsNumericUpDown)).BeginInit();
|
---|
| 84 | ((System.ComponentModel.ISupportInitialize)(this.workersNumericUpDown)).BeginInit();
|
---|
| 85 | this.tabControl.SuspendLayout();
|
---|
| 86 | this.algorithmTabPage.SuspendLayout();
|
---|
| 87 | this.algorithmTabControl.SuspendLayout();
|
---|
| 88 | this.algorithmProblemTabPage.SuspendLayout();
|
---|
| 89 | this.algorithmParametersTabPage.SuspendLayout();
|
---|
[4567] | 90 | this.resultsTabPage.SuspendLayout();
|
---|
[4561] | 91 | this.runsTabPage.SuspendLayout();
|
---|
[4567] | 92 | this.splitContainer.Panel1.SuspendLayout();
|
---|
| 93 | this.splitContainer.Panel2.SuspendLayout();
|
---|
| 94 | this.splitContainer.SuspendLayout();
|
---|
[4536] | 95 | this.SuspendLayout();
|
---|
| 96 | //
|
---|
| 97 | // nameTextBox
|
---|
| 98 | //
|
---|
| 99 | this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
|
---|
| 100 | this.errorProvider.SetIconPadding(this.nameTextBox, 2);
|
---|
| 101 | this.nameTextBox.Location = new System.Drawing.Point(80, 0);
|
---|
[4567] | 102 | this.nameTextBox.Size = new System.Drawing.Size(533, 20);
|
---|
[4536] | 103 | //
|
---|
| 104 | // descriptionTextBox
|
---|
| 105 | //
|
---|
| 106 | this.descriptionTextBox.Location = new System.Drawing.Point(80, 26);
|
---|
[4567] | 107 | this.descriptionTextBox.Size = new System.Drawing.Size(533, 20);
|
---|
[4536] | 108 | //
|
---|
| 109 | // startButton
|
---|
| 110 | //
|
---|
| 111 | this.startButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
---|
[4568] | 112 | this.startButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Play;
|
---|
[4536] | 113 | this.startButton.Location = new System.Drawing.Point(0, 514);
|
---|
| 114 | this.startButton.Name = "startButton";
|
---|
| 115 | this.startButton.Size = new System.Drawing.Size(24, 24);
|
---|
| 116 | this.startButton.TabIndex = 11;
|
---|
| 117 | this.startButton.UseVisualStyleBackColor = true;
|
---|
| 118 | this.startButton.Click += new System.EventHandler(this.startButton_Click);
|
---|
| 119 | //
|
---|
| 120 | // pauseButton
|
---|
| 121 | //
|
---|
| 122 | this.pauseButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
---|
[4568] | 123 | this.pauseButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Pause;
|
---|
[4536] | 124 | this.pauseButton.Location = new System.Drawing.Point(30, 514);
|
---|
| 125 | this.pauseButton.Name = "pauseButton";
|
---|
| 126 | this.pauseButton.Size = new System.Drawing.Size(24, 24);
|
---|
| 127 | this.pauseButton.TabIndex = 12;
|
---|
| 128 | this.pauseButton.UseVisualStyleBackColor = true;
|
---|
| 129 | this.pauseButton.Click += new System.EventHandler(this.pauseButton_Click);
|
---|
| 130 | //
|
---|
| 131 | // stopButton
|
---|
| 132 | //
|
---|
| 133 | this.stopButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
---|
[4568] | 134 | this.stopButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Stop;
|
---|
[4536] | 135 | this.stopButton.Location = new System.Drawing.Point(60, 514);
|
---|
| 136 | this.stopButton.Name = "stopButton";
|
---|
| 137 | this.stopButton.Size = new System.Drawing.Size(24, 24);
|
---|
| 138 | this.stopButton.TabIndex = 13;
|
---|
| 139 | this.stopButton.UseVisualStyleBackColor = true;
|
---|
| 140 | this.stopButton.Click += new System.EventHandler(this.stopButton_Click);
|
---|
| 141 | //
|
---|
| 142 | // resetButton
|
---|
| 143 | //
|
---|
| 144 | this.resetButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
---|
[4568] | 145 | this.resetButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Restart;
|
---|
[4536] | 146 | this.resetButton.Location = new System.Drawing.Point(90, 514);
|
---|
| 147 | this.resetButton.Name = "resetButton";
|
---|
| 148 | this.resetButton.Size = new System.Drawing.Size(24, 24);
|
---|
| 149 | this.resetButton.TabIndex = 14;
|
---|
| 150 | this.resetButton.UseVisualStyleBackColor = true;
|
---|
| 151 | this.resetButton.Click += new System.EventHandler(this.resetButton_Click);
|
---|
| 152 | //
|
---|
| 153 | // executionTimeTextBox
|
---|
| 154 | //
|
---|
| 155 | this.executionTimeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[4567] | 156 | this.executionTimeTextBox.Location = new System.Drawing.Point(478, 517);
|
---|
[4536] | 157 | this.executionTimeTextBox.Name = "executionTimeTextBox";
|
---|
| 158 | this.executionTimeTextBox.ReadOnly = true;
|
---|
| 159 | this.executionTimeTextBox.Size = new System.Drawing.Size(137, 20);
|
---|
| 160 | this.executionTimeTextBox.TabIndex = 16;
|
---|
| 161 | //
|
---|
| 162 | // executionTimeLabel
|
---|
| 163 | //
|
---|
| 164 | this.executionTimeLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 165 | this.executionTimeLabel.AutoSize = true;
|
---|
[4567] | 166 | this.executionTimeLabel.Location = new System.Drawing.Point(389, 520);
|
---|
[4536] | 167 | this.executionTimeLabel.Name = "executionTimeLabel";
|
---|
| 168 | this.executionTimeLabel.Size = new System.Drawing.Size(83, 13);
|
---|
| 169 | this.executionTimeLabel.TabIndex = 15;
|
---|
| 170 | this.executionTimeLabel.Text = "&Execution Time:";
|
---|
| 171 | //
|
---|
| 172 | // foldsNumericUpDown
|
---|
| 173 | //
|
---|
| 174 | this.foldsNumericUpDown.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 175 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[4567] | 176 | this.foldsNumericUpDown.Location = new System.Drawing.Point(55, 26);
|
---|
[4536] | 177 | this.foldsNumericUpDown.Maximum = new decimal(new int[] {
|
---|
| 178 | 50,
|
---|
| 179 | 0,
|
---|
| 180 | 0,
|
---|
| 181 | 0});
|
---|
| 182 | this.foldsNumericUpDown.Minimum = new decimal(new int[] {
|
---|
[4561] | 183 | 2,
|
---|
[4536] | 184 | 0,
|
---|
| 185 | 0,
|
---|
| 186 | 0});
|
---|
| 187 | this.foldsNumericUpDown.Name = "foldsNumericUpDown";
|
---|
[4567] | 188 | this.foldsNumericUpDown.Size = new System.Drawing.Size(248, 20);
|
---|
[4536] | 189 | this.foldsNumericUpDown.TabIndex = 18;
|
---|
| 190 | this.foldsNumericUpDown.ThousandsSeparator = true;
|
---|
| 191 | this.foldsNumericUpDown.Value = new decimal(new int[] {
|
---|
[4561] | 192 | 2,
|
---|
[4536] | 193 | 0,
|
---|
| 194 | 0,
|
---|
| 195 | 0});
|
---|
| 196 | this.foldsNumericUpDown.ValueChanged += new System.EventHandler(this.foldsNumericUpDown_ValueChanged);
|
---|
| 197 | this.foldsNumericUpDown.Validated += new System.EventHandler(this.foldsNumericUpDown_Validated);
|
---|
| 198 | //
|
---|
| 199 | // foldsLabel
|
---|
| 200 | //
|
---|
| 201 | this.foldsLabel.AutoSize = true;
|
---|
[4567] | 202 | this.foldsLabel.Location = new System.Drawing.Point(3, 29);
|
---|
[4536] | 203 | this.foldsLabel.Name = "foldsLabel";
|
---|
| 204 | this.foldsLabel.Size = new System.Drawing.Size(35, 13);
|
---|
| 205 | this.foldsLabel.TabIndex = 17;
|
---|
| 206 | this.foldsLabel.Text = "&Folds:";
|
---|
| 207 | //
|
---|
| 208 | // workersNumericUpDown
|
---|
| 209 | //
|
---|
| 210 | this.workersNumericUpDown.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 211 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[4567] | 212 | this.workersNumericUpDown.Location = new System.Drawing.Point(55, 0);
|
---|
[4536] | 213 | this.workersNumericUpDown.Maximum = new decimal(new int[] {
|
---|
| 214 | 50,
|
---|
| 215 | 0,
|
---|
| 216 | 0,
|
---|
| 217 | 0});
|
---|
| 218 | this.workersNumericUpDown.Minimum = new decimal(new int[] {
|
---|
| 219 | 1,
|
---|
| 220 | 0,
|
---|
| 221 | 0,
|
---|
| 222 | 0});
|
---|
| 223 | this.workersNumericUpDown.Name = "workersNumericUpDown";
|
---|
[4567] | 224 | this.workersNumericUpDown.Size = new System.Drawing.Size(248, 20);
|
---|
[4536] | 225 | this.workersNumericUpDown.TabIndex = 20;
|
---|
| 226 | this.workersNumericUpDown.ThousandsSeparator = true;
|
---|
| 227 | this.workersNumericUpDown.Value = new decimal(new int[] {
|
---|
| 228 | 1,
|
---|
| 229 | 0,
|
---|
| 230 | 0,
|
---|
| 231 | 0});
|
---|
| 232 | this.workersNumericUpDown.ValueChanged += new System.EventHandler(this.workersNumericUpDown_ValueChanged);
|
---|
| 233 | this.workersNumericUpDown.Validated += new System.EventHandler(this.workersNumericUpDown_Validated);
|
---|
| 234 | //
|
---|
| 235 | // workersLabel
|
---|
| 236 | //
|
---|
| 237 | this.workersLabel.AutoSize = true;
|
---|
[4567] | 238 | this.workersLabel.Location = new System.Drawing.Point(3, 3);
|
---|
[4536] | 239 | this.workersLabel.Name = "workersLabel";
|
---|
| 240 | this.workersLabel.Size = new System.Drawing.Size(50, 13);
|
---|
| 241 | this.workersLabel.TabIndex = 19;
|
---|
| 242 | this.workersLabel.Text = "&Workers:";
|
---|
| 243 | //
|
---|
| 244 | // samplesStartLabel
|
---|
| 245 | //
|
---|
| 246 | this.samplesStartLabel.AutoSize = true;
|
---|
[4567] | 247 | this.samplesStartLabel.Location = new System.Drawing.Point(3, 3);
|
---|
[4536] | 248 | this.samplesStartLabel.Name = "samplesStartLabel";
|
---|
| 249 | this.samplesStartLabel.Size = new System.Drawing.Size(75, 13);
|
---|
| 250 | this.samplesStartLabel.TabIndex = 21;
|
---|
| 251 | this.samplesStartLabel.Text = "&Samples Start:";
|
---|
| 252 | //
|
---|
| 253 | // samplesEndLabel
|
---|
| 254 | //
|
---|
| 255 | this.samplesEndLabel.AutoSize = true;
|
---|
[4567] | 256 | this.samplesEndLabel.Location = new System.Drawing.Point(3, 29);
|
---|
[4536] | 257 | this.samplesEndLabel.Name = "samplesEndLabel";
|
---|
| 258 | this.samplesEndLabel.Size = new System.Drawing.Size(72, 13);
|
---|
| 259 | this.samplesEndLabel.TabIndex = 23;
|
---|
| 260 | this.samplesEndLabel.Text = "&Samples End:";
|
---|
| 261 | //
|
---|
| 262 | // samplesEndStringConvertibleValueView
|
---|
| 263 | //
|
---|
[4567] | 264 | this.samplesEndStringConvertibleValueView.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 265 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[4536] | 266 | this.samplesEndStringConvertibleValueView.Caption = "StringConvertibleValue View";
|
---|
| 267 | this.samplesEndStringConvertibleValueView.Content = null;
|
---|
| 268 | this.samplesEndStringConvertibleValueView.LabelVisible = false;
|
---|
[4567] | 269 | this.samplesEndStringConvertibleValueView.Location = new System.Drawing.Point(80, 26);
|
---|
[4536] | 270 | this.samplesEndStringConvertibleValueView.Name = "samplesEndStringConvertibleValueView";
|
---|
| 271 | this.samplesEndStringConvertibleValueView.ReadOnly = false;
|
---|
[4567] | 272 | this.samplesEndStringConvertibleValueView.Size = new System.Drawing.Size(223, 20);
|
---|
[4536] | 273 | this.samplesEndStringConvertibleValueView.TabIndex = 24;
|
---|
| 274 | //
|
---|
| 275 | // samplesStartStringConvertibleValueView
|
---|
| 276 | //
|
---|
[4567] | 277 | this.samplesStartStringConvertibleValueView.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 278 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[4536] | 279 | this.samplesStartStringConvertibleValueView.Caption = "StringConvertibleValue View";
|
---|
| 280 | this.samplesStartStringConvertibleValueView.Content = null;
|
---|
| 281 | this.samplesStartStringConvertibleValueView.LabelVisible = false;
|
---|
[4567] | 282 | this.samplesStartStringConvertibleValueView.Location = new System.Drawing.Point(80, 0);
|
---|
[4536] | 283 | this.samplesStartStringConvertibleValueView.Name = "samplesStartStringConvertibleValueView";
|
---|
| 284 | this.samplesStartStringConvertibleValueView.ReadOnly = false;
|
---|
[4567] | 285 | this.samplesStartStringConvertibleValueView.Size = new System.Drawing.Size(223, 20);
|
---|
[4536] | 286 | this.samplesStartStringConvertibleValueView.TabIndex = 22;
|
---|
| 287 | //
|
---|
| 288 | // tabControl
|
---|
| 289 | //
|
---|
| 290 | this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 291 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 292 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 293 | this.tabControl.Controls.Add(this.algorithmTabPage);
|
---|
[4567] | 294 | this.tabControl.Controls.Add(this.resultsTabPage);
|
---|
[4561] | 295 | this.tabControl.Controls.Add(this.runsTabPage);
|
---|
[4567] | 296 | this.tabControl.Location = new System.Drawing.Point(0, 113);
|
---|
[4536] | 297 | this.tabControl.Name = "tabControl";
|
---|
| 298 | this.tabControl.SelectedIndex = 0;
|
---|
[4567] | 299 | this.tabControl.Size = new System.Drawing.Size(616, 395);
|
---|
[4536] | 300 | this.tabControl.TabIndex = 25;
|
---|
| 301 | //
|
---|
| 302 | // algorithmTabPage
|
---|
| 303 | //
|
---|
| 304 | this.algorithmTabPage.AllowDrop = true;
|
---|
| 305 | this.algorithmTabPage.Controls.Add(this.algorithmNamedItemView);
|
---|
| 306 | this.algorithmTabPage.Controls.Add(this.algorithmTabControl);
|
---|
| 307 | this.algorithmTabPage.Controls.Add(this.openAlgorithmButton);
|
---|
| 308 | this.algorithmTabPage.Controls.Add(this.newAlgorithmButton);
|
---|
| 309 | this.algorithmTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
| 310 | this.algorithmTabPage.Name = "algorithmTabPage";
|
---|
| 311 | this.algorithmTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
[4567] | 312 | this.algorithmTabPage.Size = new System.Drawing.Size(608, 369);
|
---|
[4536] | 313 | this.algorithmTabPage.TabIndex = 0;
|
---|
| 314 | this.algorithmTabPage.Text = "Algorithm";
|
---|
| 315 | this.algorithmTabPage.UseVisualStyleBackColor = true;
|
---|
| 316 | this.algorithmTabPage.DragDrop += new System.Windows.Forms.DragEventHandler(this.algorithmTabPage_DragDrop);
|
---|
| 317 | this.algorithmTabPage.DragEnter += new System.Windows.Forms.DragEventHandler(this.algorithmTabPage_DragEnterOver);
|
---|
| 318 | this.algorithmTabPage.DragOver += new System.Windows.Forms.DragEventHandler(this.algorithmTabPage_DragEnterOver);
|
---|
| 319 | //
|
---|
| 320 | // algorithmNamedItemView
|
---|
| 321 | //
|
---|
| 322 | this.algorithmNamedItemView.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 323 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 324 | this.algorithmNamedItemView.Caption = "NamedItem View";
|
---|
| 325 | this.algorithmNamedItemView.Content = null;
|
---|
| 326 | this.algorithmNamedItemView.Location = new System.Drawing.Point(6, 36);
|
---|
| 327 | this.algorithmNamedItemView.Name = "algorithmNamedItemView";
|
---|
| 328 | this.algorithmNamedItemView.ReadOnly = false;
|
---|
[4567] | 329 | this.algorithmNamedItemView.Size = new System.Drawing.Size(596, 52);
|
---|
[4536] | 330 | this.algorithmNamedItemView.TabIndex = 29;
|
---|
| 331 | //
|
---|
| 332 | // algorithmTabControl
|
---|
| 333 | //
|
---|
| 334 | this.algorithmTabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 335 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 336 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 337 | this.algorithmTabControl.Controls.Add(this.algorithmProblemTabPage);
|
---|
| 338 | this.algorithmTabControl.Controls.Add(this.algorithmParametersTabPage);
|
---|
| 339 | this.algorithmTabControl.Location = new System.Drawing.Point(8, 94);
|
---|
| 340 | this.algorithmTabControl.Name = "algorithmTabControl";
|
---|
| 341 | this.algorithmTabControl.SelectedIndex = 0;
|
---|
[4567] | 342 | this.algorithmTabControl.Size = new System.Drawing.Size(594, 269);
|
---|
[4536] | 343 | this.algorithmTabControl.TabIndex = 28;
|
---|
| 344 | //
|
---|
| 345 | // algorithmProblemTabPage
|
---|
| 346 | //
|
---|
[5126] | 347 | this.algorithmProblemTabPage.AllowDrop = true;
|
---|
[4536] | 348 | this.algorithmProblemTabPage.Controls.Add(this.openProblemButton);
|
---|
| 349 | this.algorithmProblemTabPage.Controls.Add(this.algorithmProblemViewHost);
|
---|
| 350 | this.algorithmProblemTabPage.Controls.Add(this.newProblemButton);
|
---|
| 351 | this.algorithmProblemTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
| 352 | this.algorithmProblemTabPage.Name = "algorithmProblemTabPage";
|
---|
| 353 | this.algorithmProblemTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
[4567] | 354 | this.algorithmProblemTabPage.Size = new System.Drawing.Size(586, 243);
|
---|
[4536] | 355 | this.algorithmProblemTabPage.TabIndex = 0;
|
---|
| 356 | this.algorithmProblemTabPage.Text = "Problem";
|
---|
| 357 | this.algorithmProblemTabPage.UseVisualStyleBackColor = true;
|
---|
| 358 | this.algorithmProblemTabPage.DragDrop += new System.Windows.Forms.DragEventHandler(this.algorithmProblemTabPage_DragDrop);
|
---|
| 359 | this.algorithmProblemTabPage.DragEnter += new System.Windows.Forms.DragEventHandler(this.algorithmProblemTabPage_DragEnterOver);
|
---|
| 360 | this.algorithmProblemTabPage.DragOver += new System.Windows.Forms.DragEventHandler(this.algorithmProblemTabPage_DragEnterOver);
|
---|
| 361 | //
|
---|
| 362 | // openProblemButton
|
---|
| 363 | //
|
---|
[4568] | 364 | this.openProblemButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Open;
|
---|
[4536] | 365 | this.openProblemButton.Location = new System.Drawing.Point(36, 6);
|
---|
| 366 | this.openProblemButton.Name = "openProblemButton";
|
---|
| 367 | this.openProblemButton.Size = new System.Drawing.Size(24, 24);
|
---|
| 368 | this.openProblemButton.TabIndex = 31;
|
---|
| 369 | this.toolTip.SetToolTip(this.openProblemButton, "Open Problem");
|
---|
| 370 | this.openProblemButton.UseVisualStyleBackColor = true;
|
---|
| 371 | this.openProblemButton.Click += new System.EventHandler(this.openProblemButton_Click);
|
---|
| 372 | //
|
---|
| 373 | // algorithmProblemViewHost
|
---|
| 374 | //
|
---|
| 375 | this.algorithmProblemViewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 376 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 377 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 378 | this.algorithmProblemViewHost.Caption = "View";
|
---|
| 379 | this.algorithmProblemViewHost.Content = null;
|
---|
| 380 | this.algorithmProblemViewHost.Enabled = false;
|
---|
| 381 | this.algorithmProblemViewHost.Location = new System.Drawing.Point(6, 36);
|
---|
| 382 | this.algorithmProblemViewHost.Name = "algorithmProblemViewHost";
|
---|
| 383 | this.algorithmProblemViewHost.ReadOnly = false;
|
---|
[4567] | 384 | this.algorithmProblemViewHost.Size = new System.Drawing.Size(574, 201);
|
---|
[4536] | 385 | this.algorithmProblemViewHost.TabIndex = 0;
|
---|
| 386 | this.algorithmProblemViewHost.ViewType = null;
|
---|
| 387 | //
|
---|
| 388 | // newProblemButton
|
---|
| 389 | //
|
---|
[4568] | 390 | this.newProblemButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.NewDocument;
|
---|
[4536] | 391 | this.newProblemButton.Location = new System.Drawing.Point(6, 6);
|
---|
| 392 | this.newProblemButton.Name = "newProblemButton";
|
---|
| 393 | this.newProblemButton.Size = new System.Drawing.Size(24, 24);
|
---|
| 394 | this.newProblemButton.TabIndex = 30;
|
---|
| 395 | this.toolTip.SetToolTip(this.newProblemButton, "NewProblem");
|
---|
| 396 | this.newProblemButton.UseVisualStyleBackColor = true;
|
---|
| 397 | this.newProblemButton.Click += new System.EventHandler(this.newProblemButton_Click);
|
---|
| 398 | //
|
---|
| 399 | // algorithmParametersTabPage
|
---|
| 400 | //
|
---|
| 401 | this.algorithmParametersTabPage.Controls.Add(this.algorithmParameterCollectionView);
|
---|
| 402 | this.algorithmParametersTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
| 403 | this.algorithmParametersTabPage.Name = "algorithmParametersTabPage";
|
---|
| 404 | this.algorithmParametersTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
[4567] | 405 | this.algorithmParametersTabPage.Size = new System.Drawing.Size(586, 243);
|
---|
[4536] | 406 | this.algorithmParametersTabPage.TabIndex = 1;
|
---|
| 407 | this.algorithmParametersTabPage.Text = "Parameters";
|
---|
| 408 | this.algorithmParametersTabPage.UseVisualStyleBackColor = true;
|
---|
| 409 | //
|
---|
| 410 | // algorithmParameterCollectionView
|
---|
| 411 | //
|
---|
| 412 | this.algorithmParameterCollectionView.Caption = "ParameterCollection View";
|
---|
| 413 | this.algorithmParameterCollectionView.Content = null;
|
---|
| 414 | this.algorithmParameterCollectionView.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
| 415 | this.algorithmParameterCollectionView.Location = new System.Drawing.Point(3, 3);
|
---|
| 416 | this.algorithmParameterCollectionView.Name = "algorithmParameterCollectionView";
|
---|
| 417 | this.algorithmParameterCollectionView.ReadOnly = false;
|
---|
[4567] | 418 | this.algorithmParameterCollectionView.Size = new System.Drawing.Size(580, 237);
|
---|
[4536] | 419 | this.algorithmParameterCollectionView.TabIndex = 0;
|
---|
| 420 | //
|
---|
| 421 | // openAlgorithmButton
|
---|
| 422 | //
|
---|
[4568] | 423 | this.openAlgorithmButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Open;
|
---|
[4536] | 424 | this.openAlgorithmButton.Location = new System.Drawing.Point(38, 6);
|
---|
| 425 | this.openAlgorithmButton.Name = "openAlgorithmButton";
|
---|
| 426 | this.openAlgorithmButton.Size = new System.Drawing.Size(24, 24);
|
---|
| 427 | this.openAlgorithmButton.TabIndex = 27;
|
---|
| 428 | this.toolTip.SetToolTip(this.openAlgorithmButton, "Open Algorithm");
|
---|
| 429 | this.openAlgorithmButton.UseVisualStyleBackColor = true;
|
---|
| 430 | this.openAlgorithmButton.Click += new System.EventHandler(this.openAlgorithmButton_Click);
|
---|
| 431 | //
|
---|
| 432 | // newAlgorithmButton
|
---|
| 433 | //
|
---|
[4568] | 434 | this.newAlgorithmButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.NewDocument;
|
---|
[4536] | 435 | this.newAlgorithmButton.Location = new System.Drawing.Point(8, 6);
|
---|
| 436 | this.newAlgorithmButton.Name = "newAlgorithmButton";
|
---|
| 437 | this.newAlgorithmButton.Size = new System.Drawing.Size(24, 24);
|
---|
| 438 | this.newAlgorithmButton.TabIndex = 26;
|
---|
| 439 | this.toolTip.SetToolTip(this.newAlgorithmButton, "New Algorithm");
|
---|
| 440 | this.newAlgorithmButton.UseVisualStyleBackColor = true;
|
---|
| 441 | this.newAlgorithmButton.Click += new System.EventHandler(this.newAlgorithmButton_Click);
|
---|
| 442 | //
|
---|
[4567] | 443 | // resultsTabPage
|
---|
[4536] | 444 | //
|
---|
[4567] | 445 | this.resultsTabPage.Controls.Add(this.resultCollectionView);
|
---|
| 446 | this.resultsTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
| 447 | this.resultsTabPage.Name = "resultsTabPage";
|
---|
| 448 | this.resultsTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
| 449 | this.resultsTabPage.Size = new System.Drawing.Size(608, 369);
|
---|
| 450 | this.resultsTabPage.TabIndex = 1;
|
---|
| 451 | this.resultsTabPage.Text = "Results";
|
---|
| 452 | this.resultsTabPage.UseVisualStyleBackColor = true;
|
---|
[4536] | 453 | //
|
---|
[4561] | 454 | // runsTabPage
|
---|
| 455 | //
|
---|
| 456 | this.runsTabPage.Controls.Add(this.storeAlgorithmInEachRunCheckBox);
|
---|
| 457 | this.runsTabPage.Controls.Add(this.runCollectionView);
|
---|
| 458 | this.runsTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
| 459 | this.runsTabPage.Name = "runsTabPage";
|
---|
| 460 | this.runsTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
[4567] | 461 | this.runsTabPage.Size = new System.Drawing.Size(608, 369);
|
---|
[4561] | 462 | this.runsTabPage.TabIndex = 2;
|
---|
| 463 | this.runsTabPage.Text = "Runs";
|
---|
| 464 | this.runsTabPage.UseVisualStyleBackColor = true;
|
---|
| 465 | //
|
---|
| 466 | // storeAlgorithmInEachRunCheckBox
|
---|
| 467 | //
|
---|
| 468 | this.storeAlgorithmInEachRunCheckBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 469 | this.storeAlgorithmInEachRunCheckBox.AutoSize = true;
|
---|
| 470 | this.storeAlgorithmInEachRunCheckBox.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
|
---|
| 471 | this.storeAlgorithmInEachRunCheckBox.Checked = true;
|
---|
| 472 | this.storeAlgorithmInEachRunCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
|
---|
| 473 | this.storeAlgorithmInEachRunCheckBox.Location = new System.Drawing.Point(440, 4);
|
---|
| 474 | this.storeAlgorithmInEachRunCheckBox.Name = "storeAlgorithmInEachRunCheckBox";
|
---|
| 475 | this.storeAlgorithmInEachRunCheckBox.Size = new System.Drawing.Size(161, 17);
|
---|
| 476 | this.storeAlgorithmInEachRunCheckBox.TabIndex = 2;
|
---|
| 477 | this.storeAlgorithmInEachRunCheckBox.Text = "&Store Algorithm in each Run:";
|
---|
| 478 | this.toolTip.SetToolTip(this.storeAlgorithmInEachRunCheckBox, "Check to store a copy of the algorithm in each run.");
|
---|
| 479 | this.storeAlgorithmInEachRunCheckBox.UseVisualStyleBackColor = true;
|
---|
| 480 | this.storeAlgorithmInEachRunCheckBox.CheckedChanged += new System.EventHandler(this.storeAlgorithmInEachRunCheckBox_CheckedChanged);
|
---|
| 481 | //
|
---|
| 482 | // runCollectionView
|
---|
| 483 | //
|
---|
| 484 | this.runCollectionView.Caption = "RunCollection View";
|
---|
| 485 | this.runCollectionView.Content = null;
|
---|
| 486 | this.runCollectionView.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
| 487 | this.runCollectionView.Location = new System.Drawing.Point(3, 3);
|
---|
| 488 | this.runCollectionView.Name = "runCollectionView";
|
---|
| 489 | this.runCollectionView.ReadOnly = false;
|
---|
[4567] | 490 | this.runCollectionView.Size = new System.Drawing.Size(602, 363);
|
---|
[4561] | 491 | this.runCollectionView.TabIndex = 3;
|
---|
| 492 | //
|
---|
[4536] | 493 | // openFileDialog
|
---|
| 494 | //
|
---|
| 495 | this.openFileDialog.DefaultExt = "hl";
|
---|
| 496 | this.openFileDialog.FileName = "Algorithm";
|
---|
| 497 | this.openFileDialog.Filter = "HeuristicLab Files|*.hl|All Files|*.*";
|
---|
| 498 | this.openFileDialog.Title = "Open Algorithm";
|
---|
| 499 | //
|
---|
[4567] | 500 | // splitContainer
|
---|
| 501 | //
|
---|
| 502 | this.splitContainer.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 503 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 504 | this.splitContainer.Location = new System.Drawing.Point(0, 52);
|
---|
| 505 | this.splitContainer.Name = "splitContainer";
|
---|
| 506 | //
|
---|
| 507 | // splitContainer.Panel1
|
---|
| 508 | //
|
---|
| 509 | this.splitContainer.Panel1.Controls.Add(this.samplesEndStringConvertibleValueView);
|
---|
| 510 | this.splitContainer.Panel1.Controls.Add(this.samplesStartStringConvertibleValueView);
|
---|
| 511 | this.splitContainer.Panel1.Controls.Add(this.samplesStartLabel);
|
---|
| 512 | this.splitContainer.Panel1.Controls.Add(this.samplesEndLabel);
|
---|
| 513 | //
|
---|
| 514 | // splitContainer.Panel2
|
---|
| 515 | //
|
---|
| 516 | this.splitContainer.Panel2.Controls.Add(this.foldsNumericUpDown);
|
---|
| 517 | this.splitContainer.Panel2.Controls.Add(this.foldsLabel);
|
---|
| 518 | this.splitContainer.Panel2.Controls.Add(this.workersLabel);
|
---|
| 519 | this.splitContainer.Panel2.Controls.Add(this.workersNumericUpDown);
|
---|
| 520 | this.splitContainer.Size = new System.Drawing.Size(616, 55);
|
---|
| 521 | this.splitContainer.SplitterDistance = 306;
|
---|
| 522 | this.splitContainer.TabIndex = 26;
|
---|
| 523 | //
|
---|
| 524 | // resultCollectionView
|
---|
| 525 | //
|
---|
| 526 | this.resultCollectionView.Caption = "ResultCollection View";
|
---|
| 527 | this.resultCollectionView.Content = null;
|
---|
| 528 | this.resultCollectionView.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
| 529 | this.resultCollectionView.Location = new System.Drawing.Point(3, 3);
|
---|
| 530 | this.resultCollectionView.Name = "resultCollectionView";
|
---|
| 531 | this.resultCollectionView.ReadOnly = true;
|
---|
| 532 | this.resultCollectionView.Size = new System.Drawing.Size(602, 363);
|
---|
| 533 | this.resultCollectionView.TabIndex = 0;
|
---|
| 534 | //
|
---|
[4536] | 535 | // CrossValidationView
|
---|
| 536 | //
|
---|
| 537 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 538 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
| 539 | this.Controls.Add(this.tabControl);
|
---|
[4561] | 540 | this.Controls.Add(this.executionTimeTextBox);
|
---|
| 541 | this.Controls.Add(this.executionTimeLabel);
|
---|
| 542 | this.Controls.Add(this.startButton);
|
---|
| 543 | this.Controls.Add(this.pauseButton);
|
---|
[4536] | 544 | this.Controls.Add(this.stopButton);
|
---|
| 545 | this.Controls.Add(this.resetButton);
|
---|
[4567] | 546 | this.Controls.Add(this.splitContainer);
|
---|
[4536] | 547 | this.Name = "CrossValidationView";
|
---|
[4567] | 548 | this.Size = new System.Drawing.Size(616, 538);
|
---|
| 549 | this.Controls.SetChildIndex(this.splitContainer, 0);
|
---|
[4536] | 550 | this.Controls.SetChildIndex(this.resetButton, 0);
|
---|
| 551 | this.Controls.SetChildIndex(this.stopButton, 0);
|
---|
| 552 | this.Controls.SetChildIndex(this.pauseButton, 0);
|
---|
| 553 | this.Controls.SetChildIndex(this.startButton, 0);
|
---|
| 554 | this.Controls.SetChildIndex(this.executionTimeLabel, 0);
|
---|
| 555 | this.Controls.SetChildIndex(this.executionTimeTextBox, 0);
|
---|
[4561] | 556 | this.Controls.SetChildIndex(this.tabControl, 0);
|
---|
[4536] | 557 | this.Controls.SetChildIndex(this.nameLabel, 0);
|
---|
| 558 | this.Controls.SetChildIndex(this.descriptionLabel, 0);
|
---|
| 559 | this.Controls.SetChildIndex(this.nameTextBox, 0);
|
---|
| 560 | this.Controls.SetChildIndex(this.descriptionTextBox, 0);
|
---|
| 561 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
|
---|
| 562 | ((System.ComponentModel.ISupportInitialize)(this.foldsNumericUpDown)).EndInit();
|
---|
| 563 | ((System.ComponentModel.ISupportInitialize)(this.workersNumericUpDown)).EndInit();
|
---|
| 564 | this.tabControl.ResumeLayout(false);
|
---|
| 565 | this.algorithmTabPage.ResumeLayout(false);
|
---|
| 566 | this.algorithmTabControl.ResumeLayout(false);
|
---|
| 567 | this.algorithmProblemTabPage.ResumeLayout(false);
|
---|
| 568 | this.algorithmParametersTabPage.ResumeLayout(false);
|
---|
[4567] | 569 | this.resultsTabPage.ResumeLayout(false);
|
---|
[4561] | 570 | this.runsTabPage.ResumeLayout(false);
|
---|
| 571 | this.runsTabPage.PerformLayout();
|
---|
[4567] | 572 | this.splitContainer.Panel1.ResumeLayout(false);
|
---|
| 573 | this.splitContainer.Panel1.PerformLayout();
|
---|
| 574 | this.splitContainer.Panel2.ResumeLayout(false);
|
---|
| 575 | this.splitContainer.Panel2.PerformLayout();
|
---|
| 576 | this.splitContainer.ResumeLayout(false);
|
---|
[4536] | 577 | this.ResumeLayout(false);
|
---|
| 578 | this.PerformLayout();
|
---|
| 579 |
|
---|
| 580 | }
|
---|
| 581 |
|
---|
| 582 | #endregion
|
---|
| 583 |
|
---|
| 584 | private System.Windows.Forms.Button startButton;
|
---|
| 585 | private System.Windows.Forms.Button pauseButton;
|
---|
| 586 | private System.Windows.Forms.Button stopButton;
|
---|
| 587 | private System.Windows.Forms.Button resetButton;
|
---|
| 588 | private System.Windows.Forms.TextBox executionTimeTextBox;
|
---|
| 589 | private System.Windows.Forms.Label executionTimeLabel;
|
---|
| 590 | private System.Windows.Forms.NumericUpDown foldsNumericUpDown;
|
---|
| 591 | private System.Windows.Forms.Label foldsLabel;
|
---|
| 592 | private System.Windows.Forms.NumericUpDown workersNumericUpDown;
|
---|
| 593 | private System.Windows.Forms.Label workersLabel;
|
---|
| 594 | private System.Windows.Forms.Label samplesStartLabel;
|
---|
| 595 | private Data.Views.StringConvertibleValueView samplesStartStringConvertibleValueView;
|
---|
| 596 | private Data.Views.StringConvertibleValueView samplesEndStringConvertibleValueView;
|
---|
| 597 | private System.Windows.Forms.Label samplesEndLabel;
|
---|
| 598 | private System.Windows.Forms.TabControl tabControl;
|
---|
| 599 | private System.Windows.Forms.TabPage algorithmTabPage;
|
---|
[4567] | 600 | private System.Windows.Forms.TabPage resultsTabPage;
|
---|
[4536] | 601 | private System.Windows.Forms.Button openAlgorithmButton;
|
---|
| 602 | private System.Windows.Forms.Button newAlgorithmButton;
|
---|
| 603 | private Core.Views.NamedItemView algorithmNamedItemView;
|
---|
| 604 | private System.Windows.Forms.TabControl algorithmTabControl;
|
---|
| 605 | private System.Windows.Forms.TabPage algorithmProblemTabPage;
|
---|
| 606 | private System.Windows.Forms.TabPage algorithmParametersTabPage;
|
---|
| 607 | private MainForm.WindowsForms.ViewHost algorithmProblemViewHost;
|
---|
| 608 | private System.Windows.Forms.Button openProblemButton;
|
---|
| 609 | private System.Windows.Forms.Button newProblemButton;
|
---|
| 610 | private Core.Views.ParameterCollectionView algorithmParameterCollectionView;
|
---|
| 611 | private System.Windows.Forms.OpenFileDialog openFileDialog;
|
---|
[4561] | 612 | private System.Windows.Forms.TabPage runsTabPage;
|
---|
| 613 | private Optimization.Views.RunCollectionView runCollectionView;
|
---|
| 614 | private System.Windows.Forms.CheckBox storeAlgorithmInEachRunCheckBox;
|
---|
[4567] | 615 | private System.Windows.Forms.SplitContainer splitContainer;
|
---|
| 616 | private Optimization.Views.ResultCollectionView resultCollectionView;
|
---|
[4536] | 617 | }
|
---|
| 618 | }
|
---|