[1156] | 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 |
|
---|
[2331] | 22 | namespace HeuristicLab.GP.Algorithms {
|
---|
[1156] | 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() {
|
---|
[2728] | 48 | this.components = new System.ComponentModel.Container();
|
---|
[1156] | 49 | this.executeButton = new System.Windows.Forms.Button();
|
---|
| 50 | this.tabControl = new System.Windows.Forms.TabControl();
|
---|
| 51 | this.parametersTabPage = new System.Windows.Forms.TabPage();
|
---|
[1287] | 52 | this.selectionPressureTextBox = new System.Windows.Forms.TextBox();
|
---|
| 53 | this.selectionPressureLabel = new System.Windows.Forms.Label();
|
---|
[1156] | 54 | this.viewProblemInitializationButton = new System.Windows.Forms.Button();
|
---|
| 55 | this.setProblemInitializationButton = new System.Windows.Forms.Button();
|
---|
| 56 | this.problemInitializationTextBox = new System.Windows.Forms.TextBox();
|
---|
| 57 | this.setRandomSeedRandomlyCheckBox = new System.Windows.Forms.CheckBox();
|
---|
| 58 | this.elitesTextBox = new System.Windows.Forms.TextBox();
|
---|
| 59 | this.problemInitializationLabel = new System.Windows.Forms.Label();
|
---|
| 60 | this.elitesLabel = new System.Windows.Forms.Label();
|
---|
| 61 | this.mutationRateTextBox = new System.Windows.Forms.TextBox();
|
---|
| 62 | this.mutationRateLabel = new System.Windows.Forms.Label();
|
---|
[1287] | 63 | this.maximumEvaluatedSolutionsTextBox = new System.Windows.Forms.TextBox();
|
---|
| 64 | this.maxEvaluatedSolutionsLabel = new System.Windows.Forms.Label();
|
---|
[1156] | 65 | this.randomSeedTextBox = new System.Windows.Forms.TextBox();
|
---|
| 66 | this.populationSizeTextBox = new System.Windows.Forms.TextBox();
|
---|
| 67 | this.setRandomSeedRandomlyLabel = new System.Windows.Forms.Label();
|
---|
| 68 | this.randomSeedLabel = new System.Windows.Forms.Label();
|
---|
| 69 | this.populationSizeLabel = new System.Windows.Forms.Label();
|
---|
| 70 | this.scopesTabPage = new System.Windows.Forms.TabPage();
|
---|
| 71 | this.scopeView = new HeuristicLab.Core.ScopeView();
|
---|
| 72 | this.abortButton = new System.Windows.Forms.Button();
|
---|
| 73 | this.resetButton = new System.Windows.Forms.Button();
|
---|
| 74 | this.cloneEngineButton = new System.Windows.Forms.Button();
|
---|
[2728] | 75 | this.functionLibraryInjectorViewButton = new System.Windows.Forms.Button();
|
---|
| 76 | this.functionLibraryInjectorSetButton = new System.Windows.Forms.Button();
|
---|
| 77 | this.functionLibraryInjectorTextBox = new System.Windows.Forms.TextBox();
|
---|
| 78 | this.label1 = new System.Windows.Forms.Label();
|
---|
| 79 | this.comparisonFactorTextBox = new System.Windows.Forms.TextBox();
|
---|
| 80 | this.label2 = new System.Windows.Forms.Label();
|
---|
| 81 | this.successRatioLimitTextBox = new System.Windows.Forms.TextBox();
|
---|
| 82 | this.label3 = new System.Windows.Forms.Label();
|
---|
| 83 | this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
|
---|
[1156] | 84 | this.tabControl.SuspendLayout();
|
---|
| 85 | this.parametersTabPage.SuspendLayout();
|
---|
| 86 | this.scopesTabPage.SuspendLayout();
|
---|
[2728] | 87 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
|
---|
[1156] | 88 | this.SuspendLayout();
|
---|
| 89 | //
|
---|
| 90 | // executeButton
|
---|
| 91 | //
|
---|
| 92 | this.executeButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
---|
| 93 | this.executeButton.Location = new System.Drawing.Point(0, 396);
|
---|
| 94 | this.executeButton.Name = "executeButton";
|
---|
| 95 | this.executeButton.Size = new System.Drawing.Size(75, 23);
|
---|
| 96 | this.executeButton.TabIndex = 1;
|
---|
| 97 | this.executeButton.Text = "&Execute";
|
---|
| 98 | this.executeButton.UseVisualStyleBackColor = true;
|
---|
| 99 | this.executeButton.Click += new System.EventHandler(this.executeButton_Click);
|
---|
| 100 | //
|
---|
| 101 | // tabControl
|
---|
| 102 | //
|
---|
| 103 | this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 104 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 105 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 106 | this.tabControl.Controls.Add(this.parametersTabPage);
|
---|
| 107 | this.tabControl.Controls.Add(this.scopesTabPage);
|
---|
| 108 | this.tabControl.Location = new System.Drawing.Point(0, 0);
|
---|
| 109 | this.tabControl.Name = "tabControl";
|
---|
| 110 | this.tabControl.SelectedIndex = 0;
|
---|
| 111 | this.tabControl.Size = new System.Drawing.Size(526, 390);
|
---|
| 112 | this.tabControl.TabIndex = 0;
|
---|
| 113 | //
|
---|
| 114 | // parametersTabPage
|
---|
| 115 | //
|
---|
[2728] | 116 | this.parametersTabPage.Controls.Add(this.successRatioLimitTextBox);
|
---|
| 117 | this.parametersTabPage.Controls.Add(this.label3);
|
---|
| 118 | this.parametersTabPage.Controls.Add(this.comparisonFactorTextBox);
|
---|
| 119 | this.parametersTabPage.Controls.Add(this.label2);
|
---|
| 120 | this.parametersTabPage.Controls.Add(this.functionLibraryInjectorViewButton);
|
---|
| 121 | this.parametersTabPage.Controls.Add(this.functionLibraryInjectorSetButton);
|
---|
| 122 | this.parametersTabPage.Controls.Add(this.functionLibraryInjectorTextBox);
|
---|
| 123 | this.parametersTabPage.Controls.Add(this.label1);
|
---|
[1287] | 124 | this.parametersTabPage.Controls.Add(this.selectionPressureTextBox);
|
---|
| 125 | this.parametersTabPage.Controls.Add(this.selectionPressureLabel);
|
---|
[1156] | 126 | this.parametersTabPage.Controls.Add(this.viewProblemInitializationButton);
|
---|
| 127 | this.parametersTabPage.Controls.Add(this.setProblemInitializationButton);
|
---|
| 128 | this.parametersTabPage.Controls.Add(this.problemInitializationTextBox);
|
---|
| 129 | this.parametersTabPage.Controls.Add(this.setRandomSeedRandomlyCheckBox);
|
---|
| 130 | this.parametersTabPage.Controls.Add(this.elitesTextBox);
|
---|
| 131 | this.parametersTabPage.Controls.Add(this.problemInitializationLabel);
|
---|
| 132 | this.parametersTabPage.Controls.Add(this.elitesLabel);
|
---|
| 133 | this.parametersTabPage.Controls.Add(this.mutationRateTextBox);
|
---|
| 134 | this.parametersTabPage.Controls.Add(this.mutationRateLabel);
|
---|
[1287] | 135 | this.parametersTabPage.Controls.Add(this.maximumEvaluatedSolutionsTextBox);
|
---|
| 136 | this.parametersTabPage.Controls.Add(this.maxEvaluatedSolutionsLabel);
|
---|
[1156] | 137 | this.parametersTabPage.Controls.Add(this.randomSeedTextBox);
|
---|
| 138 | this.parametersTabPage.Controls.Add(this.populationSizeTextBox);
|
---|
| 139 | this.parametersTabPage.Controls.Add(this.setRandomSeedRandomlyLabel);
|
---|
| 140 | this.parametersTabPage.Controls.Add(this.randomSeedLabel);
|
---|
| 141 | this.parametersTabPage.Controls.Add(this.populationSizeLabel);
|
---|
| 142 | this.parametersTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
| 143 | this.parametersTabPage.Name = "parametersTabPage";
|
---|
| 144 | this.parametersTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
| 145 | this.parametersTabPage.Size = new System.Drawing.Size(518, 364);
|
---|
| 146 | this.parametersTabPage.TabIndex = 0;
|
---|
| 147 | this.parametersTabPage.Text = "Parameters";
|
---|
| 148 | this.parametersTabPage.UseVisualStyleBackColor = true;
|
---|
| 149 | //
|
---|
[1287] | 150 | // selectionPressureTextBox
|
---|
| 151 | //
|
---|
| 152 | this.selectionPressureTextBox.Anchor = System.Windows.Forms.AnchorStyles.None;
|
---|
[2728] | 153 | this.selectionPressureTextBox.Location = new System.Drawing.Point(218, 234);
|
---|
[1287] | 154 | this.selectionPressureTextBox.Name = "selectionPressureTextBox";
|
---|
| 155 | this.selectionPressureTextBox.Size = new System.Drawing.Size(186, 20);
|
---|
| 156 | this.selectionPressureTextBox.TabIndex = 17;
|
---|
[2728] | 157 | this.selectionPressureTextBox.TextChanged += new System.EventHandler(this.selectionPressureTextBox_TextChanged);
|
---|
[1287] | 158 | //
|
---|
| 159 | // selectionPressureLabel
|
---|
| 160 | //
|
---|
| 161 | this.selectionPressureLabel.Anchor = System.Windows.Forms.AnchorStyles.None;
|
---|
| 162 | this.selectionPressureLabel.AutoSize = true;
|
---|
[2728] | 163 | this.selectionPressureLabel.Location = new System.Drawing.Point(65, 237);
|
---|
[1287] | 164 | this.selectionPressureLabel.Name = "selectionPressureLabel";
|
---|
| 165 | this.selectionPressureLabel.Size = new System.Drawing.Size(145, 13);
|
---|
| 166 | this.selectionPressureLabel.TabIndex = 16;
|
---|
| 167 | this.selectionPressureLabel.Text = "Maximum &Selection Pressure:";
|
---|
| 168 | //
|
---|
[1156] | 169 | // viewProblemInitializationButton
|
---|
| 170 | //
|
---|
| 171 | this.viewProblemInitializationButton.Anchor = System.Windows.Forms.AnchorStyles.None;
|
---|
[2728] | 172 | this.viewProblemInitializationButton.Location = new System.Drawing.Point(410, 281);
|
---|
[1156] | 173 | this.viewProblemInitializationButton.Name = "viewProblemInitializationButton";
|
---|
| 174 | this.viewProblemInitializationButton.Size = new System.Drawing.Size(53, 20);
|
---|
| 175 | this.viewProblemInitializationButton.TabIndex = 14;
|
---|
| 176 | this.viewProblemInitializationButton.Text = "View...";
|
---|
| 177 | this.viewProblemInitializationButton.UseVisualStyleBackColor = true;
|
---|
| 178 | this.viewProblemInitializationButton.Click += new System.EventHandler(this.viewProblemInjectorButton_Click);
|
---|
| 179 | //
|
---|
| 180 | // setProblemInitializationButton
|
---|
| 181 | //
|
---|
| 182 | this.setProblemInitializationButton.Anchor = System.Windows.Forms.AnchorStyles.None;
|
---|
[2728] | 183 | this.setProblemInitializationButton.Location = new System.Drawing.Point(469, 281);
|
---|
[1156] | 184 | this.setProblemInitializationButton.Name = "setProblemInitializationButton";
|
---|
| 185 | this.setProblemInitializationButton.Size = new System.Drawing.Size(43, 20);
|
---|
| 186 | this.setProblemInitializationButton.TabIndex = 15;
|
---|
| 187 | this.setProblemInitializationButton.Text = "Set...";
|
---|
| 188 | this.setProblemInitializationButton.UseVisualStyleBackColor = true;
|
---|
| 189 | this.setProblemInitializationButton.Click += new System.EventHandler(this.setProblemInitializationButton_Click);
|
---|
| 190 | //
|
---|
| 191 | // problemInitializationTextBox
|
---|
| 192 | //
|
---|
| 193 | this.problemInitializationTextBox.Anchor = System.Windows.Forms.AnchorStyles.None;
|
---|
[2728] | 194 | this.problemInitializationTextBox.Location = new System.Drawing.Point(218, 281);
|
---|
[1156] | 195 | this.problemInitializationTextBox.Name = "problemInitializationTextBox";
|
---|
| 196 | this.problemInitializationTextBox.ReadOnly = true;
|
---|
| 197 | this.problemInitializationTextBox.Size = new System.Drawing.Size(186, 20);
|
---|
| 198 | this.problemInitializationTextBox.TabIndex = 13;
|
---|
| 199 | //
|
---|
| 200 | // setRandomSeedRandomlyCheckBox
|
---|
| 201 | //
|
---|
| 202 | this.setRandomSeedRandomlyCheckBox.Anchor = System.Windows.Forms.AnchorStyles.None;
|
---|
| 203 | this.setRandomSeedRandomlyCheckBox.AutoSize = true;
|
---|
| 204 | this.setRandomSeedRandomlyCheckBox.Location = new System.Drawing.Point(218, 6);
|
---|
| 205 | this.setRandomSeedRandomlyCheckBox.Name = "setRandomSeedRandomlyCheckBox";
|
---|
| 206 | this.setRandomSeedRandomlyCheckBox.Size = new System.Drawing.Size(15, 14);
|
---|
| 207 | this.setRandomSeedRandomlyCheckBox.TabIndex = 1;
|
---|
| 208 | this.setRandomSeedRandomlyCheckBox.UseVisualStyleBackColor = true;
|
---|
[1287] | 209 | this.setRandomSeedRandomlyCheckBox.CheckedChanged += new System.EventHandler(this.setRandomSeedRandomlyCheckBox_CheckedChanged);
|
---|
[1156] | 210 | //
|
---|
| 211 | // elitesTextBox
|
---|
| 212 | //
|
---|
| 213 | this.elitesTextBox.Anchor = System.Windows.Forms.AnchorStyles.None;
|
---|
[2728] | 214 | this.elitesTextBox.Location = new System.Drawing.Point(218, 104);
|
---|
[1156] | 215 | this.elitesTextBox.Name = "elitesTextBox";
|
---|
| 216 | this.elitesTextBox.Size = new System.Drawing.Size(186, 20);
|
---|
| 217 | this.elitesTextBox.TabIndex = 11;
|
---|
[2728] | 218 | this.elitesTextBox.TextChanged += new System.EventHandler(this.elitesTextBox_TextChanged);
|
---|
[1156] | 219 | //
|
---|
| 220 | // problemInitializationLabel
|
---|
| 221 | //
|
---|
| 222 | this.problemInitializationLabel.Anchor = System.Windows.Forms.AnchorStyles.None;
|
---|
| 223 | this.problemInitializationLabel.AutoSize = true;
|
---|
[2728] | 224 | this.problemInitializationLabel.Location = new System.Drawing.Point(65, 284);
|
---|
[1156] | 225 | this.problemInitializationLabel.Name = "problemInitializationLabel";
|
---|
| 226 | this.problemInitializationLabel.Size = new System.Drawing.Size(105, 13);
|
---|
| 227 | this.problemInitializationLabel.TabIndex = 12;
|
---|
| 228 | this.problemInitializationLabel.Text = "&Problem Initialization:";
|
---|
| 229 | //
|
---|
| 230 | // elitesLabel
|
---|
| 231 | //
|
---|
| 232 | this.elitesLabel.Anchor = System.Windows.Forms.AnchorStyles.None;
|
---|
| 233 | this.elitesLabel.AutoSize = true;
|
---|
[2728] | 234 | this.elitesLabel.Location = new System.Drawing.Point(66, 107);
|
---|
[1156] | 235 | this.elitesLabel.Name = "elitesLabel";
|
---|
| 236 | this.elitesLabel.Size = new System.Drawing.Size(35, 13);
|
---|
| 237 | this.elitesLabel.TabIndex = 10;
|
---|
| 238 | this.elitesLabel.Text = "&Elites:";
|
---|
| 239 | //
|
---|
| 240 | // mutationRateTextBox
|
---|
| 241 | //
|
---|
| 242 | this.mutationRateTextBox.Anchor = System.Windows.Forms.AnchorStyles.None;
|
---|
[2728] | 243 | this.mutationRateTextBox.Location = new System.Drawing.Point(218, 130);
|
---|
[1156] | 244 | this.mutationRateTextBox.Name = "mutationRateTextBox";
|
---|
| 245 | this.mutationRateTextBox.Size = new System.Drawing.Size(186, 20);
|
---|
| 246 | this.mutationRateTextBox.TabIndex = 9;
|
---|
[2728] | 247 | this.mutationRateTextBox.TextChanged += new System.EventHandler(this.mutationRateTextBox_TextChanged);
|
---|
[1156] | 248 | //
|
---|
| 249 | // mutationRateLabel
|
---|
| 250 | //
|
---|
| 251 | this.mutationRateLabel.Anchor = System.Windows.Forms.AnchorStyles.None;
|
---|
| 252 | this.mutationRateLabel.AutoSize = true;
|
---|
[2728] | 253 | this.mutationRateLabel.Location = new System.Drawing.Point(66, 133);
|
---|
[1156] | 254 | this.mutationRateLabel.Name = "mutationRateLabel";
|
---|
| 255 | this.mutationRateLabel.Size = new System.Drawing.Size(77, 13);
|
---|
| 256 | this.mutationRateLabel.TabIndex = 8;
|
---|
| 257 | this.mutationRateLabel.Text = "&Mutation Rate:";
|
---|
| 258 | //
|
---|
[1287] | 259 | // maximumEvaluatedSolutionsTextBox
|
---|
[1156] | 260 | //
|
---|
[1287] | 261 | this.maximumEvaluatedSolutionsTextBox.Anchor = System.Windows.Forms.AnchorStyles.None;
|
---|
[2728] | 262 | this.maximumEvaluatedSolutionsTextBox.Location = new System.Drawing.Point(218, 208);
|
---|
[1287] | 263 | this.maximumEvaluatedSolutionsTextBox.Name = "maximumEvaluatedSolutionsTextBox";
|
---|
| 264 | this.maximumEvaluatedSolutionsTextBox.Size = new System.Drawing.Size(186, 20);
|
---|
| 265 | this.maximumEvaluatedSolutionsTextBox.TabIndex = 7;
|
---|
[2728] | 266 | this.maximumEvaluatedSolutionsTextBox.TextChanged += new System.EventHandler(this.maximumEvaluatedSolutionsTextBox_TextChanged);
|
---|
[1156] | 267 | //
|
---|
[1287] | 268 | // maxEvaluatedSolutionsLabel
|
---|
[1156] | 269 | //
|
---|
[1287] | 270 | this.maxEvaluatedSolutionsLabel.Anchor = System.Windows.Forms.AnchorStyles.None;
|
---|
| 271 | this.maxEvaluatedSolutionsLabel.AutoSize = true;
|
---|
[2728] | 272 | this.maxEvaluatedSolutionsLabel.Location = new System.Drawing.Point(65, 211);
|
---|
[1287] | 273 | this.maxEvaluatedSolutionsLabel.Name = "maxEvaluatedSolutionsLabel";
|
---|
| 274 | this.maxEvaluatedSolutionsLabel.Size = new System.Drawing.Size(130, 13);
|
---|
| 275 | this.maxEvaluatedSolutionsLabel.TabIndex = 6;
|
---|
| 276 | this.maxEvaluatedSolutionsLabel.Text = "Max. E&valuated Solutions:";
|
---|
[1156] | 277 | //
|
---|
| 278 | // randomSeedTextBox
|
---|
| 279 | //
|
---|
| 280 | this.randomSeedTextBox.Anchor = System.Windows.Forms.AnchorStyles.None;
|
---|
| 281 | this.randomSeedTextBox.Location = new System.Drawing.Point(218, 26);
|
---|
| 282 | this.randomSeedTextBox.Name = "randomSeedTextBox";
|
---|
| 283 | this.randomSeedTextBox.Size = new System.Drawing.Size(186, 20);
|
---|
| 284 | this.randomSeedTextBox.TabIndex = 3;
|
---|
[2728] | 285 | this.randomSeedTextBox.TextChanged += new System.EventHandler(this.randomSeedTextBox_TextChanged);
|
---|
[1156] | 286 | //
|
---|
| 287 | // populationSizeTextBox
|
---|
| 288 | //
|
---|
| 289 | this.populationSizeTextBox.Anchor = System.Windows.Forms.AnchorStyles.None;
|
---|
| 290 | this.populationSizeTextBox.Location = new System.Drawing.Point(218, 78);
|
---|
| 291 | this.populationSizeTextBox.Name = "populationSizeTextBox";
|
---|
| 292 | this.populationSizeTextBox.Size = new System.Drawing.Size(186, 20);
|
---|
| 293 | this.populationSizeTextBox.TabIndex = 5;
|
---|
[2728] | 294 | this.populationSizeTextBox.TextChanged += new System.EventHandler(this.populationSizeTextBox_TextChanged);
|
---|
[1156] | 295 | //
|
---|
| 296 | // setRandomSeedRandomlyLabel
|
---|
| 297 | //
|
---|
| 298 | this.setRandomSeedRandomlyLabel.Anchor = System.Windows.Forms.AnchorStyles.None;
|
---|
| 299 | this.setRandomSeedRandomlyLabel.AutoSize = true;
|
---|
| 300 | this.setRandomSeedRandomlyLabel.Location = new System.Drawing.Point(65, 6);
|
---|
| 301 | this.setRandomSeedRandomlyLabel.Name = "setRandomSeedRandomlyLabel";
|
---|
| 302 | this.setRandomSeedRandomlyLabel.Size = new System.Drawing.Size(147, 13);
|
---|
| 303 | this.setRandomSeedRandomlyLabel.TabIndex = 0;
|
---|
| 304 | this.setRandomSeedRandomlyLabel.Text = "Set &Random Seed Randomly:";
|
---|
| 305 | //
|
---|
| 306 | // randomSeedLabel
|
---|
| 307 | //
|
---|
| 308 | this.randomSeedLabel.Anchor = System.Windows.Forms.AnchorStyles.None;
|
---|
| 309 | this.randomSeedLabel.AutoSize = true;
|
---|
| 310 | this.randomSeedLabel.Location = new System.Drawing.Point(65, 29);
|
---|
| 311 | this.randomSeedLabel.Name = "randomSeedLabel";
|
---|
| 312 | this.randomSeedLabel.Size = new System.Drawing.Size(78, 13);
|
---|
| 313 | this.randomSeedLabel.TabIndex = 2;
|
---|
| 314 | this.randomSeedLabel.Text = "&Random Seed:";
|
---|
| 315 | //
|
---|
| 316 | // populationSizeLabel
|
---|
| 317 | //
|
---|
| 318 | this.populationSizeLabel.Anchor = System.Windows.Forms.AnchorStyles.None;
|
---|
| 319 | this.populationSizeLabel.AutoSize = true;
|
---|
| 320 | this.populationSizeLabel.Location = new System.Drawing.Point(65, 81);
|
---|
| 321 | this.populationSizeLabel.Name = "populationSizeLabel";
|
---|
| 322 | this.populationSizeLabel.Size = new System.Drawing.Size(83, 13);
|
---|
| 323 | this.populationSizeLabel.TabIndex = 4;
|
---|
| 324 | this.populationSizeLabel.Text = "&Population Size:";
|
---|
| 325 | //
|
---|
| 326 | // scopesTabPage
|
---|
| 327 | //
|
---|
| 328 | this.scopesTabPage.Controls.Add(this.scopeView);
|
---|
| 329 | this.scopesTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
| 330 | this.scopesTabPage.Name = "scopesTabPage";
|
---|
| 331 | this.scopesTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
| 332 | this.scopesTabPage.Size = new System.Drawing.Size(518, 364);
|
---|
| 333 | this.scopesTabPage.TabIndex = 2;
|
---|
| 334 | this.scopesTabPage.Text = "Scopes";
|
---|
| 335 | this.scopesTabPage.UseVisualStyleBackColor = true;
|
---|
| 336 | //
|
---|
| 337 | // scopeView
|
---|
| 338 | //
|
---|
| 339 | this.scopeView.Caption = "Scope";
|
---|
| 340 | this.scopeView.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
| 341 | this.scopeView.Location = new System.Drawing.Point(3, 3);
|
---|
| 342 | this.scopeView.Name = "scopeView";
|
---|
| 343 | this.scopeView.Scope = null;
|
---|
| 344 | this.scopeView.Size = new System.Drawing.Size(512, 358);
|
---|
| 345 | this.scopeView.TabIndex = 0;
|
---|
| 346 | //
|
---|
| 347 | // abortButton
|
---|
| 348 | //
|
---|
| 349 | this.abortButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
---|
| 350 | this.abortButton.Enabled = false;
|
---|
| 351 | this.abortButton.Location = new System.Drawing.Point(81, 396);
|
---|
| 352 | this.abortButton.Name = "abortButton";
|
---|
| 353 | this.abortButton.Size = new System.Drawing.Size(75, 23);
|
---|
| 354 | this.abortButton.TabIndex = 2;
|
---|
| 355 | this.abortButton.Text = "&Abort";
|
---|
| 356 | this.abortButton.UseVisualStyleBackColor = true;
|
---|
| 357 | this.abortButton.Click += new System.EventHandler(this.abortButton_Click);
|
---|
| 358 | //
|
---|
| 359 | // resetButton
|
---|
| 360 | //
|
---|
| 361 | this.resetButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
---|
| 362 | this.resetButton.Location = new System.Drawing.Point(162, 396);
|
---|
| 363 | this.resetButton.Name = "resetButton";
|
---|
| 364 | this.resetButton.Size = new System.Drawing.Size(75, 23);
|
---|
| 365 | this.resetButton.TabIndex = 3;
|
---|
| 366 | this.resetButton.Text = "&Reset";
|
---|
| 367 | this.resetButton.UseVisualStyleBackColor = true;
|
---|
| 368 | this.resetButton.Click += new System.EventHandler(this.resetButton_Click);
|
---|
| 369 | //
|
---|
| 370 | // cloneEngineButton
|
---|
| 371 | //
|
---|
| 372 | this.cloneEngineButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 373 | this.cloneEngineButton.Location = new System.Drawing.Point(420, 396);
|
---|
| 374 | this.cloneEngineButton.Name = "cloneEngineButton";
|
---|
| 375 | this.cloneEngineButton.Size = new System.Drawing.Size(106, 23);
|
---|
| 376 | this.cloneEngineButton.TabIndex = 4;
|
---|
| 377 | this.cloneEngineButton.Text = "&Clone Engine...";
|
---|
| 378 | this.cloneEngineButton.UseVisualStyleBackColor = true;
|
---|
| 379 | this.cloneEngineButton.Click += new System.EventHandler(this.cloneEngineButton_Click);
|
---|
| 380 | //
|
---|
[2728] | 381 | // functionLibraryInjectorViewButton
|
---|
| 382 | //
|
---|
| 383 | this.functionLibraryInjectorViewButton.Anchor = System.Windows.Forms.AnchorStyles.None;
|
---|
| 384 | this.functionLibraryInjectorViewButton.Location = new System.Drawing.Point(410, 307);
|
---|
| 385 | this.functionLibraryInjectorViewButton.Name = "functionLibraryInjectorViewButton";
|
---|
| 386 | this.functionLibraryInjectorViewButton.Size = new System.Drawing.Size(53, 20);
|
---|
| 387 | this.functionLibraryInjectorViewButton.TabIndex = 20;
|
---|
| 388 | this.functionLibraryInjectorViewButton.Text = "View...";
|
---|
| 389 | this.functionLibraryInjectorViewButton.UseVisualStyleBackColor = true;
|
---|
| 390 | this.functionLibraryInjectorViewButton.Click += new System.EventHandler(this.functionLibraryInjectorViewButton_Click);
|
---|
| 391 | //
|
---|
| 392 | // functionLibraryInjectorSetButton
|
---|
| 393 | //
|
---|
| 394 | this.functionLibraryInjectorSetButton.Anchor = System.Windows.Forms.AnchorStyles.None;
|
---|
| 395 | this.functionLibraryInjectorSetButton.Location = new System.Drawing.Point(469, 307);
|
---|
| 396 | this.functionLibraryInjectorSetButton.Name = "functionLibraryInjectorSetButton";
|
---|
| 397 | this.functionLibraryInjectorSetButton.Size = new System.Drawing.Size(43, 20);
|
---|
| 398 | this.functionLibraryInjectorSetButton.TabIndex = 21;
|
---|
| 399 | this.functionLibraryInjectorSetButton.Text = "Set...";
|
---|
| 400 | this.functionLibraryInjectorSetButton.UseVisualStyleBackColor = true;
|
---|
| 401 | this.functionLibraryInjectorSetButton.Click += new System.EventHandler(this.functionLibraryInjectorSetButton_Click);
|
---|
| 402 | //
|
---|
| 403 | // functionLibraryInjectorTextBox
|
---|
| 404 | //
|
---|
| 405 | this.functionLibraryInjectorTextBox.Anchor = System.Windows.Forms.AnchorStyles.None;
|
---|
| 406 | this.functionLibraryInjectorTextBox.Location = new System.Drawing.Point(218, 307);
|
---|
| 407 | this.functionLibraryInjectorTextBox.Name = "functionLibraryInjectorTextBox";
|
---|
| 408 | this.functionLibraryInjectorTextBox.ReadOnly = true;
|
---|
| 409 | this.functionLibraryInjectorTextBox.Size = new System.Drawing.Size(186, 20);
|
---|
| 410 | this.functionLibraryInjectorTextBox.TabIndex = 19;
|
---|
| 411 | //
|
---|
| 412 | // label1
|
---|
| 413 | //
|
---|
| 414 | this.label1.Anchor = System.Windows.Forms.AnchorStyles.None;
|
---|
| 415 | this.label1.AutoSize = true;
|
---|
| 416 | this.label1.Location = new System.Drawing.Point(65, 310);
|
---|
| 417 | this.label1.Name = "label1";
|
---|
| 418 | this.label1.Size = new System.Drawing.Size(81, 13);
|
---|
| 419 | this.label1.TabIndex = 18;
|
---|
| 420 | this.label1.Text = "&Function library:";
|
---|
| 421 | //
|
---|
| 422 | // comparisonFactorTextBox
|
---|
| 423 | //
|
---|
| 424 | this.comparisonFactorTextBox.Anchor = System.Windows.Forms.AnchorStyles.None;
|
---|
| 425 | this.comparisonFactorTextBox.Location = new System.Drawing.Point(218, 156);
|
---|
| 426 | this.comparisonFactorTextBox.Name = "comparisonFactorTextBox";
|
---|
| 427 | this.comparisonFactorTextBox.Size = new System.Drawing.Size(186, 20);
|
---|
| 428 | this.comparisonFactorTextBox.TabIndex = 23;
|
---|
| 429 | this.comparisonFactorTextBox.TextChanged += new System.EventHandler(this.comparisonFactorTextBox_TextChanged);
|
---|
| 430 | //
|
---|
| 431 | // label2
|
---|
| 432 | //
|
---|
| 433 | this.label2.Anchor = System.Windows.Forms.AnchorStyles.None;
|
---|
| 434 | this.label2.AutoSize = true;
|
---|
| 435 | this.label2.Location = new System.Drawing.Point(66, 159);
|
---|
| 436 | this.label2.Name = "label2";
|
---|
| 437 | this.label2.Size = new System.Drawing.Size(95, 13);
|
---|
| 438 | this.label2.TabIndex = 22;
|
---|
| 439 | this.label2.Text = "Comparison factor:";
|
---|
| 440 | //
|
---|
| 441 | // successRatioLimitTextBox
|
---|
| 442 | //
|
---|
| 443 | this.successRatioLimitTextBox.Anchor = System.Windows.Forms.AnchorStyles.None;
|
---|
| 444 | this.successRatioLimitTextBox.Location = new System.Drawing.Point(218, 182);
|
---|
| 445 | this.successRatioLimitTextBox.Name = "successRatioLimitTextBox";
|
---|
| 446 | this.successRatioLimitTextBox.Size = new System.Drawing.Size(186, 20);
|
---|
| 447 | this.successRatioLimitTextBox.TabIndex = 25;
|
---|
| 448 | this.successRatioLimitTextBox.TextChanged += new System.EventHandler(this.successRatioLimitTextBox_TextChanged);
|
---|
| 449 | //
|
---|
| 450 | // label3
|
---|
| 451 | //
|
---|
| 452 | this.label3.Anchor = System.Windows.Forms.AnchorStyles.None;
|
---|
| 453 | this.label3.AutoSize = true;
|
---|
| 454 | this.label3.Location = new System.Drawing.Point(66, 185);
|
---|
| 455 | this.label3.Name = "label3";
|
---|
| 456 | this.label3.Size = new System.Drawing.Size(94, 13);
|
---|
| 457 | this.label3.TabIndex = 24;
|
---|
| 458 | this.label3.Text = "Success ratio limit:";
|
---|
| 459 | //
|
---|
| 460 | // errorProvider
|
---|
| 461 | //
|
---|
| 462 | this.errorProvider.ContainerControl = this;
|
---|
| 463 | //
|
---|
[1287] | 464 | // OffspringSelectionGpEditor
|
---|
[1156] | 465 | //
|
---|
| 466 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 467 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
| 468 | this.Controls.Add(this.tabControl);
|
---|
| 469 | this.Controls.Add(this.cloneEngineButton);
|
---|
| 470 | this.Controls.Add(this.resetButton);
|
---|
| 471 | this.Controls.Add(this.abortButton);
|
---|
| 472 | this.Controls.Add(this.executeButton);
|
---|
[1287] | 473 | this.Name = "OffspringSelectionGpEditor";
|
---|
[1156] | 474 | this.Size = new System.Drawing.Size(526, 419);
|
---|
| 475 | this.tabControl.ResumeLayout(false);
|
---|
| 476 | this.parametersTabPage.ResumeLayout(false);
|
---|
| 477 | this.parametersTabPage.PerformLayout();
|
---|
| 478 | this.scopesTabPage.ResumeLayout(false);
|
---|
[2728] | 479 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
|
---|
[1156] | 480 | this.ResumeLayout(false);
|
---|
| 481 |
|
---|
| 482 | }
|
---|
| 483 |
|
---|
| 484 | #endregion
|
---|
| 485 |
|
---|
| 486 | private System.Windows.Forms.Button executeButton;
|
---|
[1287] | 487 | protected System.Windows.Forms.TabControl tabControl;
|
---|
| 488 | protected System.Windows.Forms.TabPage parametersTabPage;
|
---|
[1156] | 489 | private System.Windows.Forms.Button abortButton;
|
---|
| 490 | private System.Windows.Forms.Button resetButton;
|
---|
| 491 | private System.Windows.Forms.TabPage scopesTabPage;
|
---|
| 492 | private System.Windows.Forms.Button cloneEngineButton;
|
---|
| 493 | private HeuristicLab.Core.ScopeView scopeView;
|
---|
[2728] | 494 | protected System.Windows.Forms.Button functionLibraryInjectorViewButton;
|
---|
| 495 | protected System.Windows.Forms.Button functionLibraryInjectorSetButton;
|
---|
| 496 | protected System.Windows.Forms.TextBox functionLibraryInjectorTextBox;
|
---|
| 497 | protected System.Windows.Forms.Label label1;
|
---|
| 498 | protected System.Windows.Forms.TextBox comparisonFactorTextBox;
|
---|
| 499 | protected System.Windows.Forms.Label label2;
|
---|
| 500 | protected System.Windows.Forms.TextBox mutationRateTextBox;
|
---|
| 501 | protected System.Windows.Forms.Label mutationRateLabel;
|
---|
| 502 | protected System.Windows.Forms.TextBox populationSizeTextBox;
|
---|
| 503 | protected System.Windows.Forms.Label populationSizeLabel;
|
---|
| 504 | protected System.Windows.Forms.TextBox maximumEvaluatedSolutionsTextBox;
|
---|
| 505 | protected System.Windows.Forms.Label maxEvaluatedSolutionsLabel;
|
---|
| 506 | protected System.Windows.Forms.TextBox elitesTextBox;
|
---|
| 507 | protected System.Windows.Forms.Label elitesLabel;
|
---|
| 508 | protected System.Windows.Forms.TextBox randomSeedTextBox;
|
---|
| 509 | protected System.Windows.Forms.Label setRandomSeedRandomlyLabel;
|
---|
| 510 | protected System.Windows.Forms.Label randomSeedLabel;
|
---|
| 511 | protected System.Windows.Forms.CheckBox setRandomSeedRandomlyCheckBox;
|
---|
| 512 | protected System.Windows.Forms.Label problemInitializationLabel;
|
---|
| 513 | protected System.Windows.Forms.TextBox problemInitializationTextBox;
|
---|
| 514 | protected System.Windows.Forms.Button setProblemInitializationButton;
|
---|
| 515 | protected System.Windows.Forms.Button viewProblemInitializationButton;
|
---|
| 516 | protected System.Windows.Forms.TextBox selectionPressureTextBox;
|
---|
| 517 | protected System.Windows.Forms.Label selectionPressureLabel;
|
---|
| 518 | protected System.Windows.Forms.TextBox successRatioLimitTextBox;
|
---|
| 519 | protected System.Windows.Forms.Label label3;
|
---|
| 520 | private System.Windows.Forms.ErrorProvider errorProvider;
|
---|
[1156] | 521 | }
|
---|
| 522 | }
|
---|