Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.ES/ESEditor.Designer.cs @ 71

Last change on this file since 71 was 71, checked in by abeham, 16 years ago

Added SGA-like ES interface (ref ticket #18)

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