Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 14185 was 14185, checked in by swagner, 8 years ago

#2526: Updated year of copyrights in license headers

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