Free cookie consent management tool by TermsFeed Policy Generator

source: branches/CEDMA-Refactoring-Ticket419/HeuristicLab.GP.StructureIdentification/OffSpringSelectionGpEditor.Designer.cs @ 1262

Last change on this file since 1262 was 1262, checked in by gkronber, 15 years ago

Fixed a few issues in persistence of hard-coded GP algorithms. #224 (Simple frontend for GP for non-expert users (similar to HeurisicLab.SGA))

File size: 20.9 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.GP.StructureIdentification {
23  partial class OffspringSelectionGpEditor {
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.selectionPressureTextBox = new System.Windows.Forms.TextBox();
52      this.selectionPressureLabel = new System.Windows.Forms.Label();
53      this.viewProblemInitializationButton = new System.Windows.Forms.Button();
54      this.setProblemInitializationButton = new System.Windows.Forms.Button();
55      this.problemInitializationTextBox = new System.Windows.Forms.TextBox();
56      this.setRandomSeedRandomlyCheckBox = new System.Windows.Forms.CheckBox();
57      this.elitesTextBox = new System.Windows.Forms.TextBox();
58      this.problemInitializationLabel = new System.Windows.Forms.Label();
59      this.elitesLabel = new System.Windows.Forms.Label();
60      this.mutationRateTextBox = new System.Windows.Forms.TextBox();
61      this.mutationRateLabel = new System.Windows.Forms.Label();
62      this.maximumEvaluatedSolutionsTextBox = new System.Windows.Forms.TextBox();
63      this.maxEvaluatedSolutionsLabel = new System.Windows.Forms.Label();
64      this.randomSeedTextBox = new System.Windows.Forms.TextBox();
65      this.populationSizeTextBox = new System.Windows.Forms.TextBox();
66      this.setRandomSeedRandomlyLabel = new System.Windows.Forms.Label();
67      this.randomSeedLabel = new System.Windows.Forms.Label();
68      this.populationSizeLabel = new System.Windows.Forms.Label();
69      this.scopesTabPage = new System.Windows.Forms.TabPage();
70      this.scopeView = new HeuristicLab.Core.ScopeView();
71      this.abortButton = new System.Windows.Forms.Button();
72      this.resetButton = new System.Windows.Forms.Button();
73      this.cloneEngineButton = new System.Windows.Forms.Button();
74      this.tabControl.SuspendLayout();
75      this.parametersTabPage.SuspendLayout();
76      this.scopesTabPage.SuspendLayout();
77      this.SuspendLayout();
78      //
79      // executeButton
80      //
81      this.executeButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
82      this.executeButton.Location = new System.Drawing.Point(0, 396);
83      this.executeButton.Name = "executeButton";
84      this.executeButton.Size = new System.Drawing.Size(75, 23);
85      this.executeButton.TabIndex = 1;
86      this.executeButton.Text = "&Execute";
87      this.executeButton.UseVisualStyleBackColor = true;
88      this.executeButton.Click += new System.EventHandler(this.executeButton_Click);
89      //
90      // tabControl
91      //
92      this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
93                  | System.Windows.Forms.AnchorStyles.Left)
94                  | System.Windows.Forms.AnchorStyles.Right)));
95      this.tabControl.Controls.Add(this.parametersTabPage);
96      this.tabControl.Controls.Add(this.scopesTabPage);
97      this.tabControl.Location = new System.Drawing.Point(0, 0);
98      this.tabControl.Name = "tabControl";
99      this.tabControl.SelectedIndex = 0;
100      this.tabControl.Size = new System.Drawing.Size(526, 390);
101      this.tabControl.TabIndex = 0;
102      //
103      // parametersTabPage
104      //
105      this.parametersTabPage.Controls.Add(this.selectionPressureTextBox);
106      this.parametersTabPage.Controls.Add(this.selectionPressureLabel);
107      this.parametersTabPage.Controls.Add(this.viewProblemInitializationButton);
108      this.parametersTabPage.Controls.Add(this.setProblemInitializationButton);
109      this.parametersTabPage.Controls.Add(this.problemInitializationTextBox);
110      this.parametersTabPage.Controls.Add(this.setRandomSeedRandomlyCheckBox);
111      this.parametersTabPage.Controls.Add(this.elitesTextBox);
112      this.parametersTabPage.Controls.Add(this.problemInitializationLabel);
113      this.parametersTabPage.Controls.Add(this.elitesLabel);
114      this.parametersTabPage.Controls.Add(this.mutationRateTextBox);
115      this.parametersTabPage.Controls.Add(this.mutationRateLabel);
116      this.parametersTabPage.Controls.Add(this.maximumEvaluatedSolutionsTextBox);
117      this.parametersTabPage.Controls.Add(this.maxEvaluatedSolutionsLabel);
118      this.parametersTabPage.Controls.Add(this.randomSeedTextBox);
119      this.parametersTabPage.Controls.Add(this.populationSizeTextBox);
120      this.parametersTabPage.Controls.Add(this.setRandomSeedRandomlyLabel);
121      this.parametersTabPage.Controls.Add(this.randomSeedLabel);
122      this.parametersTabPage.Controls.Add(this.populationSizeLabel);
123      this.parametersTabPage.Location = new System.Drawing.Point(4, 22);
124      this.parametersTabPage.Name = "parametersTabPage";
125      this.parametersTabPage.Padding = new System.Windows.Forms.Padding(3);
126      this.parametersTabPage.Size = new System.Drawing.Size(518, 364);
127      this.parametersTabPage.TabIndex = 0;
128      this.parametersTabPage.Text = "Parameters";
129      this.parametersTabPage.UseVisualStyleBackColor = true;
130      //
131      // selectionPressureTextBox
132      //
133      this.selectionPressureTextBox.Anchor = System.Windows.Forms.AnchorStyles.None;
134      this.selectionPressureTextBox.Location = new System.Drawing.Point(218, 130);
135      this.selectionPressureTextBox.Name = "selectionPressureTextBox";
136      this.selectionPressureTextBox.Size = new System.Drawing.Size(186, 20);
137      this.selectionPressureTextBox.TabIndex = 17;
138      //
139      // selectionPressureLabel
140      //
141      this.selectionPressureLabel.Anchor = System.Windows.Forms.AnchorStyles.None;
142      this.selectionPressureLabel.AutoSize = true;
143      this.selectionPressureLabel.Location = new System.Drawing.Point(65, 133);
144      this.selectionPressureLabel.Name = "selectionPressureLabel";
145      this.selectionPressureLabel.Size = new System.Drawing.Size(145, 13);
146      this.selectionPressureLabel.TabIndex = 16;
147      this.selectionPressureLabel.Text = "Maximum &Selection Pressure:";
148      //
149      // viewProblemInitializationButton
150      //
151      this.viewProblemInitializationButton.Anchor = System.Windows.Forms.AnchorStyles.None;
152      this.viewProblemInitializationButton.Location = new System.Drawing.Point(410, 241);
153      this.viewProblemInitializationButton.Name = "viewProblemInitializationButton";
154      this.viewProblemInitializationButton.Size = new System.Drawing.Size(53, 20);
155      this.viewProblemInitializationButton.TabIndex = 14;
156      this.viewProblemInitializationButton.Text = "View...";
157      this.viewProblemInitializationButton.UseVisualStyleBackColor = true;
158      this.viewProblemInitializationButton.Click += new System.EventHandler(this.viewProblemInjectorButton_Click);
159      //
160      // setProblemInitializationButton
161      //
162      this.setProblemInitializationButton.Anchor = System.Windows.Forms.AnchorStyles.None;
163      this.setProblemInitializationButton.Location = new System.Drawing.Point(469, 241);
164      this.setProblemInitializationButton.Name = "setProblemInitializationButton";
165      this.setProblemInitializationButton.Size = new System.Drawing.Size(43, 20);
166      this.setProblemInitializationButton.TabIndex = 15;
167      this.setProblemInitializationButton.Text = "Set...";
168      this.setProblemInitializationButton.UseVisualStyleBackColor = true;
169      this.setProblemInitializationButton.Click += new System.EventHandler(this.setProblemInitializationButton_Click);
170      //
171      // problemInitializationTextBox
172      //
173      this.problemInitializationTextBox.Anchor = System.Windows.Forms.AnchorStyles.None;
174      this.problemInitializationTextBox.Location = new System.Drawing.Point(218, 241);
175      this.problemInitializationTextBox.Name = "problemInitializationTextBox";
176      this.problemInitializationTextBox.ReadOnly = true;
177      this.problemInitializationTextBox.Size = new System.Drawing.Size(186, 20);
178      this.problemInitializationTextBox.TabIndex = 13;
179      //
180      // setRandomSeedRandomlyCheckBox
181      //
182      this.setRandomSeedRandomlyCheckBox.Anchor = System.Windows.Forms.AnchorStyles.None;
183      this.setRandomSeedRandomlyCheckBox.AutoSize = true;
184      this.setRandomSeedRandomlyCheckBox.Location = new System.Drawing.Point(218, 6);
185      this.setRandomSeedRandomlyCheckBox.Name = "setRandomSeedRandomlyCheckBox";
186      this.setRandomSeedRandomlyCheckBox.Size = new System.Drawing.Size(15, 14);
187      this.setRandomSeedRandomlyCheckBox.TabIndex = 1;
188      this.setRandomSeedRandomlyCheckBox.UseVisualStyleBackColor = true;
189      this.setRandomSeedRandomlyCheckBox.CheckedChanged += new System.EventHandler(this.setRandomSeedRandomlyCheckBox_CheckedChanged);
190      //
191      // elitesTextBox
192      //
193      this.elitesTextBox.Anchor = System.Windows.Forms.AnchorStyles.None;
194      this.elitesTextBox.Location = new System.Drawing.Point(218, 182);
195      this.elitesTextBox.Name = "elitesTextBox";
196      this.elitesTextBox.Size = new System.Drawing.Size(186, 20);
197      this.elitesTextBox.TabIndex = 11;
198      //
199      // problemInitializationLabel
200      //
201      this.problemInitializationLabel.Anchor = System.Windows.Forms.AnchorStyles.None;
202      this.problemInitializationLabel.AutoSize = true;
203      this.problemInitializationLabel.Location = new System.Drawing.Point(65, 244);
204      this.problemInitializationLabel.Name = "problemInitializationLabel";
205      this.problemInitializationLabel.Size = new System.Drawing.Size(105, 13);
206      this.problemInitializationLabel.TabIndex = 12;
207      this.problemInitializationLabel.Text = "&Problem Initialization:";
208      //
209      // elitesLabel
210      //
211      this.elitesLabel.Anchor = System.Windows.Forms.AnchorStyles.None;
212      this.elitesLabel.AutoSize = true;
213      this.elitesLabel.Location = new System.Drawing.Point(66, 185);
214      this.elitesLabel.Name = "elitesLabel";
215      this.elitesLabel.Size = new System.Drawing.Size(35, 13);
216      this.elitesLabel.TabIndex = 10;
217      this.elitesLabel.Text = "&Elites:";
218      //
219      // mutationRateTextBox
220      //
221      this.mutationRateTextBox.Anchor = System.Windows.Forms.AnchorStyles.None;
222      this.mutationRateTextBox.Location = new System.Drawing.Point(218, 156);
223      this.mutationRateTextBox.Name = "mutationRateTextBox";
224      this.mutationRateTextBox.Size = new System.Drawing.Size(186, 20);
225      this.mutationRateTextBox.TabIndex = 9;
226      //
227      // mutationRateLabel
228      //
229      this.mutationRateLabel.Anchor = System.Windows.Forms.AnchorStyles.None;
230      this.mutationRateLabel.AutoSize = true;
231      this.mutationRateLabel.Location = new System.Drawing.Point(66, 159);
232      this.mutationRateLabel.Name = "mutationRateLabel";
233      this.mutationRateLabel.Size = new System.Drawing.Size(77, 13);
234      this.mutationRateLabel.TabIndex = 8;
235      this.mutationRateLabel.Text = "&Mutation Rate:";
236      //
237      // maximumEvaluatedSolutionsTextBox
238      //
239      this.maximumEvaluatedSolutionsTextBox.Anchor = System.Windows.Forms.AnchorStyles.None;
240      this.maximumEvaluatedSolutionsTextBox.Location = new System.Drawing.Point(218, 104);
241      this.maximumEvaluatedSolutionsTextBox.Name = "maximumEvaluatedSolutionsTextBox";
242      this.maximumEvaluatedSolutionsTextBox.Size = new System.Drawing.Size(186, 20);
243      this.maximumEvaluatedSolutionsTextBox.TabIndex = 7;
244      //
245      // maxEvaluatedSolutionsLabel
246      //
247      this.maxEvaluatedSolutionsLabel.Anchor = System.Windows.Forms.AnchorStyles.None;
248      this.maxEvaluatedSolutionsLabel.AutoSize = true;
249      this.maxEvaluatedSolutionsLabel.Location = new System.Drawing.Point(65, 107);
250      this.maxEvaluatedSolutionsLabel.Name = "maxEvaluatedSolutionsLabel";
251      this.maxEvaluatedSolutionsLabel.Size = new System.Drawing.Size(130, 13);
252      this.maxEvaluatedSolutionsLabel.TabIndex = 6;
253      this.maxEvaluatedSolutionsLabel.Text = "Max. E&valuated Solutions:";
254      //
255      // randomSeedTextBox
256      //
257      this.randomSeedTextBox.Anchor = System.Windows.Forms.AnchorStyles.None;
258      this.randomSeedTextBox.Location = new System.Drawing.Point(218, 26);
259      this.randomSeedTextBox.Name = "randomSeedTextBox";
260      this.randomSeedTextBox.Size = new System.Drawing.Size(186, 20);
261      this.randomSeedTextBox.TabIndex = 3;
262      //
263      // populationSizeTextBox
264      //
265      this.populationSizeTextBox.Anchor = System.Windows.Forms.AnchorStyles.None;
266      this.populationSizeTextBox.Location = new System.Drawing.Point(218, 78);
267      this.populationSizeTextBox.Name = "populationSizeTextBox";
268      this.populationSizeTextBox.Size = new System.Drawing.Size(186, 20);
269      this.populationSizeTextBox.TabIndex = 5;
270      //
271      // setRandomSeedRandomlyLabel
272      //
273      this.setRandomSeedRandomlyLabel.Anchor = System.Windows.Forms.AnchorStyles.None;
274      this.setRandomSeedRandomlyLabel.AutoSize = true;
275      this.setRandomSeedRandomlyLabel.Location = new System.Drawing.Point(65, 6);
276      this.setRandomSeedRandomlyLabel.Name = "setRandomSeedRandomlyLabel";
277      this.setRandomSeedRandomlyLabel.Size = new System.Drawing.Size(147, 13);
278      this.setRandomSeedRandomlyLabel.TabIndex = 0;
279      this.setRandomSeedRandomlyLabel.Text = "Set &Random Seed Randomly:";
280      //
281      // randomSeedLabel
282      //
283      this.randomSeedLabel.Anchor = System.Windows.Forms.AnchorStyles.None;
284      this.randomSeedLabel.AutoSize = true;
285      this.randomSeedLabel.Location = new System.Drawing.Point(65, 29);
286      this.randomSeedLabel.Name = "randomSeedLabel";
287      this.randomSeedLabel.Size = new System.Drawing.Size(78, 13);
288      this.randomSeedLabel.TabIndex = 2;
289      this.randomSeedLabel.Text = "&Random Seed:";
290      //
291      // populationSizeLabel
292      //
293      this.populationSizeLabel.Anchor = System.Windows.Forms.AnchorStyles.None;
294      this.populationSizeLabel.AutoSize = true;
295      this.populationSizeLabel.Location = new System.Drawing.Point(65, 81);
296      this.populationSizeLabel.Name = "populationSizeLabel";
297      this.populationSizeLabel.Size = new System.Drawing.Size(83, 13);
298      this.populationSizeLabel.TabIndex = 4;
299      this.populationSizeLabel.Text = "&Population Size:";
300      //
301      // scopesTabPage
302      //
303      this.scopesTabPage.Controls.Add(this.scopeView);
304      this.scopesTabPage.Location = new System.Drawing.Point(4, 22);
305      this.scopesTabPage.Name = "scopesTabPage";
306      this.scopesTabPage.Padding = new System.Windows.Forms.Padding(3);
307      this.scopesTabPage.Size = new System.Drawing.Size(518, 364);
308      this.scopesTabPage.TabIndex = 2;
309      this.scopesTabPage.Text = "Scopes";
310      this.scopesTabPage.UseVisualStyleBackColor = true;
311      //
312      // scopeView
313      //
314      this.scopeView.Caption = "Scope";
315      this.scopeView.Dock = System.Windows.Forms.DockStyle.Fill;
316      this.scopeView.Location = new System.Drawing.Point(3, 3);
317      this.scopeView.Name = "scopeView";
318      this.scopeView.Scope = null;
319      this.scopeView.Size = new System.Drawing.Size(512, 358);
320      this.scopeView.TabIndex = 0;
321      //
322      // abortButton
323      //
324      this.abortButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
325      this.abortButton.Enabled = false;
326      this.abortButton.Location = new System.Drawing.Point(81, 396);
327      this.abortButton.Name = "abortButton";
328      this.abortButton.Size = new System.Drawing.Size(75, 23);
329      this.abortButton.TabIndex = 2;
330      this.abortButton.Text = "&Abort";
331      this.abortButton.UseVisualStyleBackColor = true;
332      this.abortButton.Click += new System.EventHandler(this.abortButton_Click);
333      //
334      // resetButton
335      //
336      this.resetButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
337      this.resetButton.Location = new System.Drawing.Point(162, 396);
338      this.resetButton.Name = "resetButton";
339      this.resetButton.Size = new System.Drawing.Size(75, 23);
340      this.resetButton.TabIndex = 3;
341      this.resetButton.Text = "&Reset";
342      this.resetButton.UseVisualStyleBackColor = true;
343      this.resetButton.Click += new System.EventHandler(this.resetButton_Click);
344      //
345      // cloneEngineButton
346      //
347      this.cloneEngineButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
348      this.cloneEngineButton.Location = new System.Drawing.Point(420, 396);
349      this.cloneEngineButton.Name = "cloneEngineButton";
350      this.cloneEngineButton.Size = new System.Drawing.Size(106, 23);
351      this.cloneEngineButton.TabIndex = 4;
352      this.cloneEngineButton.Text = "&Clone Engine...";
353      this.cloneEngineButton.UseVisualStyleBackColor = true;
354      this.cloneEngineButton.Click += new System.EventHandler(this.cloneEngineButton_Click);
355      //
356      // OffspringSelectionGpEditor
357      //
358      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
359      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
360      this.Controls.Add(this.tabControl);
361      this.Controls.Add(this.cloneEngineButton);
362      this.Controls.Add(this.resetButton);
363      this.Controls.Add(this.abortButton);
364      this.Controls.Add(this.executeButton);
365      this.Name = "OffspringSelectionGpEditor";
366      this.Size = new System.Drawing.Size(526, 419);
367      this.tabControl.ResumeLayout(false);
368      this.parametersTabPage.ResumeLayout(false);
369      this.parametersTabPage.PerformLayout();
370      this.scopesTabPage.ResumeLayout(false);
371      this.ResumeLayout(false);
372
373    }
374
375    #endregion
376
377    private System.Windows.Forms.Button executeButton;
378    protected System.Windows.Forms.TabControl tabControl;
379    protected System.Windows.Forms.TabPage parametersTabPage;
380    private System.Windows.Forms.Button abortButton;
381    private System.Windows.Forms.Button resetButton;
382    private System.Windows.Forms.TextBox mutationRateTextBox;
383    private System.Windows.Forms.Label mutationRateLabel;
384    private System.Windows.Forms.TextBox populationSizeTextBox;
385    private System.Windows.Forms.Label populationSizeLabel;
386    private System.Windows.Forms.TabPage scopesTabPage;
387    private System.Windows.Forms.TextBox maximumEvaluatedSolutionsTextBox;
388    private System.Windows.Forms.Label maxEvaluatedSolutionsLabel;
389    private System.Windows.Forms.TextBox elitesTextBox;
390    private System.Windows.Forms.Label elitesLabel;
391    private System.Windows.Forms.TextBox randomSeedTextBox;
392    private System.Windows.Forms.Label setRandomSeedRandomlyLabel;
393    private System.Windows.Forms.Label randomSeedLabel;
394    private System.Windows.Forms.CheckBox setRandomSeedRandomlyCheckBox;
395    private System.Windows.Forms.Label problemInitializationLabel;
396    private System.Windows.Forms.Button cloneEngineButton;
397    private System.Windows.Forms.TextBox problemInitializationTextBox;
398    private System.Windows.Forms.Button setProblemInitializationButton;
399    private HeuristicLab.Core.ScopeView scopeView;
400    private System.Windows.Forms.Button viewProblemInitializationButton;
401    private System.Windows.Forms.TextBox selectionPressureTextBox;
402    private System.Windows.Forms.Label selectionPressureLabel;
403  }
404}
Note: See TracBrowser for help on using the repository browser.