Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.SGA/3.3/SGAView.Designer.cs @ 2546

Last change on this file since 2546 was 2546, checked in by swagner, 14 years ago

Continued work on Optimizer and on adapting all views to the new MainForm concept (#770)

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