Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PerformanceComparison/HeuristicLab.Optimization.Views/3.3/IRRestarterView.Designer.cs @ 12825

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

#2431:

  • removed output of RTs, RTus, ...
  • added 2nd row to charts that state restarts until a target was achieved
  • added option to include or exclude solution results
File size: 22.3 KB
RevLine 
[8955]1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2012 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.Optimization.Views {
[12804]23  partial class IndependentRandomRestarterView {
[8955]24    /// <summary>
25    /// Required designer variable.
26    /// </summary>
27    private System.ComponentModel.IContainer components = null;
28
29    #region Component Designer generated code
30
31    /// <summary>
32    /// Required method for Designer support - do not modify
33    /// the contents of this method with the code editor.
34    /// </summary>
35    private void InitializeComponent() {
36      this.timeLimitLabel = new System.Windows.Forms.Label();
[12804]37      this.maxExecutionTimeTextBox = new System.Windows.Forms.TextBox();
38      this.evaluationsLimitabel = new System.Windows.Forms.Label();
39      this.maxEvaluationsTextBox = new System.Windows.Forms.TextBox();
[8955]40      this.tabControl = new HeuristicLab.MainForm.WindowsForms.DragOverTabControl();
41      this.algorithmTabPage = new System.Windows.Forms.TabPage();
42      this.algorithmViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
43      this.openAlgorithmButton = new System.Windows.Forms.Button();
44      this.newAlgorithmButton = new System.Windows.Forms.Button();
[12804]45      this.currentRunTabPage = new System.Windows.Forms.TabPage();
46      this.currentRunView = new HeuristicLab.Optimization.Views.RunView();
[8955]47      this.runsTabPage = new System.Windows.Forms.TabPage();
48      this.runsView = new HeuristicLab.Optimization.Views.RunCollectionView();
49      this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
[12804]50      this.targetValueTextBox = new System.Windows.Forms.TextBox();
51      this.targetValueLabel = new System.Windows.Forms.Label();
52      this.terminationComboBox = new System.Windows.Forms.ComboBox();
53      this.terminationLabel = new System.Windows.Forms.Label();
54      this.moveCostPerSolutionTextBox = new System.Windows.Forms.TextBox();
55      this.moveCostPerSolutionLabel = new System.Windows.Forms.Label();
56      this.maximizationLabel = new System.Windows.Forms.Label();
57      this.maximizationCheckBox = new System.Windows.Forms.CheckBox();
[12825]58      this.storeSolutionInRunLabel = new System.Windows.Forms.Label();
59      this.storeBestSolutionCheckBox = new System.Windows.Forms.CheckBox();
[8955]60      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
61      this.tabControl.SuspendLayout();
62      this.algorithmTabPage.SuspendLayout();
[12804]63      this.currentRunTabPage.SuspendLayout();
[8955]64      this.runsTabPage.SuspendLayout();
65      this.SuspendLayout();
66      //
67      // startButton
68      //
69      this.startButton.Location = new System.Drawing.Point(0, 440);
[12825]70      this.startButton.TabIndex = 18;
[8955]71      this.toolTip.SetToolTip(this.startButton, "Start/Resume Optimizer");
72      //
73      // executionTimeTextBox
74      //
[8961]75      this.executionTimeTextBox.Location = new System.Drawing.Point(412, 444);
[12825]76      this.executionTimeTextBox.TabIndex = 23;
[8955]77      //
78      // executionTimeLabel
79      //
[8961]80      this.executionTimeLabel.Location = new System.Drawing.Point(323, 447);
[12825]81      this.executionTimeLabel.TabIndex = 22;
[8955]82      //
83      // pauseButton
84      //
85      this.pauseButton.Location = new System.Drawing.Point(30, 440);
[12825]86      this.pauseButton.TabIndex = 19;
[8955]87      this.toolTip.SetToolTip(this.pauseButton, "Pause Optimizer");
88      //
89      // stopButton
90      //
91      this.stopButton.Location = new System.Drawing.Point(60, 440);
[12825]92      this.stopButton.TabIndex = 20;
[8955]93      this.toolTip.SetToolTip(this.stopButton, "Stop Optimizer");
94      //
95      // resetButton
96      //
97      this.resetButton.Location = new System.Drawing.Point(90, 440);
[12825]98      this.resetButton.TabIndex = 21;
[8955]99      this.toolTip.SetToolTip(this.resetButton, "Reset Optimizer");
100      //
101      // nameTextBox
102      //
103      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
104      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
[12804]105      this.nameTextBox.Location = new System.Drawing.Point(115, 0);
106      this.nameTextBox.Size = new System.Drawing.Size(409, 20);
[8955]107      //
[8961]108      // infoLabel
109      //
110      this.infoLabel.Location = new System.Drawing.Point(530, 3);
111      //
[8955]112      // timeLimitLabel
113      //
114      this.timeLimitLabel.AutoSize = true;
115      this.timeLimitLabel.Location = new System.Drawing.Point(3, 29);
116      this.timeLimitLabel.Name = "timeLimitLabel";
[12804]117      this.timeLimitLabel.Size = new System.Drawing.Size(106, 13);
[8961]118      this.timeLimitLabel.TabIndex = 3;
[12804]119      this.timeLimitLabel.Text = "Max Execution Time:";
[8955]120      //
[12804]121      // maxExecutionTimeTextBox
[8955]122      //
[12805]123      this.maxExecutionTimeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
[8955]124            | System.Windows.Forms.AnchorStyles.Right)));
[12804]125      this.maxExecutionTimeTextBox.Location = new System.Drawing.Point(115, 26);
126      this.maxExecutionTimeTextBox.Name = "maxExecutionTimeTextBox";
127      this.maxExecutionTimeTextBox.Size = new System.Drawing.Size(409, 20);
128      this.maxExecutionTimeTextBox.TabIndex = 4;
129      this.maxExecutionTimeTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.maxExecutionTimeTextBox_Validating);
[8955]130      //
[12804]131      // evaluationsLimitabel
[8955]132      //
[12804]133      this.evaluationsLimitabel.AutoSize = true;
134      this.evaluationsLimitabel.Location = new System.Drawing.Point(3, 55);
135      this.evaluationsLimitabel.Name = "evaluationsLimitabel";
136      this.evaluationsLimitabel.Size = new System.Drawing.Size(88, 13);
137      this.evaluationsLimitabel.TabIndex = 5;
138      this.evaluationsLimitabel.Text = "Max Evaluations:";
[8955]139      //
[12804]140      // maxEvaluationsTextBox
[8955]141      //
[12804]142      this.maxEvaluationsTextBox.Location = new System.Drawing.Point(115, 52);
143      this.maxEvaluationsTextBox.Name = "maxEvaluationsTextBox";
144      this.maxEvaluationsTextBox.Size = new System.Drawing.Size(157, 20);
145      this.maxEvaluationsTextBox.TabIndex = 6;
146      this.maxEvaluationsTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.maxEvaluationsTextBox_Validating);
[8955]147      //
148      // tabControl
149      //
150      this.tabControl.AllowDrop = true;
[12805]151      this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
152            | System.Windows.Forms.AnchorStyles.Left)
[8955]153            | System.Windows.Forms.AnchorStyles.Right)));
154      this.tabControl.Controls.Add(this.algorithmTabPage);
[12804]155      this.tabControl.Controls.Add(this.currentRunTabPage);
[8955]156      this.tabControl.Controls.Add(this.runsTabPage);
[12825]157      this.tabControl.Location = new System.Drawing.Point(0, 152);
[8955]158      this.tabControl.Name = "tabControl";
159      this.tabControl.SelectedIndex = 0;
[12825]160      this.tabControl.Size = new System.Drawing.Size(546, 282);
161      this.tabControl.TabIndex = 17;
[8955]162      //
163      // algorithmTabPage
164      //
165      this.algorithmTabPage.AllowDrop = true;
166      this.algorithmTabPage.Controls.Add(this.algorithmViewHost);
167      this.algorithmTabPage.Controls.Add(this.openAlgorithmButton);
168      this.algorithmTabPage.Controls.Add(this.newAlgorithmButton);
169      this.algorithmTabPage.Location = new System.Drawing.Point(4, 22);
170      this.algorithmTabPage.Name = "algorithmTabPage";
171      this.algorithmTabPage.Padding = new System.Windows.Forms.Padding(3);
[12825]172      this.algorithmTabPage.Size = new System.Drawing.Size(538, 256);
[8955]173      this.algorithmTabPage.TabIndex = 1;
174      this.algorithmTabPage.Text = "Algorithm";
175      this.algorithmTabPage.UseVisualStyleBackColor = true;
176      this.algorithmTabPage.DragDrop += new System.Windows.Forms.DragEventHandler(this.algorithmTabPage_DragDrop);
177      this.algorithmTabPage.DragEnter += new System.Windows.Forms.DragEventHandler(this.algorithmTabPage_DragEnterOver);
178      this.algorithmTabPage.DragOver += new System.Windows.Forms.DragEventHandler(this.algorithmTabPage_DragEnterOver);
179      //
180      // algorithmViewHost
181      //
[12805]182      this.algorithmViewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
183            | System.Windows.Forms.AnchorStyles.Left)
[8955]184            | System.Windows.Forms.AnchorStyles.Right)));
185      this.algorithmViewHost.Caption = "View";
186      this.algorithmViewHost.Content = null;
187      this.algorithmViewHost.Enabled = false;
188      this.algorithmViewHost.Location = new System.Drawing.Point(6, 36);
189      this.algorithmViewHost.Name = "algorithmViewHost";
190      this.algorithmViewHost.ReadOnly = false;
[12825]191      this.algorithmViewHost.Size = new System.Drawing.Size(526, 214);
[8961]192      this.algorithmViewHost.TabIndex = 2;
[8955]193      this.algorithmViewHost.ViewsLabelVisible = true;
194      this.algorithmViewHost.ViewType = null;
195      //
196      // openAlgorithmButton
197      //
[12805]198      this.openAlgorithmButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Open;
[8955]199      this.openAlgorithmButton.Location = new System.Drawing.Point(36, 6);
200      this.openAlgorithmButton.Name = "openAlgorithmButton";
201      this.openAlgorithmButton.Size = new System.Drawing.Size(24, 24);
202      this.openAlgorithmButton.TabIndex = 1;
203      this.toolTip.SetToolTip(this.openAlgorithmButton, "Open Optimizer");
204      this.openAlgorithmButton.UseVisualStyleBackColor = true;
205      this.openAlgorithmButton.Click += new System.EventHandler(this.openAlgorithmButton_Click);
206      //
207      // newAlgorithmButton
208      //
[12805]209      this.newAlgorithmButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.NewDocument;
[8955]210      this.newAlgorithmButton.Location = new System.Drawing.Point(6, 6);
211      this.newAlgorithmButton.Name = "newAlgorithmButton";
212      this.newAlgorithmButton.Size = new System.Drawing.Size(24, 24);
213      this.newAlgorithmButton.TabIndex = 0;
214      this.toolTip.SetToolTip(this.newAlgorithmButton, "New Optimizer");
215      this.newAlgorithmButton.UseVisualStyleBackColor = true;
216      this.newAlgorithmButton.Click += new System.EventHandler(this.newAlgorithmButton_Click);
217      //
[12804]218      // currentRunTabPage
[8955]219      //
[12804]220      this.currentRunTabPage.Controls.Add(this.currentRunView);
221      this.currentRunTabPage.Location = new System.Drawing.Point(4, 22);
222      this.currentRunTabPage.Name = "currentRunTabPage";
223      this.currentRunTabPage.Padding = new System.Windows.Forms.Padding(6);
[12825]224      this.currentRunTabPage.Size = new System.Drawing.Size(538, 256);
[12804]225      this.currentRunTabPage.TabIndex = 4;
226      this.currentRunTabPage.Text = "Current Run";
227      this.currentRunTabPage.UseVisualStyleBackColor = true;
[8955]228      //
[12804]229      // currentRunView
[8955]230      //
[12804]231      this.currentRunView.Caption = "Run View";
232      this.currentRunView.Content = null;
233      this.currentRunView.Dock = System.Windows.Forms.DockStyle.Fill;
234      this.currentRunView.Location = new System.Drawing.Point(6, 6);
235      this.currentRunView.Name = "currentRunView";
236      this.currentRunView.ReadOnly = false;
[12825]237      this.currentRunView.Size = new System.Drawing.Size(526, 244);
[12804]238      this.currentRunView.TabIndex = 0;
[8955]239      //
240      // runsTabPage
241      //
242      this.runsTabPage.Controls.Add(this.runsView);
243      this.runsTabPage.Location = new System.Drawing.Point(4, 22);
244      this.runsTabPage.Name = "runsTabPage";
[12804]245      this.runsTabPage.Padding = new System.Windows.Forms.Padding(6);
[12825]246      this.runsTabPage.Size = new System.Drawing.Size(538, 256);
[8955]247      this.runsTabPage.TabIndex = 3;
248      this.runsTabPage.Text = "Runs";
249      this.runsTabPage.UseVisualStyleBackColor = true;
250      //
251      // runsView
252      //
253      this.runsView.Caption = "RunCollection View";
254      this.runsView.Content = null;
[12804]255      this.runsView.Dock = System.Windows.Forms.DockStyle.Fill;
[8955]256      this.runsView.Location = new System.Drawing.Point(6, 6);
257      this.runsView.Name = "runsView";
258      this.runsView.ReadOnly = false;
[12825]259      this.runsView.Size = new System.Drawing.Size(526, 244);
[8955]260      this.runsView.TabIndex = 1;
261      //
262      // openFileDialog
263      //
264      this.openFileDialog.DefaultExt = "hl";
265      this.openFileDialog.FileName = "Optimizer";
266      this.openFileDialog.Filter = "HeuristicLab Files|*.hl|All Files|*.*";
267      this.openFileDialog.Title = "Open Optimizer";
268      //
[12804]269      // targetValueTextBox
[8956]270      //
[12804]271      this.targetValueTextBox.Location = new System.Drawing.Point(115, 78);
272      this.targetValueTextBox.Name = "targetValueTextBox";
273      this.targetValueTextBox.Size = new System.Drawing.Size(157, 20);
[12825]274      this.targetValueTextBox.TabIndex = 10;
[12804]275      this.targetValueTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.targetValueTextBox_Validating);
[8956]276      //
[12804]277      // targetValueLabel
[8975]278      //
[12804]279      this.targetValueLabel.AutoSize = true;
280      this.targetValueLabel.Location = new System.Drawing.Point(3, 81);
281      this.targetValueLabel.Name = "targetValueLabel";
282      this.targetValueLabel.Size = new System.Drawing.Size(71, 13);
[12825]283      this.targetValueLabel.TabIndex = 9;
[12804]284      this.targetValueLabel.Text = "Target Value:";
[8975]285      //
[12804]286      // terminationComboBox
[8955]287      //
[12805]288      this.terminationComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
[12804]289            | System.Windows.Forms.AnchorStyles.Right)));
290      this.terminationComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
291      this.terminationComboBox.FormattingEnabled = true;
292      this.terminationComboBox.Location = new System.Drawing.Point(115, 105);
293      this.terminationComboBox.Name = "terminationComboBox";
294      this.terminationComboBox.Size = new System.Drawing.Size(409, 21);
[12825]295      this.terminationComboBox.TabIndex = 14;
[12804]296      this.terminationComboBox.SelectedIndexChanged += new System.EventHandler(this.terminationComboBox_SelectedIndexChanged);
297      //
298      // terminationLabel
299      //
300      this.terminationLabel.AutoSize = true;
301      this.terminationLabel.Location = new System.Drawing.Point(3, 108);
302      this.terminationLabel.Name = "terminationLabel";
303      this.terminationLabel.Size = new System.Drawing.Size(65, 13);
[12825]304      this.terminationLabel.TabIndex = 13;
[12804]305      this.terminationLabel.Text = "Termination:";
306      //
307      // moveCostPerSolutionTextBox
308      //
[12805]309      this.moveCostPerSolutionTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
[12804]310            | System.Windows.Forms.AnchorStyles.Right)));
311      this.moveCostPerSolutionTextBox.Location = new System.Drawing.Point(401, 52);
312      this.moveCostPerSolutionTextBox.Name = "moveCostPerSolutionTextBox";
313      this.moveCostPerSolutionTextBox.Size = new System.Drawing.Size(123, 20);
[12825]314      this.moveCostPerSolutionTextBox.TabIndex = 8;
[12804]315      this.moveCostPerSolutionTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.moveCostPerSolutionTextBox_Validating);
316      //
317      // moveCostPerSolutionLabel
318      //
319      this.moveCostPerSolutionLabel.AutoSize = true;
320      this.moveCostPerSolutionLabel.Location = new System.Drawing.Point(278, 55);
321      this.moveCostPerSolutionLabel.Name = "moveCostPerSolutionLabel";
322      this.moveCostPerSolutionLabel.Size = new System.Drawing.Size(117, 13);
[12825]323      this.moveCostPerSolutionLabel.TabIndex = 7;
[12804]324      this.moveCostPerSolutionLabel.Text = "Move cost per solution:";
325      //
326      // maximizationLabel
327      //
328      this.maximizationLabel.AutoSize = true;
329      this.maximizationLabel.Location = new System.Drawing.Point(278, 81);
330      this.maximizationLabel.Name = "maximizationLabel";
331      this.maximizationLabel.Size = new System.Drawing.Size(70, 13);
[12825]332      this.maximizationLabel.TabIndex = 11;
[12804]333      this.maximizationLabel.Text = "Maximization:";
334      //
335      // maximizationCheckBox
336      //
337      this.maximizationCheckBox.AutoSize = true;
338      this.maximizationCheckBox.Location = new System.Drawing.Point(401, 80);
339      this.maximizationCheckBox.Name = "maximizationCheckBox";
340      this.maximizationCheckBox.Size = new System.Drawing.Size(15, 14);
[12825]341      this.maximizationCheckBox.TabIndex = 12;
[12804]342      this.maximizationCheckBox.UseVisualStyleBackColor = true;
343      this.maximizationCheckBox.CheckedChanged += new System.EventHandler(this.maximizationCheckBox_CheckedChanged);
344      //
[12825]345      // storeSolutionInRunLabel
346      //
347      this.storeSolutionInRunLabel.AutoSize = true;
348      this.storeSolutionInRunLabel.Location = new System.Drawing.Point(3, 132);
349      this.storeSolutionInRunLabel.Name = "storeSolutionInRunLabel";
350      this.storeSolutionInRunLabel.Size = new System.Drawing.Size(76, 13);
351      this.storeSolutionInRunLabel.TabIndex = 15;
352      this.storeSolutionInRunLabel.Text = "Store Solution:";
353      //
354      // storeBestSolutionCheckBox
355      //
356      this.storeBestSolutionCheckBox.AutoSize = true;
357      this.storeBestSolutionCheckBox.Location = new System.Drawing.Point(115, 132);
358      this.storeBestSolutionCheckBox.Name = "storeBestSolutionCheckBox";
359      this.storeBestSolutionCheckBox.Size = new System.Drawing.Size(15, 14);
360      this.storeBestSolutionCheckBox.TabIndex = 16;
361      this.storeBestSolutionCheckBox.UseVisualStyleBackColor = true;
362      this.storeBestSolutionCheckBox.CheckedChanged += new System.EventHandler(this.storeBestSolutionCheckBox_CheckedChanged);
363      //
[12804]364      // IndependentRandomRestarterView
365      //
[8956]366      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
[12825]367      this.Controls.Add(this.storeBestSolutionCheckBox);
[12804]368      this.Controls.Add(this.maximizationCheckBox);
369      this.Controls.Add(this.terminationComboBox);
[8955]370      this.Controls.Add(this.tabControl);
[12804]371      this.Controls.Add(this.maxExecutionTimeTextBox);
[8955]372      this.Controls.Add(this.timeLimitLabel);
[12804]373      this.Controls.Add(this.terminationLabel);
[12825]374      this.Controls.Add(this.storeSolutionInRunLabel);
[12804]375      this.Controls.Add(this.targetValueLabel);
376      this.Controls.Add(this.maximizationLabel);
377      this.Controls.Add(this.moveCostPerSolutionLabel);
378      this.Controls.Add(this.evaluationsLimitabel);
379      this.Controls.Add(this.moveCostPerSolutionTextBox);
380      this.Controls.Add(this.targetValueTextBox);
381      this.Controls.Add(this.maxEvaluationsTextBox);
382      this.Name = "IndependentRandomRestarterView";
[8961]383      this.Size = new System.Drawing.Size(549, 464);
[12804]384      this.Controls.SetChildIndex(this.maxEvaluationsTextBox, 0);
385      this.Controls.SetChildIndex(this.targetValueTextBox, 0);
386      this.Controls.SetChildIndex(this.moveCostPerSolutionTextBox, 0);
387      this.Controls.SetChildIndex(this.evaluationsLimitabel, 0);
388      this.Controls.SetChildIndex(this.moveCostPerSolutionLabel, 0);
389      this.Controls.SetChildIndex(this.maximizationLabel, 0);
390      this.Controls.SetChildIndex(this.targetValueLabel, 0);
[12825]391      this.Controls.SetChildIndex(this.storeSolutionInRunLabel, 0);
[12804]392      this.Controls.SetChildIndex(this.terminationLabel, 0);
[8955]393      this.Controls.SetChildIndex(this.timeLimitLabel, 0);
[12804]394      this.Controls.SetChildIndex(this.maxExecutionTimeTextBox, 0);
[8956]395      this.Controls.SetChildIndex(this.tabControl, 0);
[8955]396      this.Controls.SetChildIndex(this.nameLabel, 0);
397      this.Controls.SetChildIndex(this.nameTextBox, 0);
398      this.Controls.SetChildIndex(this.infoLabel, 0);
399      this.Controls.SetChildIndex(this.resetButton, 0);
400      this.Controls.SetChildIndex(this.stopButton, 0);
401      this.Controls.SetChildIndex(this.pauseButton, 0);
402      this.Controls.SetChildIndex(this.executionTimeLabel, 0);
403      this.Controls.SetChildIndex(this.executionTimeTextBox, 0);
404      this.Controls.SetChildIndex(this.startButton, 0);
[12804]405      this.Controls.SetChildIndex(this.terminationComboBox, 0);
406      this.Controls.SetChildIndex(this.maximizationCheckBox, 0);
[12825]407      this.Controls.SetChildIndex(this.storeBestSolutionCheckBox, 0);
[8955]408      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
409      this.tabControl.ResumeLayout(false);
410      this.algorithmTabPage.ResumeLayout(false);
[12804]411      this.currentRunTabPage.ResumeLayout(false);
[8955]412      this.runsTabPage.ResumeLayout(false);
413      this.ResumeLayout(false);
414      this.PerformLayout();
415
416    }
417
418    #endregion
419
420    private System.Windows.Forms.Label timeLimitLabel;
[12804]421    private System.Windows.Forms.TextBox maxExecutionTimeTextBox;
422    private System.Windows.Forms.Label evaluationsLimitabel;
423    private System.Windows.Forms.TextBox maxEvaluationsTextBox;
[8955]424    private MainForm.WindowsForms.DragOverTabControl tabControl;
[12804]425    private System.Windows.Forms.TabPage runsTabPage;
426    private RunCollectionView runsView;
427    private System.Windows.Forms.OpenFileDialog openFileDialog;
428    private System.Windows.Forms.TextBox targetValueTextBox;
429    private System.Windows.Forms.Label targetValueLabel;
430    private System.Windows.Forms.ComboBox terminationComboBox;
431    private System.Windows.Forms.Label terminationLabel;
432    private System.Windows.Forms.TextBox moveCostPerSolutionTextBox;
433    private System.Windows.Forms.Label moveCostPerSolutionLabel;
434    private System.Windows.Forms.Label maximizationLabel;
435    private System.Windows.Forms.CheckBox maximizationCheckBox;
[8955]436    private System.Windows.Forms.TabPage algorithmTabPage;
437    private MainForm.WindowsForms.ViewHost algorithmViewHost;
438    private System.Windows.Forms.Button openAlgorithmButton;
439    private System.Windows.Forms.Button newAlgorithmButton;
[12804]440    private System.Windows.Forms.TabPage currentRunTabPage;
441    private RunView currentRunView;
[12825]442    private System.Windows.Forms.Label storeSolutionInRunLabel;
443    private System.Windows.Forms.CheckBox storeBestSolutionCheckBox;
[8955]444  }
445}
Note: See TracBrowser for help on using the repository browser.