Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.3/Symbolic/Symbols/ConstantView.Designer.cs @ 5467

Last change on this file since 5467 was 5445, checked in by swagner, 14 years ago

Updated year of copyrights (#1406)

File size: 13.1 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.Views.Symbolic.Symbols {
23  partial class ConstantView {
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.minValueTextBox = new System.Windows.Forms.TextBox();
49      this.initializationGroupBox = new System.Windows.Forms.GroupBox();
50      this.weightSigmaLabel = new System.Windows.Forms.Label();
51      this.maxValueTextBox = new System.Windows.Forms.TextBox();
52      this.mutationGroupBox = new System.Windows.Forms.GroupBox();
53      this.multiplicativeChangeLabel = new System.Windows.Forms.Label();
54      this.multiplicativeChangeSigmaTextBox = new System.Windows.Forms.TextBox();
55      this.additiveChangeLabel = new System.Windows.Forms.Label();
56      this.additiveChangeSigmaTextBox = 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.errorProvider.SetIconAlignment(this.initialFrequencyTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
69      this.initialFrequencyTextBox.Size = new System.Drawing.Size(275, 20);
70      //
71      // nameTextBox
72      //
73      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
74      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
75      this.nameTextBox.Size = new System.Drawing.Size(275, 20);
76      //
77      // descriptionTextBox
78      //
79      this.errorProvider.SetIconAlignment(this.descriptionTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
80      this.descriptionTextBox.Size = new System.Drawing.Size(275, 20);
81      //
82      // weightNuLabel
83      //
84      this.weightNuLabel.AutoSize = true;
85      this.weightNuLabel.Location = new System.Drawing.Point(6, 22);
86      this.weightNuLabel.Name = "weightNuLabel";
87      this.weightNuLabel.Size = new System.Drawing.Size(56, 13);
88      this.weightNuLabel.TabIndex = 6;
89      this.weightNuLabel.Text = "Min value:";
90      this.toolTip.SetToolTip(this.weightNuLabel, "The minimal value to use for random initialization of constants.");
91      //
92      // minValueTextBox
93      //
94      this.minValueTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
95                  | System.Windows.Forms.AnchorStyles.Right)));
96      this.errorProvider.SetIconAlignment(this.minValueTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
97      this.minValueTextBox.Location = new System.Drawing.Point(92, 19);
98      this.minValueTextBox.Name = "minValueTextBox";
99      this.minValueTextBox.Size = new System.Drawing.Size(291, 20);
100      this.minValueTextBox.TabIndex = 7;
101      this.toolTip.SetToolTip(this.minValueTextBox, "The minimal value to use for random initialization of constants.");
102      this.minValueTextBox.TextChanged += new System.EventHandler(this.minValueTextBox_TextChanged);
103      //
104      // initializationGroupBox
105      //
106      this.initializationGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
107                  | System.Windows.Forms.AnchorStyles.Right)));
108      this.initializationGroupBox.Controls.Add(this.weightSigmaLabel);
109      this.initializationGroupBox.Controls.Add(this.maxValueTextBox);
110      this.initializationGroupBox.Controls.Add(this.weightNuLabel);
111      this.initializationGroupBox.Controls.Add(this.minValueTextBox);
112      this.initializationGroupBox.Location = new System.Drawing.Point(3, 79);
113      this.initializationGroupBox.Name = "initializationGroupBox";
114      this.initializationGroupBox.Size = new System.Drawing.Size(389, 73);
115      this.initializationGroupBox.TabIndex = 8;
116      this.initializationGroupBox.TabStop = false;
117      this.initializationGroupBox.Text = "Initialization";
118      //
119      // weightSigmaLabel
120      //
121      this.weightSigmaLabel.AutoSize = true;
122      this.weightSigmaLabel.Location = new System.Drawing.Point(6, 48);
123      this.weightSigmaLabel.Name = "weightSigmaLabel";
124      this.weightSigmaLabel.Size = new System.Drawing.Size(59, 13);
125      this.weightSigmaLabel.TabIndex = 8;
126      this.weightSigmaLabel.Text = "Max value:";
127      this.toolTip.SetToolTip(this.weightSigmaLabel, "The maximal value to use for random initialization of constants.");
128      //
129      // maxValueTextBox
130      //
131      this.maxValueTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
132                  | System.Windows.Forms.AnchorStyles.Right)));
133      this.errorProvider.SetIconAlignment(this.maxValueTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
134      this.maxValueTextBox.Location = new System.Drawing.Point(92, 45);
135      this.maxValueTextBox.Name = "maxValueTextBox";
136      this.maxValueTextBox.Size = new System.Drawing.Size(291, 20);
137      this.maxValueTextBox.TabIndex = 9;
138      this.toolTip.SetToolTip(this.maxValueTextBox, "The maximal value to use for random initialization of constants.");
139      this.maxValueTextBox.TextChanged += new System.EventHandler(this.maxValueTextBox_TextChanged);
140      //
141      // mutationGroupBox
142      //
143      this.mutationGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
144                  | System.Windows.Forms.AnchorStyles.Right)));
145      this.mutationGroupBox.Controls.Add(this.multiplicativeChangeLabel);
146      this.mutationGroupBox.Controls.Add(this.multiplicativeChangeSigmaTextBox);
147      this.mutationGroupBox.Controls.Add(this.additiveChangeLabel);
148      this.mutationGroupBox.Controls.Add(this.additiveChangeSigmaTextBox);
149      this.mutationGroupBox.Location = new System.Drawing.Point(3, 158);
150      this.mutationGroupBox.Name = "mutationGroupBox";
151      this.mutationGroupBox.Size = new System.Drawing.Size(389, 73);
152      this.mutationGroupBox.TabIndex = 9;
153      this.mutationGroupBox.TabStop = false;
154      this.mutationGroupBox.Text = "Mutation";
155      //
156      // multiplicativeChangeLabel
157      //
158      this.multiplicativeChangeLabel.AutoSize = true;
159      this.multiplicativeChangeLabel.Location = new System.Drawing.Point(6, 48);
160      this.multiplicativeChangeLabel.Name = "multiplicativeChangeLabel";
161      this.multiplicativeChangeLabel.Size = new System.Drawing.Size(146, 13);
162      this.multiplicativeChangeLabel.TabIndex = 8;
163      this.multiplicativeChangeLabel.Text = "Multiplicative change (sigma):";
164      this.toolTip.SetToolTip(this.multiplicativeChangeLabel, "The sigma (std. dev.) parameter for the normal distribution to use to sample the " +
165              "multiplicative change.");
166      //
167      // multiplicativeChangeSigmaTextBox
168      //
169      this.multiplicativeChangeSigmaTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
170                  | System.Windows.Forms.AnchorStyles.Right)));
171      this.errorProvider.SetIconAlignment(this.multiplicativeChangeSigmaTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
172      this.multiplicativeChangeSigmaTextBox.Location = new System.Drawing.Point(168, 45);
173      this.multiplicativeChangeSigmaTextBox.Name = "multiplicativeChangeSigmaTextBox";
174      this.multiplicativeChangeSigmaTextBox.Size = new System.Drawing.Size(215, 20);
175      this.multiplicativeChangeSigmaTextBox.TabIndex = 9;
176      this.toolTip.SetToolTip(this.multiplicativeChangeSigmaTextBox, "The sigma (std. dev.) parameter for the normal distribution to use to sample a mu" +
177              "ltiplicative change.");
178      this.multiplicativeChangeSigmaTextBox.TextChanged += new System.EventHandler(this.multiplicativeChangeSigmaTextBox_TextChanged);
179      //
180      // additiveChangeLabel
181      //
182      this.additiveChangeLabel.AutoSize = true;
183      this.additiveChangeLabel.Location = new System.Drawing.Point(6, 22);
184      this.additiveChangeLabel.Name = "additiveChangeLabel";
185      this.additiveChangeLabel.Size = new System.Drawing.Size(123, 13);
186      this.additiveChangeLabel.TabIndex = 6;
187      this.additiveChangeLabel.Text = "Additive change (sigma):";
188      this.toolTip.SetToolTip(this.additiveChangeLabel, "The sigma (std. dev.) parameter for the normal distribution to sample the additiv" +
189              "e change.");
190      //
191      // additiveChangeSigmaTextBox
192      //
193      this.additiveChangeSigmaTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
194                  | System.Windows.Forms.AnchorStyles.Right)));
195      this.errorProvider.SetIconAlignment(this.additiveChangeSigmaTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
196      this.additiveChangeSigmaTextBox.Location = new System.Drawing.Point(168, 19);
197      this.additiveChangeSigmaTextBox.Name = "additiveChangeSigmaTextBox";
198      this.additiveChangeSigmaTextBox.Size = new System.Drawing.Size(215, 20);
199      this.additiveChangeSigmaTextBox.TabIndex = 7;
200      this.toolTip.SetToolTip(this.additiveChangeSigmaTextBox, "The sigma (std. dev.) parameter for the normal distribution to use to sample an a" +
201              "dditive change.");
202      this.additiveChangeSigmaTextBox.TextChanged += new System.EventHandler(this.additiveChangeSigmaTextBox_TextChanged);
203      //
204      // ConstantView
205      //
206      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
207      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
208      this.Controls.Add(this.mutationGroupBox);
209      this.Controls.Add(this.initializationGroupBox);
210      this.Name = "ConstantView";
211      this.Size = new System.Drawing.Size(398, 237);
212      this.Controls.SetChildIndex(this.initializationGroupBox, 0);
213      this.Controls.SetChildIndex(this.initialFrequencyTextBox, 0);
214      this.Controls.SetChildIndex(this.initialFrequencyLabel, 0);
215      this.Controls.SetChildIndex(this.nameLabel, 0);
216      this.Controls.SetChildIndex(this.descriptionLabel, 0);
217      this.Controls.SetChildIndex(this.nameTextBox, 0);
218      this.Controls.SetChildIndex(this.descriptionTextBox, 0);
219      this.Controls.SetChildIndex(this.mutationGroupBox, 0);
220      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
221      this.initializationGroupBox.ResumeLayout(false);
222      this.initializationGroupBox.PerformLayout();
223      this.mutationGroupBox.ResumeLayout(false);
224      this.mutationGroupBox.PerformLayout();
225      this.ResumeLayout(false);
226      this.PerformLayout();
227
228    }
229
230    #endregion
231
232    private System.Windows.Forms.Label weightNuLabel;
233    private System.Windows.Forms.TextBox minValueTextBox;
234    protected System.Windows.Forms.GroupBox initializationGroupBox;
235    private System.Windows.Forms.Label weightSigmaLabel;
236    private System.Windows.Forms.TextBox maxValueTextBox;
237    protected System.Windows.Forms.GroupBox mutationGroupBox;
238    private System.Windows.Forms.Label multiplicativeChangeLabel;
239    private System.Windows.Forms.TextBox multiplicativeChangeSigmaTextBox;
240    private System.Windows.Forms.Label additiveChangeLabel;
241    private System.Windows.Forms.TextBox additiveChangeSigmaTextBox;
242
243  }
244}
Note: See TracBrowser for help on using the repository browser.