Free cookie consent management tool by TermsFeed Policy Generator

source: tags/3.3.0/HeuristicLab.Problems.DataAnalysis.Views/3.3/Symbolic/Symbols/VariableView.Designer.cs @ 3838

Last change on this file since 3838 was 3824, checked in by gkronber, 14 years ago

Implemented view for symbolic expression grammars and symbols. #1014

File size: 12.3 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 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.Encodings.SymbolicExpressionTreeEncoding.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.weightNuLabel = new System.Windows.Forms.Label();
48      this.weightNuTextBox = new System.Windows.Forms.TextBox();
49      this.initializationGroupBox = new System.Windows.Forms.GroupBox();
50      this.weightSigmaLabel = new System.Windows.Forms.Label();
51      this.weightSigmaTextBox = new System.Windows.Forms.TextBox();
52      this.mutationGroupBox = new System.Windows.Forms.GroupBox();
53      this.stdDevWeightChangeLabel = new System.Windows.Forms.Label();
54      this.weightChangeSigmaTextBox = new System.Windows.Forms.TextBox();
55      this.meanWeightChangeLabel = new System.Windows.Forms.Label();
56      this.weightChangeNuTextBox = new System.Windows.Forms.TextBox();
57      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
58      this.initializationGroupBox.SuspendLayout();
59      this.mutationGroupBox.SuspendLayout();
60      this.SuspendLayout();
61      //
62      // initialFrequencyLabel
63      //
64      this.toolTip.SetToolTip(this.initialFrequencyLabel, "Relative frequency of the symbol in randomly created trees");
65      //
66      // initialFrequencyTextBox
67      //
68      this.initialFrequencyTextBox.Size = new System.Drawing.Size(203, 20);
69      //
70      // nameTextBox
71      //
72      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
73      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
74      this.nameTextBox.Size = new System.Drawing.Size(203, 20);
75      //
76      // descriptionTextBox
77      //
78      this.descriptionTextBox.Size = new System.Drawing.Size(203, 20);
79      //
80      // weightNuLabel
81      //
82      this.weightNuLabel.AutoSize = true;
83      this.weightNuLabel.Location = new System.Drawing.Point(6, 22);
84      this.weightNuLabel.Name = "weightNuLabel";
85      this.weightNuLabel.Size = new System.Drawing.Size(65, 13);
86      this.weightNuLabel.TabIndex = 6;
87      this.weightNuLabel.Text = "Weight (nu):";
88      this.toolTip.SetToolTip(this.weightNuLabel, "The nu (mean) parameter of the normal distribution to use for initial weights.");
89      //
90      // weightNuTextBox
91      //
92      this.weightNuTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
93                  | System.Windows.Forms.AnchorStyles.Right)));
94      this.weightNuTextBox.Location = new System.Drawing.Point(92, 19);
95      this.weightNuTextBox.Name = "weightNuTextBox";
96      this.weightNuTextBox.Size = new System.Drawing.Size(201, 20);
97      this.weightNuTextBox.TabIndex = 7;
98      this.toolTip.SetToolTip(this.weightNuTextBox, "The nu (mean) parameter of the normal distribution from which to sample the initi" +
99              "al weights.");
100      this.weightNuTextBox.TextChanged += new System.EventHandler(this.weightNuTextBox_TextChanged);
101      //
102      // initializationGroupBox
103      //
104      this.initializationGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
105                  | System.Windows.Forms.AnchorStyles.Right)));
106      this.initializationGroupBox.Controls.Add(this.weightSigmaLabel);
107      this.initializationGroupBox.Controls.Add(this.weightSigmaTextBox);
108      this.initializationGroupBox.Controls.Add(this.weightNuLabel);
109      this.initializationGroupBox.Controls.Add(this.weightNuTextBox);
110      this.initializationGroupBox.Location = new System.Drawing.Point(3, 79);
111      this.initializationGroupBox.Name = "initializationGroupBox";
112      this.initializationGroupBox.Size = new System.Drawing.Size(320, 73);
113      this.initializationGroupBox.TabIndex = 8;
114      this.initializationGroupBox.TabStop = false;
115      this.initializationGroupBox.Text = "Initialization";
116      //
117      // weightSigmaLabel
118      //
119      this.weightSigmaLabel.AutoSize = true;
120      this.weightSigmaLabel.Location = new System.Drawing.Point(6, 48);
121      this.weightSigmaLabel.Name = "weightSigmaLabel";
122      this.weightSigmaLabel.Size = new System.Drawing.Size(80, 13);
123      this.weightSigmaLabel.TabIndex = 8;
124      this.weightSigmaLabel.Text = "Weight (sigma):";
125      this.toolTip.SetToolTip(this.weightSigmaLabel, "The sigma parameter for the normal distribution to use for the initial weights.");
126      //
127      // weightSigmaTextBox
128      //
129      this.weightSigmaTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
130                  | System.Windows.Forms.AnchorStyles.Right)));
131      this.weightSigmaTextBox.Location = new System.Drawing.Point(92, 45);
132      this.weightSigmaTextBox.Name = "weightSigmaTextBox";
133      this.weightSigmaTextBox.Size = new System.Drawing.Size(201, 20);
134      this.weightSigmaTextBox.TabIndex = 9;
135      this.toolTip.SetToolTip(this.weightSigmaTextBox, "The sigma parameter for the normal distribution from which to sample the initial " +
136              "weights.");
137      this.weightSigmaTextBox.TextChanged += new System.EventHandler(this.weightSigmaTextBox_TextChanged);
138      //
139      // mutationGroupBox
140      //
141      this.mutationGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
142                  | System.Windows.Forms.AnchorStyles.Right)));
143      this.mutationGroupBox.Controls.Add(this.stdDevWeightChangeLabel);
144      this.mutationGroupBox.Controls.Add(this.weightChangeSigmaTextBox);
145      this.mutationGroupBox.Controls.Add(this.meanWeightChangeLabel);
146      this.mutationGroupBox.Controls.Add(this.weightChangeNuTextBox);
147      this.mutationGroupBox.Location = new System.Drawing.Point(3, 158);
148      this.mutationGroupBox.Name = "mutationGroupBox";
149      this.mutationGroupBox.Size = new System.Drawing.Size(320, 73);
150      this.mutationGroupBox.TabIndex = 9;
151      this.mutationGroupBox.TabStop = false;
152      this.mutationGroupBox.Text = "Mutation";
153      //
154      // stdDevWeightChangeLabel
155      //
156      this.stdDevWeightChangeLabel.AutoSize = true;
157      this.stdDevWeightChangeLabel.Location = new System.Drawing.Point(6, 48);
158      this.stdDevWeightChangeLabel.Name = "stdDevWeightChangeLabel";
159      this.stdDevWeightChangeLabel.Size = new System.Drawing.Size(119, 13);
160      this.stdDevWeightChangeLabel.TabIndex = 8;
161      this.stdDevWeightChangeLabel.Text = "Weight change (sigma):";
162      this.toolTip.SetToolTip(this.stdDevWeightChangeLabel, "The sigma parameter for the normal distribution to use to sample the change in we" +
163              "ight.");
164      //
165      // weightChangeSigmaTextBox
166      //
167      this.weightChangeSigmaTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
168                  | System.Windows.Forms.AnchorStyles.Right)));
169      this.weightChangeSigmaTextBox.Location = new System.Drawing.Point(131, 45);
170      this.weightChangeSigmaTextBox.Name = "weightChangeSigmaTextBox";
171      this.weightChangeSigmaTextBox.Size = new System.Drawing.Size(162, 20);
172      this.weightChangeSigmaTextBox.TabIndex = 9;
173      this.toolTip.SetToolTip(this.weightChangeSigmaTextBox, "The sigma parameter for the normal distribution to use to sample the change in we" +
174              "ight.");
175      this.weightChangeSigmaTextBox.TextChanged += new System.EventHandler(this.weightChangeSigmaTextBox_TextChanged);
176      //
177      // meanWeightChangeLabel
178      //
179      this.meanWeightChangeLabel.AutoSize = true;
180      this.meanWeightChangeLabel.Location = new System.Drawing.Point(6, 22);
181      this.meanWeightChangeLabel.Name = "meanWeightChangeLabel";
182      this.meanWeightChangeLabel.Size = new System.Drawing.Size(104, 13);
183      this.meanWeightChangeLabel.TabIndex = 6;
184      this.meanWeightChangeLabel.Text = "Weight change (nu):";
185      this.toolTip.SetToolTip(this.meanWeightChangeLabel, "The nu (mean) parameter for the normal distribution to sample the change in weigh" +
186              "t.");
187      //
188      // weightChangeNuTextBox
189      //
190      this.weightChangeNuTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
191                  | System.Windows.Forms.AnchorStyles.Right)));
192      this.weightChangeNuTextBox.Location = new System.Drawing.Point(131, 19);
193      this.weightChangeNuTextBox.Name = "weightChangeNuTextBox";
194      this.weightChangeNuTextBox.Size = new System.Drawing.Size(162, 20);
195      this.weightChangeNuTextBox.TabIndex = 7;
196      this.toolTip.SetToolTip(this.weightChangeNuTextBox, "The nu (mean) parameter for the normal distribution to sample the change in weigh" +
197              "t.");
198      this.weightChangeNuTextBox.TextChanged += new System.EventHandler(this.weightChangeNuTextBox_TextChanged);
199      //
200      // VariableView
201      //
202      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
203      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
204      this.Controls.Add(this.mutationGroupBox);
205      this.Controls.Add(this.initializationGroupBox);
206      this.Name = "VariableView";
207      this.Size = new System.Drawing.Size(326, 235);
208      this.Controls.SetChildIndex(this.initializationGroupBox, 0);
209      this.Controls.SetChildIndex(this.initialFrequencyTextBox, 0);
210      this.Controls.SetChildIndex(this.initialFrequencyLabel, 0);
211      this.Controls.SetChildIndex(this.nameLabel, 0);
212      this.Controls.SetChildIndex(this.descriptionLabel, 0);
213      this.Controls.SetChildIndex(this.nameTextBox, 0);
214      this.Controls.SetChildIndex(this.descriptionTextBox, 0);
215      this.Controls.SetChildIndex(this.mutationGroupBox, 0);
216      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
217      this.initializationGroupBox.ResumeLayout(false);
218      this.initializationGroupBox.PerformLayout();
219      this.mutationGroupBox.ResumeLayout(false);
220      this.mutationGroupBox.PerformLayout();
221      this.ResumeLayout(false);
222      this.PerformLayout();
223
224    }
225
226    #endregion
227
228    private System.Windows.Forms.Label weightNuLabel;
229    private System.Windows.Forms.TextBox weightNuTextBox;
230    protected System.Windows.Forms.GroupBox initializationGroupBox;
231    private System.Windows.Forms.Label weightSigmaLabel;
232    private System.Windows.Forms.TextBox weightSigmaTextBox;
233    protected System.Windows.Forms.GroupBox mutationGroupBox;
234    private System.Windows.Forms.Label stdDevWeightChangeLabel;
235    private System.Windows.Forms.TextBox weightChangeSigmaTextBox;
236    private System.Windows.Forms.Label meanWeightChangeLabel;
237    private System.Windows.Forms.TextBox weightChangeNuTextBox;
238
239  }
240}
Note: See TracBrowser for help on using the repository browser.