Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/Symbols/VariableView.Designer.cs @ 5809

Last change on this file since 5809 was 5809, checked in by mkommend, 13 years ago

#1418: Reintegrated branch into trunk.

File size: 15.7 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2011 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.Problems.DataAnalysis.Symbolic.Views {
23  partial class VariableView {
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 (disposing && (components != null)) {
35        components.Dispose();
36      }
37      base.Dispose(disposing);
38    }
39
40    #region Component Designer generated code
41
42    /// <summary>
43    /// Required method for Designer support - do not modify
44    /// the contents of this method with the code editor.
45    /// </summary>
46    private void InitializeComponent() {
47      this.weightMuLabel = new System.Windows.Forms.Label();
48      this.weightInitializationMuTextBox = new System.Windows.Forms.TextBox();
49      this.initializationGroupBox = new System.Windows.Forms.GroupBox();
50      this.weightSigmaLabel = new System.Windows.Forms.Label();
51      this.weightInitializationSigmaTextBox = new System.Windows.Forms.TextBox();
52      this.mutationGroupBox = new System.Windows.Forms.GroupBox();
53      this.multiplicativeWeightChangeLabel = new System.Windows.Forms.Label();
54      this.multiplicativeWeightChangeSigmaTextBox = new System.Windows.Forms.TextBox();
55      this.additiveWeightChangeLabel = new System.Windows.Forms.Label();
56      this.additiveWeightChangeSigmaTextBox = new System.Windows.Forms.TextBox();
57      this.tabControl = new System.Windows.Forms.TabControl();
58      this.variableNamesTabPage = new System.Windows.Forms.TabPage();
59      this.parametersTabPage = new System.Windows.Forms.TabPage();
60      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
61      this.initializationGroupBox.SuspendLayout();
62      this.mutationGroupBox.SuspendLayout();
63      this.tabControl.SuspendLayout();
64      this.parametersTabPage.SuspendLayout();
65      this.SuspendLayout();
66      //
67      // initialFrequencyLabel
68      //
69      this.toolTip.SetToolTip(this.initialFrequencyLabel, "Relative frequency of the symbol in randomly created trees");
70      //
71      // initialFrequencyTextBox
72      //
73      this.errorProvider.SetIconAlignment(this.initialFrequencyTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
74      this.initialFrequencyTextBox.Size = new System.Drawing.Size(285, 20);
75      //
76      // nameTextBox
77      //
78      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
79      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
80      this.nameTextBox.Size = new System.Drawing.Size(285, 20);
81      //
82      // descriptionTextBox
83      //
84      this.errorProvider.SetIconAlignment(this.descriptionTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
85      this.descriptionTextBox.Size = new System.Drawing.Size(285, 20);
86      //
87      // weightMuLabel
88      //
89      this.weightMuLabel.AutoSize = true;
90      this.weightMuLabel.Location = new System.Drawing.Point(6, 22);
91      this.weightMuLabel.Name = "weightMuLabel";
92      this.weightMuLabel.Size = new System.Drawing.Size(67, 13);
93      this.weightMuLabel.TabIndex = 6;
94      this.weightMuLabel.Text = "Weight (mu):";
95      this.toolTip.SetToolTip(this.weightMuLabel, "The mu (mean) parameter of the normal distribution to use for initial weights.");
96      //
97      // weightInitializationMuTextBox
98      //
99      this.weightInitializationMuTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
100                  | System.Windows.Forms.AnchorStyles.Right)));
101      this.weightInitializationMuTextBox.Location = new System.Drawing.Point(92, 19);
102      this.weightInitializationMuTextBox.Name = "weightInitializationMuTextBox";
103      this.weightInitializationMuTextBox.Size = new System.Drawing.Size(266, 20);
104      this.weightInitializationMuTextBox.TabIndex = 7;
105      this.toolTip.SetToolTip(this.weightInitializationMuTextBox, "The mu (mean) parameter of the normal distribution from which to sample the initi" +
106              "al weights.");
107      this.weightInitializationMuTextBox.TextChanged += new System.EventHandler(this.weightMuTextBox_TextChanged);
108      //
109      // initializationGroupBox
110      //
111      this.initializationGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
112                  | System.Windows.Forms.AnchorStyles.Right)));
113      this.initializationGroupBox.Controls.Add(this.weightSigmaLabel);
114      this.initializationGroupBox.Controls.Add(this.weightInitializationSigmaTextBox);
115      this.initializationGroupBox.Controls.Add(this.weightMuLabel);
116      this.initializationGroupBox.Controls.Add(this.weightInitializationMuTextBox);
117      this.initializationGroupBox.Location = new System.Drawing.Point(6, 6);
118      this.initializationGroupBox.Name = "initializationGroupBox";
119      this.initializationGroupBox.Size = new System.Drawing.Size(364, 73);
120      this.initializationGroupBox.TabIndex = 8;
121      this.initializationGroupBox.TabStop = false;
122      this.initializationGroupBox.Text = "Initialization";
123      //
124      // weightSigmaLabel
125      //
126      this.weightSigmaLabel.AutoSize = true;
127      this.weightSigmaLabel.Location = new System.Drawing.Point(6, 48);
128      this.weightSigmaLabel.Name = "weightSigmaLabel";
129      this.weightSigmaLabel.Size = new System.Drawing.Size(80, 13);
130      this.weightSigmaLabel.TabIndex = 8;
131      this.weightSigmaLabel.Text = "Weight (sigma):";
132      this.toolTip.SetToolTip(this.weightSigmaLabel, "The sigma parameter for the normal distribution to use for the initial weights.");
133      //
134      // weightInitializationSigmaTextBox
135      //
136      this.weightInitializationSigmaTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
137                  | System.Windows.Forms.AnchorStyles.Right)));
138      this.weightInitializationSigmaTextBox.Location = new System.Drawing.Point(92, 45);
139      this.weightInitializationSigmaTextBox.Name = "weightInitializationSigmaTextBox";
140      this.weightInitializationSigmaTextBox.Size = new System.Drawing.Size(266, 20);
141      this.weightInitializationSigmaTextBox.TabIndex = 9;
142      this.toolTip.SetToolTip(this.weightInitializationSigmaTextBox, "The sigma parameter for the normal distribution from which to sample the initial " +
143              "weights.");
144      this.weightInitializationSigmaTextBox.TextChanged += new System.EventHandler(this.weightSigmaTextBox_TextChanged);
145      //
146      // mutationGroupBox
147      //
148      this.mutationGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
149                  | System.Windows.Forms.AnchorStyles.Right)));
150      this.mutationGroupBox.Controls.Add(this.multiplicativeWeightChangeLabel);
151      this.mutationGroupBox.Controls.Add(this.multiplicativeWeightChangeSigmaTextBox);
152      this.mutationGroupBox.Controls.Add(this.additiveWeightChangeLabel);
153      this.mutationGroupBox.Controls.Add(this.additiveWeightChangeSigmaTextBox);
154      this.mutationGroupBox.Location = new System.Drawing.Point(6, 85);
155      this.mutationGroupBox.Name = "mutationGroupBox";
156      this.mutationGroupBox.Size = new System.Drawing.Size(364, 73);
157      this.mutationGroupBox.TabIndex = 9;
158      this.mutationGroupBox.TabStop = false;
159      this.mutationGroupBox.Text = "Mutation";
160      //
161      // multiplicativeWeightChangeLabel
162      //
163      this.multiplicativeWeightChangeLabel.AutoSize = true;
164      this.multiplicativeWeightChangeLabel.Location = new System.Drawing.Point(6, 48);
165      this.multiplicativeWeightChangeLabel.Name = "multiplicativeWeightChangeLabel";
166      this.multiplicativeWeightChangeLabel.Size = new System.Drawing.Size(180, 13);
167      this.multiplicativeWeightChangeLabel.TabIndex = 8;
168      this.multiplicativeWeightChangeLabel.Text = "Multiplicative weight change (sigma):";
169      this.toolTip.SetToolTip(this.multiplicativeWeightChangeLabel, "The sigma parameter for the normal distribution to use to sample a multiplicative" +
170              " change in weight.");
171      //
172      // multiplicativeWeightChangeSigmaTextBox
173      //
174      this.multiplicativeWeightChangeSigmaTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
175                  | System.Windows.Forms.AnchorStyles.Right)));
176      this.multiplicativeWeightChangeSigmaTextBox.Location = new System.Drawing.Point(201, 45);
177      this.multiplicativeWeightChangeSigmaTextBox.Name = "multiplicativeWeightChangeSigmaTextBox";
178      this.multiplicativeWeightChangeSigmaTextBox.Size = new System.Drawing.Size(157, 20);
179      this.multiplicativeWeightChangeSigmaTextBox.TabIndex = 9;
180      this.toolTip.SetToolTip(this.multiplicativeWeightChangeSigmaTextBox, "The sigma (std.dev.) parameter for the normal distribution to sample a multiplica" +
181              "tive change in weight.");
182      this.multiplicativeWeightChangeSigmaTextBox.TextChanged += new System.EventHandler(this.multiplicativeWeightChangeSigmaTextBox_TextChanged);
183      //
184      // additiveWeightChangeLabel
185      //
186      this.additiveWeightChangeLabel.AutoSize = true;
187      this.additiveWeightChangeLabel.Location = new System.Drawing.Point(6, 22);
188      this.additiveWeightChangeLabel.Name = "additiveWeightChangeLabel";
189      this.additiveWeightChangeLabel.Size = new System.Drawing.Size(157, 13);
190      this.additiveWeightChangeLabel.TabIndex = 6;
191      this.additiveWeightChangeLabel.Text = "Additive weight change (sigma):";
192      this.toolTip.SetToolTip(this.additiveWeightChangeLabel, "The sigma (std.dev.) parameter for the normal distribution to sample an additive " +
193              "change in weight.");
194      //
195      // additiveWeightChangeSigmaTextBox
196      //
197      this.additiveWeightChangeSigmaTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
198                  | System.Windows.Forms.AnchorStyles.Right)));
199      this.additiveWeightChangeSigmaTextBox.Location = new System.Drawing.Point(201, 19);
200      this.additiveWeightChangeSigmaTextBox.Name = "additiveWeightChangeSigmaTextBox";
201      this.additiveWeightChangeSigmaTextBox.Size = new System.Drawing.Size(157, 20);
202      this.additiveWeightChangeSigmaTextBox.TabIndex = 7;
203      this.toolTip.SetToolTip(this.additiveWeightChangeSigmaTextBox, "The sigma (std.dev.) parameter for the normal distribution to sample an additive " +
204              "change in weight.");
205      this.additiveWeightChangeSigmaTextBox.TextChanged += new System.EventHandler(this.additiveWeightChangeSigmaTextBox_TextChanged);
206      //
207      // tabControl
208      //
209      this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
210                  | System.Windows.Forms.AnchorStyles.Left)
211                  | System.Windows.Forms.AnchorStyles.Right)));
212      this.tabControl.Controls.Add(this.variableNamesTabPage);
213      this.tabControl.Controls.Add(this.parametersTabPage);
214      this.tabControl.Location = new System.Drawing.Point(3, 79);
215      this.tabControl.Name = "tabControl";
216      this.tabControl.SelectedIndex = 0;
217      this.tabControl.Size = new System.Drawing.Size(399, 212);
218      this.tabControl.TabIndex = 10;
219      //
220      // variableNamesTabPage
221      //
222      this.variableNamesTabPage.Location = new System.Drawing.Point(4, 22);
223      this.variableNamesTabPage.Name = "variableNamesTabPage";
224      this.variableNamesTabPage.Padding = new System.Windows.Forms.Padding(3);
225      this.variableNamesTabPage.Size = new System.Drawing.Size(391, 186);
226      this.variableNamesTabPage.TabIndex = 0;
227      this.variableNamesTabPage.Text = "Variable Names";
228      this.variableNamesTabPage.UseVisualStyleBackColor = true;
229      //
230      // parametersTabPage
231      //
232      this.parametersTabPage.Controls.Add(this.mutationGroupBox);
233      this.parametersTabPage.Controls.Add(this.initializationGroupBox);
234      this.parametersTabPage.Location = new System.Drawing.Point(4, 22);
235      this.parametersTabPage.Name = "parametersTabPage";
236      this.parametersTabPage.Padding = new System.Windows.Forms.Padding(3);
237      this.parametersTabPage.Size = new System.Drawing.Size(391, 186);
238      this.parametersTabPage.TabIndex = 1;
239      this.parametersTabPage.Text = "Parameters";
240      this.parametersTabPage.UseVisualStyleBackColor = true;
241      //
242      // VariableView
243      //
244      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
245      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
246      this.Controls.Add(this.tabControl);
247      this.Name = "VariableView";
248      this.Size = new System.Drawing.Size(408, 294);
249      this.Controls.SetChildIndex(this.initialFrequencyTextBox, 0);
250      this.Controls.SetChildIndex(this.initialFrequencyLabel, 0);
251      this.Controls.SetChildIndex(this.nameLabel, 0);
252      this.Controls.SetChildIndex(this.descriptionLabel, 0);
253      this.Controls.SetChildIndex(this.nameTextBox, 0);
254      this.Controls.SetChildIndex(this.descriptionTextBox, 0);
255      this.Controls.SetChildIndex(this.tabControl, 0);
256      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
257      this.initializationGroupBox.ResumeLayout(false);
258      this.initializationGroupBox.PerformLayout();
259      this.mutationGroupBox.ResumeLayout(false);
260      this.mutationGroupBox.PerformLayout();
261      this.tabControl.ResumeLayout(false);
262      this.parametersTabPage.ResumeLayout(false);
263      this.ResumeLayout(false);
264      this.PerformLayout();
265
266    }
267
268    #endregion
269
270    private System.Windows.Forms.Label weightMuLabel;
271    private System.Windows.Forms.TextBox weightInitializationMuTextBox;
272    protected System.Windows.Forms.GroupBox initializationGroupBox;
273    private System.Windows.Forms.Label weightSigmaLabel;
274    private System.Windows.Forms.TextBox weightInitializationSigmaTextBox;
275    protected System.Windows.Forms.GroupBox mutationGroupBox;
276    private System.Windows.Forms.Label multiplicativeWeightChangeLabel;
277    private System.Windows.Forms.TextBox multiplicativeWeightChangeSigmaTextBox;
278    private System.Windows.Forms.Label additiveWeightChangeLabel;
279    private System.Windows.Forms.TextBox additiveWeightChangeSigmaTextBox;
280    private System.Windows.Forms.TabControl tabControl;
281    private System.Windows.Forms.TabPage variableNamesTabPage;
282    private System.Windows.Forms.TabPage parametersTabPage;
283  }
284}
Note: See TracBrowser for help on using the repository browser.