Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.SA/SAEditor.Designer.cs @ 1289

Last change on this file since 1289 was 1289, checked in by abeham, 15 years ago

Added simulated annealing (SA) user interface (#18)

File size: 31.5 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2009 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.SA {
23  partial class SAEditor {
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 (chooseOperatorDialog != null) chooseOperatorDialog.Dispose();
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      this.executeButton = new System.Windows.Forms.Button();
49      this.tabControl = new System.Windows.Forms.TabControl();
50      this.parametersTabPage = new System.Windows.Forms.TabPage();
51      this.setEvaluationButton = new System.Windows.Forms.Button();
52      this.setMutationButton = new System.Windows.Forms.Button();
53      this.setAnnealingSchemeButton = new System.Windows.Forms.Button();
54      this.setSolutionGenerationButton = new System.Windows.Forms.Button();
55      this.viewEvaluationButton = new System.Windows.Forms.Button();
56      this.viewMutationButton = new System.Windows.Forms.Button();
57      this.viewAnnealingSchemeButton = new System.Windows.Forms.Button();
58      this.viewSolutionGenerationButton = new System.Windows.Forms.Button();
59      this.viewProblemInitializationButton = new System.Windows.Forms.Button();
60      this.setProblemInitializationButton = new System.Windows.Forms.Button();
61      this.evaluationTextBox = new System.Windows.Forms.TextBox();
62      this.mutationTextBox = new System.Windows.Forms.TextBox();
63      this.annealingSchemaTextBox = new System.Windows.Forms.TextBox();
64      this.solutionGenerationTextBox = new System.Windows.Forms.TextBox();
65      this.problemInitializationTextBox = new System.Windows.Forms.TextBox();
66      this.setRandomSeedRandomlyCheckBox = new System.Windows.Forms.CheckBox();
67      this.evaluationLabel = new System.Windows.Forms.Label();
68      this.mutationLabel = new System.Windows.Forms.Label();
69      this.annealingSchemaLabel = new System.Windows.Forms.Label();
70      this.solutionGenerationLabel = new System.Windows.Forms.Label();
71      this.problemInitializationLabel = new System.Windows.Forms.Label();
72      this.temperatureTextBox = new System.Windows.Forms.TextBox();
73      this.temperatureLabel = new System.Windows.Forms.Label();
74      this.maximumIterationEffortTextBox = new System.Windows.Forms.TextBox();
75      this.maximumIterationEffortLabel = new System.Windows.Forms.Label();
76      this.randomSeedTextBox = new System.Windows.Forms.TextBox();
77      this.maximumIterationsTextBox = new System.Windows.Forms.TextBox();
78      this.setRandomSeedRandomlyLabel = new System.Windows.Forms.Label();
79      this.randomSeedLabel = new System.Windows.Forms.Label();
80      this.maximumIterationsLabel = new System.Windows.Forms.Label();
81      this.scopesTabPage = new System.Windows.Forms.TabPage();
82      this.scopeView = new HeuristicLab.Core.ScopeView();
83      this.abortButton = new System.Windows.Forms.Button();
84      this.resetButton = new System.Windows.Forms.Button();
85      this.cloneEngineButton = new System.Windows.Forms.Button();
86      this.annealingParameterTextBox = new System.Windows.Forms.TextBox();
87      this.annealingParameterLabel = new System.Windows.Forms.Label();
88      this.tabControl.SuspendLayout();
89      this.parametersTabPage.SuspendLayout();
90      this.scopesTabPage.SuspendLayout();
91      this.SuspendLayout();
92      //
93      // executeButton
94      //
95      this.executeButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
96      this.executeButton.Location = new System.Drawing.Point(0, 370);
97      this.executeButton.Name = "executeButton";
98      this.executeButton.Size = new System.Drawing.Size(75, 23);
99      this.executeButton.TabIndex = 1;
100      this.executeButton.Text = "&Execute";
101      this.executeButton.UseVisualStyleBackColor = true;
102      this.executeButton.Click += new System.EventHandler(this.executeButton_Click);
103      //
104      // tabControl
105      //
106      this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
107                  | System.Windows.Forms.AnchorStyles.Left)
108                  | System.Windows.Forms.AnchorStyles.Right)));
109      this.tabControl.Controls.Add(this.parametersTabPage);
110      this.tabControl.Controls.Add(this.scopesTabPage);
111      this.tabControl.Location = new System.Drawing.Point(0, 0);
112      this.tabControl.Name = "tabControl";
113      this.tabControl.SelectedIndex = 0;
114      this.tabControl.Size = new System.Drawing.Size(473, 364);
115      this.tabControl.TabIndex = 0;
116      //
117      // parametersTabPage
118      //
119      this.parametersTabPage.Controls.Add(this.annealingParameterTextBox);
120      this.parametersTabPage.Controls.Add(this.annealingParameterLabel);
121      this.parametersTabPage.Controls.Add(this.setEvaluationButton);
122      this.parametersTabPage.Controls.Add(this.setMutationButton);
123      this.parametersTabPage.Controls.Add(this.setAnnealingSchemeButton);
124      this.parametersTabPage.Controls.Add(this.setSolutionGenerationButton);
125      this.parametersTabPage.Controls.Add(this.viewEvaluationButton);
126      this.parametersTabPage.Controls.Add(this.viewMutationButton);
127      this.parametersTabPage.Controls.Add(this.viewAnnealingSchemeButton);
128      this.parametersTabPage.Controls.Add(this.viewSolutionGenerationButton);
129      this.parametersTabPage.Controls.Add(this.viewProblemInitializationButton);
130      this.parametersTabPage.Controls.Add(this.setProblemInitializationButton);
131      this.parametersTabPage.Controls.Add(this.evaluationTextBox);
132      this.parametersTabPage.Controls.Add(this.mutationTextBox);
133      this.parametersTabPage.Controls.Add(this.annealingSchemaTextBox);
134      this.parametersTabPage.Controls.Add(this.solutionGenerationTextBox);
135      this.parametersTabPage.Controls.Add(this.problemInitializationTextBox);
136      this.parametersTabPage.Controls.Add(this.setRandomSeedRandomlyCheckBox);
137      this.parametersTabPage.Controls.Add(this.evaluationLabel);
138      this.parametersTabPage.Controls.Add(this.mutationLabel);
139      this.parametersTabPage.Controls.Add(this.annealingSchemaLabel);
140      this.parametersTabPage.Controls.Add(this.solutionGenerationLabel);
141      this.parametersTabPage.Controls.Add(this.problemInitializationLabel);
142      this.parametersTabPage.Controls.Add(this.temperatureTextBox);
143      this.parametersTabPage.Controls.Add(this.temperatureLabel);
144      this.parametersTabPage.Controls.Add(this.maximumIterationEffortTextBox);
145      this.parametersTabPage.Controls.Add(this.maximumIterationEffortLabel);
146      this.parametersTabPage.Controls.Add(this.randomSeedTextBox);
147      this.parametersTabPage.Controls.Add(this.maximumIterationsTextBox);
148      this.parametersTabPage.Controls.Add(this.setRandomSeedRandomlyLabel);
149      this.parametersTabPage.Controls.Add(this.randomSeedLabel);
150      this.parametersTabPage.Controls.Add(this.maximumIterationsLabel);
151      this.parametersTabPage.Location = new System.Drawing.Point(4, 22);
152      this.parametersTabPage.Name = "parametersTabPage";
153      this.parametersTabPage.Padding = new System.Windows.Forms.Padding(3);
154      this.parametersTabPage.Size = new System.Drawing.Size(465, 338);
155      this.parametersTabPage.TabIndex = 0;
156      this.parametersTabPage.Text = "Parameters";
157      this.parametersTabPage.UseVisualStyleBackColor = true;
158      //
159      // setEvaluationButton
160      //
161      this.setEvaluationButton.Anchor = System.Windows.Forms.AnchorStyles.None;
162      this.setEvaluationButton.Location = new System.Drawing.Point(410, 303);
163      this.setEvaluationButton.Name = "setEvaluationButton";
164      this.setEvaluationButton.Size = new System.Drawing.Size(43, 20);
165      this.setEvaluationButton.TabIndex = 29;
166      this.setEvaluationButton.Text = "Set...";
167      this.setEvaluationButton.UseVisualStyleBackColor = true;
168      this.setEvaluationButton.Click += new System.EventHandler(this.setEvaluationButton_Click);
169      //
170      // setMutationButton
171      //
172      this.setMutationButton.Anchor = System.Windows.Forms.AnchorStyles.None;
173      this.setMutationButton.Location = new System.Drawing.Point(410, 277);
174      this.setMutationButton.Name = "setMutationButton";
175      this.setMutationButton.Size = new System.Drawing.Size(43, 20);
176      this.setMutationButton.TabIndex = 25;
177      this.setMutationButton.Text = "Set...";
178      this.setMutationButton.UseVisualStyleBackColor = true;
179      this.setMutationButton.Click += new System.EventHandler(this.setMutationButton_Click);
180      //
181      // setAnnealingSchemeButton
182      //
183      this.setAnnealingSchemeButton.Anchor = System.Windows.Forms.AnchorStyles.None;
184      this.setAnnealingSchemeButton.Location = new System.Drawing.Point(410, 251);
185      this.setAnnealingSchemeButton.Name = "setAnnealingSchemeButton";
186      this.setAnnealingSchemeButton.Size = new System.Drawing.Size(43, 20);
187      this.setAnnealingSchemeButton.TabIndex = 21;
188      this.setAnnealingSchemeButton.Text = "Set...";
189      this.setAnnealingSchemeButton.UseVisualStyleBackColor = true;
190      this.setAnnealingSchemeButton.Click += new System.EventHandler(this.setAnnealingSchemeButton_Click);
191      //
192      // setSolutionGenerationButton
193      //
194      this.setSolutionGenerationButton.Anchor = System.Windows.Forms.AnchorStyles.None;
195      this.setSolutionGenerationButton.Location = new System.Drawing.Point(410, 225);
196      this.setSolutionGenerationButton.Name = "setSolutionGenerationButton";
197      this.setSolutionGenerationButton.Size = new System.Drawing.Size(43, 20);
198      this.setSolutionGenerationButton.TabIndex = 17;
199      this.setSolutionGenerationButton.Text = "Set...";
200      this.setSolutionGenerationButton.UseVisualStyleBackColor = true;
201      this.setSolutionGenerationButton.Click += new System.EventHandler(this.setSolutionGenerationButton_Click);
202      //
203      // viewEvaluationButton
204      //
205      this.viewEvaluationButton.Anchor = System.Windows.Forms.AnchorStyles.None;
206      this.viewEvaluationButton.Location = new System.Drawing.Point(351, 303);
207      this.viewEvaluationButton.Name = "viewEvaluationButton";
208      this.viewEvaluationButton.Size = new System.Drawing.Size(53, 20);
209      this.viewEvaluationButton.TabIndex = 28;
210      this.viewEvaluationButton.Text = "View...";
211      this.viewEvaluationButton.UseVisualStyleBackColor = true;
212      this.viewEvaluationButton.Click += new System.EventHandler(this.viewEvaluationButton_Click);
213      //
214      // viewMutationButton
215      //
216      this.viewMutationButton.Anchor = System.Windows.Forms.AnchorStyles.None;
217      this.viewMutationButton.Location = new System.Drawing.Point(351, 277);
218      this.viewMutationButton.Name = "viewMutationButton";
219      this.viewMutationButton.Size = new System.Drawing.Size(53, 20);
220      this.viewMutationButton.TabIndex = 24;
221      this.viewMutationButton.Text = "View...";
222      this.viewMutationButton.UseVisualStyleBackColor = true;
223      this.viewMutationButton.Click += new System.EventHandler(this.viewMutationButton_Click);
224      //
225      // viewAnnealingSchemeButton
226      //
227      this.viewAnnealingSchemeButton.Anchor = System.Windows.Forms.AnchorStyles.None;
228      this.viewAnnealingSchemeButton.Location = new System.Drawing.Point(351, 251);
229      this.viewAnnealingSchemeButton.Name = "viewAnnealingSchemeButton";
230      this.viewAnnealingSchemeButton.Size = new System.Drawing.Size(53, 20);
231      this.viewAnnealingSchemeButton.TabIndex = 20;
232      this.viewAnnealingSchemeButton.Text = "View...";
233      this.viewAnnealingSchemeButton.UseVisualStyleBackColor = true;
234      this.viewAnnealingSchemeButton.Click += new System.EventHandler(this.viewAnnealingSchemeButton_Click);
235      //
236      // viewSolutionGenerationButton
237      //
238      this.viewSolutionGenerationButton.Anchor = System.Windows.Forms.AnchorStyles.None;
239      this.viewSolutionGenerationButton.Location = new System.Drawing.Point(351, 225);
240      this.viewSolutionGenerationButton.Name = "viewSolutionGenerationButton";
241      this.viewSolutionGenerationButton.Size = new System.Drawing.Size(53, 20);
242      this.viewSolutionGenerationButton.TabIndex = 16;
243      this.viewSolutionGenerationButton.Text = "View...";
244      this.viewSolutionGenerationButton.UseVisualStyleBackColor = true;
245      this.viewSolutionGenerationButton.Click += new System.EventHandler(this.viewSolutionGenerationButton_Click);
246      //
247      // viewProblemInitializationButton
248      //
249      this.viewProblemInitializationButton.Anchor = System.Windows.Forms.AnchorStyles.None;
250      this.viewProblemInitializationButton.Location = new System.Drawing.Point(351, 199);
251      this.viewProblemInitializationButton.Name = "viewProblemInitializationButton";
252      this.viewProblemInitializationButton.Size = new System.Drawing.Size(53, 20);
253      this.viewProblemInitializationButton.TabIndex = 12;
254      this.viewProblemInitializationButton.Text = "View...";
255      this.viewProblemInitializationButton.UseVisualStyleBackColor = true;
256      this.viewProblemInitializationButton.Click += new System.EventHandler(this.viewProblemInitializationButton_Click);
257      //
258      // setProblemInitializationButton
259      //
260      this.setProblemInitializationButton.Anchor = System.Windows.Forms.AnchorStyles.None;
261      this.setProblemInitializationButton.Location = new System.Drawing.Point(410, 199);
262      this.setProblemInitializationButton.Name = "setProblemInitializationButton";
263      this.setProblemInitializationButton.Size = new System.Drawing.Size(43, 20);
264      this.setProblemInitializationButton.TabIndex = 13;
265      this.setProblemInitializationButton.Text = "Set...";
266      this.setProblemInitializationButton.UseVisualStyleBackColor = true;
267      this.setProblemInitializationButton.Click += new System.EventHandler(this.setProblemInitializationButton_Click);
268      //
269      // evaluationTextBox
270      //
271      this.evaluationTextBox.Anchor = System.Windows.Forms.AnchorStyles.None;
272      this.evaluationTextBox.Location = new System.Drawing.Point(159, 303);
273      this.evaluationTextBox.Name = "evaluationTextBox";
274      this.evaluationTextBox.ReadOnly = true;
275      this.evaluationTextBox.Size = new System.Drawing.Size(186, 20);
276      this.evaluationTextBox.TabIndex = 27;
277      //
278      // mutationTextBox
279      //
280      this.mutationTextBox.Anchor = System.Windows.Forms.AnchorStyles.None;
281      this.mutationTextBox.Location = new System.Drawing.Point(159, 277);
282      this.mutationTextBox.Name = "mutationTextBox";
283      this.mutationTextBox.ReadOnly = true;
284      this.mutationTextBox.Size = new System.Drawing.Size(186, 20);
285      this.mutationTextBox.TabIndex = 23;
286      //
287      // annealingSchemaTextBox
288      //
289      this.annealingSchemaTextBox.Anchor = System.Windows.Forms.AnchorStyles.None;
290      this.annealingSchemaTextBox.Location = new System.Drawing.Point(159, 251);
291      this.annealingSchemaTextBox.Name = "annealingSchemaTextBox";
292      this.annealingSchemaTextBox.ReadOnly = true;
293      this.annealingSchemaTextBox.Size = new System.Drawing.Size(186, 20);
294      this.annealingSchemaTextBox.TabIndex = 19;
295      //
296      // solutionGenerationTextBox
297      //
298      this.solutionGenerationTextBox.Anchor = System.Windows.Forms.AnchorStyles.None;
299      this.solutionGenerationTextBox.Location = new System.Drawing.Point(159, 225);
300      this.solutionGenerationTextBox.Name = "solutionGenerationTextBox";
301      this.solutionGenerationTextBox.ReadOnly = true;
302      this.solutionGenerationTextBox.Size = new System.Drawing.Size(186, 20);
303      this.solutionGenerationTextBox.TabIndex = 15;
304      //
305      // problemInitializationTextBox
306      //
307      this.problemInitializationTextBox.Anchor = System.Windows.Forms.AnchorStyles.None;
308      this.problemInitializationTextBox.Location = new System.Drawing.Point(159, 199);
309      this.problemInitializationTextBox.Name = "problemInitializationTextBox";
310      this.problemInitializationTextBox.ReadOnly = true;
311      this.problemInitializationTextBox.Size = new System.Drawing.Size(186, 20);
312      this.problemInitializationTextBox.TabIndex = 11;
313      //
314      // setRandomSeedRandomlyCheckBox
315      //
316      this.setRandomSeedRandomlyCheckBox.Anchor = System.Windows.Forms.AnchorStyles.None;
317      this.setRandomSeedRandomlyCheckBox.AutoSize = true;
318      this.setRandomSeedRandomlyCheckBox.Location = new System.Drawing.Point(159, 21);
319      this.setRandomSeedRandomlyCheckBox.Name = "setRandomSeedRandomlyCheckBox";
320      this.setRandomSeedRandomlyCheckBox.Size = new System.Drawing.Size(15, 14);
321      this.setRandomSeedRandomlyCheckBox.TabIndex = 1;
322      this.setRandomSeedRandomlyCheckBox.UseVisualStyleBackColor = true;
323      //
324      // evaluationLabel
325      //
326      this.evaluationLabel.Anchor = System.Windows.Forms.AnchorStyles.None;
327      this.evaluationLabel.AutoSize = true;
328      this.evaluationLabel.Location = new System.Drawing.Point(6, 306);
329      this.evaluationLabel.Name = "evaluationLabel";
330      this.evaluationLabel.Size = new System.Drawing.Size(60, 13);
331      this.evaluationLabel.TabIndex = 26;
332      this.evaluationLabel.Text = "&Evaluation:";
333      //
334      // mutationLabel
335      //
336      this.mutationLabel.Anchor = System.Windows.Forms.AnchorStyles.None;
337      this.mutationLabel.AutoSize = true;
338      this.mutationLabel.Location = new System.Drawing.Point(6, 280);
339      this.mutationLabel.Name = "mutationLabel";
340      this.mutationLabel.Size = new System.Drawing.Size(51, 13);
341      this.mutationLabel.TabIndex = 22;
342      this.mutationLabel.Text = "&Mutation:";
343      //
344      // annealingSchemaLabel
345      //
346      this.annealingSchemaLabel.Anchor = System.Windows.Forms.AnchorStyles.None;
347      this.annealingSchemaLabel.AutoSize = true;
348      this.annealingSchemaLabel.Location = new System.Drawing.Point(6, 254);
349      this.annealingSchemaLabel.Name = "annealingSchemaLabel";
350      this.annealingSchemaLabel.Size = new System.Drawing.Size(99, 13);
351      this.annealingSchemaLabel.TabIndex = 18;
352      this.annealingSchemaLabel.Text = "Annealing Scheme:";
353      //
354      // solutionGenerationLabel
355      //
356      this.solutionGenerationLabel.Anchor = System.Windows.Forms.AnchorStyles.None;
357      this.solutionGenerationLabel.AutoSize = true;
358      this.solutionGenerationLabel.Location = new System.Drawing.Point(6, 228);
359      this.solutionGenerationLabel.Name = "solutionGenerationLabel";
360      this.solutionGenerationLabel.Size = new System.Drawing.Size(103, 13);
361      this.solutionGenerationLabel.TabIndex = 14;
362      this.solutionGenerationLabel.Text = "&Solution Generation:";
363      //
364      // problemInitializationLabel
365      //
366      this.problemInitializationLabel.Anchor = System.Windows.Forms.AnchorStyles.None;
367      this.problemInitializationLabel.AutoSize = true;
368      this.problemInitializationLabel.Location = new System.Drawing.Point(6, 202);
369      this.problemInitializationLabel.Name = "problemInitializationLabel";
370      this.problemInitializationLabel.Size = new System.Drawing.Size(105, 13);
371      this.problemInitializationLabel.TabIndex = 10;
372      this.problemInitializationLabel.Text = "&Problem Initialization:";
373      //
374      // temperatureTextBox
375      //
376      this.temperatureTextBox.Anchor = System.Windows.Forms.AnchorStyles.None;
377      this.temperatureTextBox.Location = new System.Drawing.Point(159, 132);
378      this.temperatureTextBox.Name = "temperatureTextBox";
379      this.temperatureTextBox.Size = new System.Drawing.Size(186, 20);
380      this.temperatureTextBox.TabIndex = 9;
381      //
382      // temperatureLabel
383      //
384      this.temperatureLabel.Anchor = System.Windows.Forms.AnchorStyles.None;
385      this.temperatureLabel.AutoSize = true;
386      this.temperatureLabel.Location = new System.Drawing.Point(6, 135);
387      this.temperatureLabel.Name = "temperatureLabel";
388      this.temperatureLabel.Size = new System.Drawing.Size(70, 13);
389      this.temperatureLabel.TabIndex = 8;
390      this.temperatureLabel.Text = "Temperature:";
391      //
392      // maximumIterationEffortTextBox
393      //
394      this.maximumIterationEffortTextBox.Anchor = System.Windows.Forms.AnchorStyles.None;
395      this.maximumIterationEffortTextBox.Location = new System.Drawing.Point(159, 106);
396      this.maximumIterationEffortTextBox.Name = "maximumIterationEffortTextBox";
397      this.maximumIterationEffortTextBox.Size = new System.Drawing.Size(186, 20);
398      this.maximumIterationEffortTextBox.TabIndex = 7;
399      //
400      // maximumIterationEffortLabel
401      //
402      this.maximumIterationEffortLabel.Anchor = System.Windows.Forms.AnchorStyles.None;
403      this.maximumIterationEffortLabel.AutoSize = true;
404      this.maximumIterationEffortLabel.Location = new System.Drawing.Point(6, 109);
405      this.maximumIterationEffortLabel.Name = "maximumIterationEffortLabel";
406      this.maximumIterationEffortLabel.Size = new System.Drawing.Size(141, 13);
407      this.maximumIterationEffortLabel.TabIndex = 6;
408      this.maximumIterationEffortLabel.Text = "Maximum Effort per Iteration:";
409      //
410      // randomSeedTextBox
411      //
412      this.randomSeedTextBox.Anchor = System.Windows.Forms.AnchorStyles.None;
413      this.randomSeedTextBox.Location = new System.Drawing.Point(159, 41);
414      this.randomSeedTextBox.Name = "randomSeedTextBox";
415      this.randomSeedTextBox.Size = new System.Drawing.Size(186, 20);
416      this.randomSeedTextBox.TabIndex = 3;
417      //
418      // maximumIterationsTextBox
419      //
420      this.maximumIterationsTextBox.Anchor = System.Windows.Forms.AnchorStyles.None;
421      this.maximumIterationsTextBox.Location = new System.Drawing.Point(159, 80);
422      this.maximumIterationsTextBox.Name = "maximumIterationsTextBox";
423      this.maximumIterationsTextBox.Size = new System.Drawing.Size(186, 20);
424      this.maximumIterationsTextBox.TabIndex = 5;
425      //
426      // setRandomSeedRandomlyLabel
427      //
428      this.setRandomSeedRandomlyLabel.Anchor = System.Windows.Forms.AnchorStyles.None;
429      this.setRandomSeedRandomlyLabel.AutoSize = true;
430      this.setRandomSeedRandomlyLabel.Location = new System.Drawing.Point(6, 21);
431      this.setRandomSeedRandomlyLabel.Name = "setRandomSeedRandomlyLabel";
432      this.setRandomSeedRandomlyLabel.Size = new System.Drawing.Size(147, 13);
433      this.setRandomSeedRandomlyLabel.TabIndex = 0;
434      this.setRandomSeedRandomlyLabel.Text = "Set &Random Seed Randomly:";
435      //
436      // randomSeedLabel
437      //
438      this.randomSeedLabel.Anchor = System.Windows.Forms.AnchorStyles.None;
439      this.randomSeedLabel.AutoSize = true;
440      this.randomSeedLabel.Location = new System.Drawing.Point(6, 44);
441      this.randomSeedLabel.Name = "randomSeedLabel";
442      this.randomSeedLabel.Size = new System.Drawing.Size(78, 13);
443      this.randomSeedLabel.TabIndex = 2;
444      this.randomSeedLabel.Text = "&Random Seed:";
445      //
446      // maximumIterationsLabel
447      //
448      this.maximumIterationsLabel.Anchor = System.Windows.Forms.AnchorStyles.None;
449      this.maximumIterationsLabel.AutoSize = true;
450      this.maximumIterationsLabel.Location = new System.Drawing.Point(6, 83);
451      this.maximumIterationsLabel.Name = "maximumIterationsLabel";
452      this.maximumIterationsLabel.Size = new System.Drawing.Size(100, 13);
453      this.maximumIterationsLabel.TabIndex = 4;
454      this.maximumIterationsLabel.Text = "Maximum Iterations:";
455      //
456      // scopesTabPage
457      //
458      this.scopesTabPage.Controls.Add(this.scopeView);
459      this.scopesTabPage.Location = new System.Drawing.Point(4, 22);
460      this.scopesTabPage.Name = "scopesTabPage";
461      this.scopesTabPage.Padding = new System.Windows.Forms.Padding(3);
462      this.scopesTabPage.Size = new System.Drawing.Size(518, 307);
463      this.scopesTabPage.TabIndex = 2;
464      this.scopesTabPage.Text = "Scopes";
465      this.scopesTabPage.UseVisualStyleBackColor = true;
466      //
467      // scopeView
468      //
469      this.scopeView.Caption = "Scope";
470      this.scopeView.Dock = System.Windows.Forms.DockStyle.Fill;
471      this.scopeView.Location = new System.Drawing.Point(3, 3);
472      this.scopeView.Name = "scopeView";
473      this.scopeView.Scope = null;
474      this.scopeView.Size = new System.Drawing.Size(512, 301);
475      this.scopeView.TabIndex = 0;
476      //
477      // abortButton
478      //
479      this.abortButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
480      this.abortButton.Enabled = false;
481      this.abortButton.Location = new System.Drawing.Point(81, 370);
482      this.abortButton.Name = "abortButton";
483      this.abortButton.Size = new System.Drawing.Size(75, 23);
484      this.abortButton.TabIndex = 2;
485      this.abortButton.Text = "&Abort";
486      this.abortButton.UseVisualStyleBackColor = true;
487      this.abortButton.Click += new System.EventHandler(this.abortButton_Click);
488      //
489      // resetButton
490      //
491      this.resetButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
492      this.resetButton.Location = new System.Drawing.Point(162, 370);
493      this.resetButton.Name = "resetButton";
494      this.resetButton.Size = new System.Drawing.Size(75, 23);
495      this.resetButton.TabIndex = 3;
496      this.resetButton.Text = "&Reset";
497      this.resetButton.UseVisualStyleBackColor = true;
498      this.resetButton.Click += new System.EventHandler(this.resetButton_Click);
499      //
500      // cloneEngineButton
501      //
502      this.cloneEngineButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
503      this.cloneEngineButton.Location = new System.Drawing.Point(367, 370);
504      this.cloneEngineButton.Name = "cloneEngineButton";
505      this.cloneEngineButton.Size = new System.Drawing.Size(106, 23);
506      this.cloneEngineButton.TabIndex = 4;
507      this.cloneEngineButton.Text = "&Clone Engine...";
508      this.cloneEngineButton.UseVisualStyleBackColor = true;
509      this.cloneEngineButton.Click += new System.EventHandler(this.cloneEngineButton_Click);
510      //
511      // annealingParameterTextBox
512      //
513      this.annealingParameterTextBox.Anchor = System.Windows.Forms.AnchorStyles.None;
514      this.annealingParameterTextBox.Location = new System.Drawing.Point(159, 158);
515      this.annealingParameterTextBox.Name = "annealingParameterTextBox";
516      this.annealingParameterTextBox.Size = new System.Drawing.Size(186, 20);
517      this.annealingParameterTextBox.TabIndex = 31;
518      //
519      // annealingParameterLabel
520      //
521      this.annealingParameterLabel.Anchor = System.Windows.Forms.AnchorStyles.None;
522      this.annealingParameterLabel.AutoSize = true;
523      this.annealingParameterLabel.Location = new System.Drawing.Point(6, 161);
524      this.annealingParameterLabel.Name = "annealingParameterLabel";
525      this.annealingParameterLabel.Size = new System.Drawing.Size(108, 13);
526      this.annealingParameterLabel.TabIndex = 30;
527      this.annealingParameterLabel.Text = "Annealing Parameter:";
528      //
529      // SAEditor
530      //
531      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
532      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
533      this.Controls.Add(this.tabControl);
534      this.Controls.Add(this.cloneEngineButton);
535      this.Controls.Add(this.resetButton);
536      this.Controls.Add(this.abortButton);
537      this.Controls.Add(this.executeButton);
538      this.Name = "SAEditor";
539      this.Size = new System.Drawing.Size(473, 393);
540      this.tabControl.ResumeLayout(false);
541      this.parametersTabPage.ResumeLayout(false);
542      this.parametersTabPage.PerformLayout();
543      this.scopesTabPage.ResumeLayout(false);
544      this.ResumeLayout(false);
545
546    }
547
548    #endregion
549
550    private System.Windows.Forms.Button executeButton;
551    private System.Windows.Forms.TabControl tabControl;
552    private System.Windows.Forms.TabPage parametersTabPage;
553    private System.Windows.Forms.Button abortButton;
554    private System.Windows.Forms.Button resetButton;
555    private System.Windows.Forms.TextBox temperatureTextBox;
556    private System.Windows.Forms.Label temperatureLabel;
557    private System.Windows.Forms.TextBox maximumIterationsTextBox;
558    private System.Windows.Forms.Label maximumIterationsLabel;
559    private System.Windows.Forms.TabPage scopesTabPage;
560    private System.Windows.Forms.TextBox maximumIterationEffortTextBox;
561    private System.Windows.Forms.Label maximumIterationEffortLabel;
562    private System.Windows.Forms.TextBox randomSeedTextBox;
563    private System.Windows.Forms.Label setRandomSeedRandomlyLabel;
564    private System.Windows.Forms.Label randomSeedLabel;
565    private System.Windows.Forms.CheckBox setRandomSeedRandomlyCheckBox;
566    private System.Windows.Forms.Label problemInitializationLabel;
567    private System.Windows.Forms.Label evaluationLabel;
568    private System.Windows.Forms.Label mutationLabel;
569    private System.Windows.Forms.Label solutionGenerationLabel;
570    private System.Windows.Forms.Button cloneEngineButton;
571    private System.Windows.Forms.TextBox mutationTextBox;
572    private System.Windows.Forms.TextBox annealingSchemaTextBox;
573    private System.Windows.Forms.TextBox solutionGenerationTextBox;
574    private System.Windows.Forms.TextBox problemInitializationTextBox;
575    private System.Windows.Forms.Label annealingSchemaLabel;
576    private System.Windows.Forms.TextBox evaluationTextBox;
577    private System.Windows.Forms.Button setProblemInitializationButton;
578    private System.Windows.Forms.Button setEvaluationButton;
579    private System.Windows.Forms.Button setMutationButton;
580    private System.Windows.Forms.Button setAnnealingSchemeButton;
581    private System.Windows.Forms.Button setSolutionGenerationButton;
582    private HeuristicLab.Core.ScopeView scopeView;
583    private System.Windows.Forms.Button viewEvaluationButton;
584    private System.Windows.Forms.Button viewMutationButton;
585    private System.Windows.Forms.Button viewAnnealingSchemeButton;
586    private System.Windows.Forms.Button viewSolutionGenerationButton;
587    private System.Windows.Forms.Button viewProblemInitializationButton;
588    private System.Windows.Forms.TextBox annealingParameterTextBox;
589    private System.Windows.Forms.Label annealingParameterLabel;
590  }
591}
Note: See TracBrowser for help on using the repository browser.