Free cookie consent management tool by TermsFeed Policy Generator

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

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

worked on #419

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