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 |
|
---|
22 | namespace HeuristicLab.GP.Algorithms {
|
---|
23 | partial class StandardGpEditor {
|
---|
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 | this.setRandomSeedRandomlyCheckBox.CheckedChanged += new System.EventHandler(this.setRandomSeedRandomlyCheckBox_CheckedChanged);
|
---|
168 | //
|
---|
169 | // elitesTextBox
|
---|
170 | //
|
---|
171 | this.elitesTextBox.Anchor = System.Windows.Forms.AnchorStyles.None;
|
---|
172 | this.elitesTextBox.Location = new System.Drawing.Point(218, 156);
|
---|
173 | this.elitesTextBox.Name = "elitesTextBox";
|
---|
174 | this.elitesTextBox.Size = new System.Drawing.Size(186, 20);
|
---|
175 | this.elitesTextBox.TabIndex = 11;
|
---|
176 | //
|
---|
177 | // problemInitializationLabel
|
---|
178 | //
|
---|
179 | this.problemInitializationLabel.Anchor = System.Windows.Forms.AnchorStyles.None;
|
---|
180 | this.problemInitializationLabel.AutoSize = true;
|
---|
181 | this.problemInitializationLabel.Location = new System.Drawing.Point(65, 211);
|
---|
182 | this.problemInitializationLabel.Name = "problemInitializationLabel";
|
---|
183 | this.problemInitializationLabel.Size = new System.Drawing.Size(105, 13);
|
---|
184 | this.problemInitializationLabel.TabIndex = 12;
|
---|
185 | this.problemInitializationLabel.Text = "&Problem Initialization:";
|
---|
186 | //
|
---|
187 | // elitesLabel
|
---|
188 | //
|
---|
189 | this.elitesLabel.Anchor = System.Windows.Forms.AnchorStyles.None;
|
---|
190 | this.elitesLabel.AutoSize = true;
|
---|
191 | this.elitesLabel.Location = new System.Drawing.Point(65, 159);
|
---|
192 | this.elitesLabel.Name = "elitesLabel";
|
---|
193 | this.elitesLabel.Size = new System.Drawing.Size(35, 13);
|
---|
194 | this.elitesLabel.TabIndex = 10;
|
---|
195 | this.elitesLabel.Text = "&Elites:";
|
---|
196 | //
|
---|
197 | // mutationRateTextBox
|
---|
198 | //
|
---|
199 | this.mutationRateTextBox.Anchor = System.Windows.Forms.AnchorStyles.None;
|
---|
200 | this.mutationRateTextBox.Location = new System.Drawing.Point(218, 130);
|
---|
201 | this.mutationRateTextBox.Name = "mutationRateTextBox";
|
---|
202 | this.mutationRateTextBox.Size = new System.Drawing.Size(186, 20);
|
---|
203 | this.mutationRateTextBox.TabIndex = 9;
|
---|
204 | //
|
---|
205 | // mutationRateLabel
|
---|
206 | //
|
---|
207 | this.mutationRateLabel.Anchor = System.Windows.Forms.AnchorStyles.None;
|
---|
208 | this.mutationRateLabel.AutoSize = true;
|
---|
209 | this.mutationRateLabel.Location = new System.Drawing.Point(65, 133);
|
---|
210 | this.mutationRateLabel.Name = "mutationRateLabel";
|
---|
211 | this.mutationRateLabel.Size = new System.Drawing.Size(77, 13);
|
---|
212 | this.mutationRateLabel.TabIndex = 8;
|
---|
213 | this.mutationRateLabel.Text = "&Mutation Rate:";
|
---|
214 | //
|
---|
215 | // maximumGenerationsTextBox
|
---|
216 | //
|
---|
217 | this.maximumGenerationsTextBox.Anchor = System.Windows.Forms.AnchorStyles.None;
|
---|
218 | this.maximumGenerationsTextBox.Location = new System.Drawing.Point(218, 104);
|
---|
219 | this.maximumGenerationsTextBox.Name = "maximumGenerationsTextBox";
|
---|
220 | this.maximumGenerationsTextBox.Size = new System.Drawing.Size(186, 20);
|
---|
221 | this.maximumGenerationsTextBox.TabIndex = 7;
|
---|
222 | //
|
---|
223 | // maximumGenerationsLabel
|
---|
224 | //
|
---|
225 | this.maximumGenerationsLabel.Anchor = System.Windows.Forms.AnchorStyles.None;
|
---|
226 | this.maximumGenerationsLabel.AutoSize = true;
|
---|
227 | this.maximumGenerationsLabel.Location = new System.Drawing.Point(65, 107);
|
---|
228 | this.maximumGenerationsLabel.Name = "maximumGenerationsLabel";
|
---|
229 | this.maximumGenerationsLabel.Size = new System.Drawing.Size(114, 13);
|
---|
230 | this.maximumGenerationsLabel.TabIndex = 6;
|
---|
231 | this.maximumGenerationsLabel.Text = "Maximum &Generations:";
|
---|
232 | //
|
---|
233 | // randomSeedTextBox
|
---|
234 | //
|
---|
235 | this.randomSeedTextBox.Anchor = System.Windows.Forms.AnchorStyles.None;
|
---|
236 | this.randomSeedTextBox.Location = new System.Drawing.Point(218, 26);
|
---|
237 | this.randomSeedTextBox.Name = "randomSeedTextBox";
|
---|
238 | this.randomSeedTextBox.Size = new System.Drawing.Size(186, 20);
|
---|
239 | this.randomSeedTextBox.TabIndex = 3;
|
---|
240 | //
|
---|
241 | // populationSizeTextBox
|
---|
242 | //
|
---|
243 | this.populationSizeTextBox.Anchor = System.Windows.Forms.AnchorStyles.None;
|
---|
244 | this.populationSizeTextBox.Location = new System.Drawing.Point(218, 78);
|
---|
245 | this.populationSizeTextBox.Name = "populationSizeTextBox";
|
---|
246 | this.populationSizeTextBox.Size = new System.Drawing.Size(186, 20);
|
---|
247 | this.populationSizeTextBox.TabIndex = 5;
|
---|
248 | //
|
---|
249 | // setRandomSeedRandomlyLabel
|
---|
250 | //
|
---|
251 | this.setRandomSeedRandomlyLabel.Anchor = System.Windows.Forms.AnchorStyles.None;
|
---|
252 | this.setRandomSeedRandomlyLabel.AutoSize = true;
|
---|
253 | this.setRandomSeedRandomlyLabel.Location = new System.Drawing.Point(65, 6);
|
---|
254 | this.setRandomSeedRandomlyLabel.Name = "setRandomSeedRandomlyLabel";
|
---|
255 | this.setRandomSeedRandomlyLabel.Size = new System.Drawing.Size(147, 13);
|
---|
256 | this.setRandomSeedRandomlyLabel.TabIndex = 0;
|
---|
257 | this.setRandomSeedRandomlyLabel.Text = "Set &Random Seed Randomly:";
|
---|
258 | //
|
---|
259 | // randomSeedLabel
|
---|
260 | //
|
---|
261 | this.randomSeedLabel.Anchor = System.Windows.Forms.AnchorStyles.None;
|
---|
262 | this.randomSeedLabel.AutoSize = true;
|
---|
263 | this.randomSeedLabel.Location = new System.Drawing.Point(65, 29);
|
---|
264 | this.randomSeedLabel.Name = "randomSeedLabel";
|
---|
265 | this.randomSeedLabel.Size = new System.Drawing.Size(78, 13);
|
---|
266 | this.randomSeedLabel.TabIndex = 2;
|
---|
267 | this.randomSeedLabel.Text = "&Random Seed:";
|
---|
268 | //
|
---|
269 | // populationSizeLabel
|
---|
270 | //
|
---|
271 | this.populationSizeLabel.Anchor = System.Windows.Forms.AnchorStyles.None;
|
---|
272 | this.populationSizeLabel.AutoSize = true;
|
---|
273 | this.populationSizeLabel.Location = new System.Drawing.Point(65, 81);
|
---|
274 | this.populationSizeLabel.Name = "populationSizeLabel";
|
---|
275 | this.populationSizeLabel.Size = new System.Drawing.Size(83, 13);
|
---|
276 | this.populationSizeLabel.TabIndex = 4;
|
---|
277 | this.populationSizeLabel.Text = "&Population Size:";
|
---|
278 | //
|
---|
279 | // scopesTabPage
|
---|
280 | //
|
---|
281 | this.scopesTabPage.Controls.Add(this.scopeView);
|
---|
282 | this.scopesTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
283 | this.scopesTabPage.Name = "scopesTabPage";
|
---|
284 | this.scopesTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
285 | this.scopesTabPage.Size = new System.Drawing.Size(518, 364);
|
---|
286 | this.scopesTabPage.TabIndex = 2;
|
---|
287 | this.scopesTabPage.Text = "Scopes";
|
---|
288 | this.scopesTabPage.UseVisualStyleBackColor = true;
|
---|
289 | //
|
---|
290 | // scopeView
|
---|
291 | //
|
---|
292 | this.scopeView.Caption = "Scope";
|
---|
293 | this.scopeView.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
294 | this.scopeView.Location = new System.Drawing.Point(3, 3);
|
---|
295 | this.scopeView.Name = "scopeView";
|
---|
296 | this.scopeView.Scope = null;
|
---|
297 | this.scopeView.Size = new System.Drawing.Size(512, 358);
|
---|
298 | this.scopeView.TabIndex = 0;
|
---|
299 | //
|
---|
300 | // abortButton
|
---|
301 | //
|
---|
302 | this.abortButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
---|
303 | this.abortButton.Enabled = false;
|
---|
304 | this.abortButton.Location = new System.Drawing.Point(81, 396);
|
---|
305 | this.abortButton.Name = "abortButton";
|
---|
306 | this.abortButton.Size = new System.Drawing.Size(75, 23);
|
---|
307 | this.abortButton.TabIndex = 2;
|
---|
308 | this.abortButton.Text = "&Abort";
|
---|
309 | this.abortButton.UseVisualStyleBackColor = true;
|
---|
310 | this.abortButton.Click += new System.EventHandler(this.abortButton_Click);
|
---|
311 | //
|
---|
312 | // resetButton
|
---|
313 | //
|
---|
314 | this.resetButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
---|
315 | this.resetButton.Location = new System.Drawing.Point(162, 396);
|
---|
316 | this.resetButton.Name = "resetButton";
|
---|
317 | this.resetButton.Size = new System.Drawing.Size(75, 23);
|
---|
318 | this.resetButton.TabIndex = 3;
|
---|
319 | this.resetButton.Text = "&Reset";
|
---|
320 | this.resetButton.UseVisualStyleBackColor = true;
|
---|
321 | this.resetButton.Click += new System.EventHandler(this.resetButton_Click);
|
---|
322 | //
|
---|
323 | // cloneEngineButton
|
---|
324 | //
|
---|
325 | this.cloneEngineButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
326 | this.cloneEngineButton.Location = new System.Drawing.Point(420, 396);
|
---|
327 | this.cloneEngineButton.Name = "cloneEngineButton";
|
---|
328 | this.cloneEngineButton.Size = new System.Drawing.Size(106, 23);
|
---|
329 | this.cloneEngineButton.TabIndex = 4;
|
---|
330 | this.cloneEngineButton.Text = "&Clone Engine...";
|
---|
331 | this.cloneEngineButton.UseVisualStyleBackColor = true;
|
---|
332 | this.cloneEngineButton.Click += new System.EventHandler(this.cloneEngineButton_Click);
|
---|
333 | //
|
---|
334 | // StandardGpEditor
|
---|
335 | //
|
---|
336 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
337 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
338 | this.Controls.Add(this.tabControl);
|
---|
339 | this.Controls.Add(this.cloneEngineButton);
|
---|
340 | this.Controls.Add(this.resetButton);
|
---|
341 | this.Controls.Add(this.abortButton);
|
---|
342 | this.Controls.Add(this.executeButton);
|
---|
343 | this.Name = "StandardGpEditor";
|
---|
344 | this.Size = new System.Drawing.Size(526, 419);
|
---|
345 | this.tabControl.ResumeLayout(false);
|
---|
346 | this.parametersTabPage.ResumeLayout(false);
|
---|
347 | this.parametersTabPage.PerformLayout();
|
---|
348 | this.scopesTabPage.ResumeLayout(false);
|
---|
349 | this.ResumeLayout(false);
|
---|
350 |
|
---|
351 | }
|
---|
352 |
|
---|
353 | #endregion
|
---|
354 |
|
---|
355 | private System.Windows.Forms.Button executeButton;
|
---|
356 | protected System.Windows.Forms.TabControl tabControl;
|
---|
357 | protected System.Windows.Forms.TabPage parametersTabPage;
|
---|
358 | private System.Windows.Forms.Button abortButton;
|
---|
359 | private System.Windows.Forms.Button resetButton;
|
---|
360 | private System.Windows.Forms.TextBox mutationRateTextBox;
|
---|
361 | private System.Windows.Forms.Label mutationRateLabel;
|
---|
362 | private System.Windows.Forms.TextBox populationSizeTextBox;
|
---|
363 | private System.Windows.Forms.Label populationSizeLabel;
|
---|
364 | private System.Windows.Forms.TabPage scopesTabPage;
|
---|
365 | private System.Windows.Forms.TextBox maximumGenerationsTextBox;
|
---|
366 | private System.Windows.Forms.Label maximumGenerationsLabel;
|
---|
367 | private System.Windows.Forms.TextBox elitesTextBox;
|
---|
368 | private System.Windows.Forms.Label elitesLabel;
|
---|
369 | private System.Windows.Forms.TextBox randomSeedTextBox;
|
---|
370 | private System.Windows.Forms.Label setRandomSeedRandomlyLabel;
|
---|
371 | private System.Windows.Forms.Label randomSeedLabel;
|
---|
372 | private System.Windows.Forms.CheckBox setRandomSeedRandomlyCheckBox;
|
---|
373 | private System.Windows.Forms.Label problemInitializationLabel;
|
---|
374 | private System.Windows.Forms.Button cloneEngineButton;
|
---|
375 | private System.Windows.Forms.TextBox problemInitializationTextBox;
|
---|
376 | private System.Windows.Forms.Button setProblemInitializationButton;
|
---|
377 | private HeuristicLab.Core.ScopeView scopeView;
|
---|
378 | private System.Windows.Forms.Button viewProblemInitializationButton;
|
---|
379 | }
|
---|
380 | }
|
---|