Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 7359 was 7259, checked in by swagner, 13 years ago

Updated year of copyrights to 2012 (#1716)

File size: 16.1 KB
RevLine 
[3824]1#region License Information
2/* HeuristicLab
[7259]3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[3824]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
[5693]22namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Views {
[3824]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() {
[4989]47      this.weightMuLabel = new System.Windows.Forms.Label();
[5326]48      this.weightInitializationMuTextBox = new System.Windows.Forms.TextBox();
[3824]49      this.initializationGroupBox = new System.Windows.Forms.GroupBox();
50      this.weightSigmaLabel = new System.Windows.Forms.Label();
[5326]51      this.weightInitializationSigmaTextBox = new System.Windows.Forms.TextBox();
[3824]52      this.mutationGroupBox = new System.Windows.Forms.GroupBox();
[5326]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();
[5750]57      this.tabControl = new System.Windows.Forms.TabControl();
58      this.variableNamesTabPage = new System.Windows.Forms.TabPage();
59      this.parametersTabPage = new System.Windows.Forms.TabPage();
[3824]60      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
61      this.initializationGroupBox.SuspendLayout();
62      this.mutationGroupBox.SuspendLayout();
[5750]63      this.tabControl.SuspendLayout();
64      this.parametersTabPage.SuspendLayout();
[3824]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      //
[4989]73      this.errorProvider.SetIconAlignment(this.initialFrequencyTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
[6803]74      this.initialFrequencyTextBox.Size = new System.Drawing.Size(311, 20);
[3824]75      //
[6803]76      // minimumArityTextBox
77      //
78      this.errorProvider.SetIconAlignment(this.minimumArityTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
79      this.minimumArityTextBox.Size = new System.Drawing.Size(311, 20);
80      //
81      // maximumArityTextBox
82      //
83      this.errorProvider.SetIconAlignment(this.maximumArityTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
84      this.maximumArityTextBox.Size = new System.Drawing.Size(311, 20);
85      //
[3824]86      // nameTextBox
87      //
88      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
89      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
[5832]90      this.nameTextBox.Size = new System.Drawing.Size(290, 20);
[3824]91      //
[5832]92      // infoLabel
[3824]93      //
[5832]94      this.infoLabel.Location = new System.Drawing.Point(389, 3);
[3824]95      //
[4989]96      // weightMuLabel
[3824]97      //
[4989]98      this.weightMuLabel.AutoSize = true;
99      this.weightMuLabel.Location = new System.Drawing.Point(6, 22);
100      this.weightMuLabel.Name = "weightMuLabel";
101      this.weightMuLabel.Size = new System.Drawing.Size(67, 13);
[5832]102      this.weightMuLabel.TabIndex = 0;
[4989]103      this.weightMuLabel.Text = "Weight (mu):";
104      this.toolTip.SetToolTip(this.weightMuLabel, "The mu (mean) parameter of the normal distribution to use for initial weights.");
[3824]105      //
[5326]106      // weightInitializationMuTextBox
[3824]107      //
[6803]108      this.weightInitializationMuTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
109            | System.Windows.Forms.AnchorStyles.Right)));
[5326]110      this.weightInitializationMuTextBox.Location = new System.Drawing.Point(92, 19);
111      this.weightInitializationMuTextBox.Name = "weightInitializationMuTextBox";
[6819]112      this.weightInitializationMuTextBox.Size = new System.Drawing.Size(290, 20);
[5832]113      this.weightInitializationMuTextBox.TabIndex = 1;
[5326]114      this.toolTip.SetToolTip(this.weightInitializationMuTextBox, "The mu (mean) parameter of the normal distribution from which to sample the initi" +
[6803]115        "al weights.");
[5326]116      this.weightInitializationMuTextBox.TextChanged += new System.EventHandler(this.weightMuTextBox_TextChanged);
[3824]117      //
118      // initializationGroupBox
119      //
[6803]120      this.initializationGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
121            | System.Windows.Forms.AnchorStyles.Right)));
[3824]122      this.initializationGroupBox.Controls.Add(this.weightSigmaLabel);
[5326]123      this.initializationGroupBox.Controls.Add(this.weightInitializationSigmaTextBox);
[4989]124      this.initializationGroupBox.Controls.Add(this.weightMuLabel);
[5326]125      this.initializationGroupBox.Controls.Add(this.weightInitializationMuTextBox);
[5750]126      this.initializationGroupBox.Location = new System.Drawing.Point(6, 6);
[3824]127      this.initializationGroupBox.Name = "initializationGroupBox";
[6819]128      this.initializationGroupBox.Size = new System.Drawing.Size(388, 73);
[5832]129      this.initializationGroupBox.TabIndex = 0;
[3824]130      this.initializationGroupBox.TabStop = false;
131      this.initializationGroupBox.Text = "Initialization";
132      //
133      // weightSigmaLabel
134      //
135      this.weightSigmaLabel.AutoSize = true;
136      this.weightSigmaLabel.Location = new System.Drawing.Point(6, 48);
137      this.weightSigmaLabel.Name = "weightSigmaLabel";
138      this.weightSigmaLabel.Size = new System.Drawing.Size(80, 13);
[5832]139      this.weightSigmaLabel.TabIndex = 2;
[3824]140      this.weightSigmaLabel.Text = "Weight (sigma):";
141      this.toolTip.SetToolTip(this.weightSigmaLabel, "The sigma parameter for the normal distribution to use for the initial weights.");
142      //
[5326]143      // weightInitializationSigmaTextBox
[3824]144      //
[6803]145      this.weightInitializationSigmaTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
146            | System.Windows.Forms.AnchorStyles.Right)));
[5326]147      this.weightInitializationSigmaTextBox.Location = new System.Drawing.Point(92, 45);
148      this.weightInitializationSigmaTextBox.Name = "weightInitializationSigmaTextBox";
[6819]149      this.weightInitializationSigmaTextBox.Size = new System.Drawing.Size(290, 20);
[5832]150      this.weightInitializationSigmaTextBox.TabIndex = 3;
[5326]151      this.toolTip.SetToolTip(this.weightInitializationSigmaTextBox, "The sigma parameter for the normal distribution from which to sample the initial " +
[6803]152        "weights.");
[5326]153      this.weightInitializationSigmaTextBox.TextChanged += new System.EventHandler(this.weightSigmaTextBox_TextChanged);
[3824]154      //
155      // mutationGroupBox
156      //
[6803]157      this.mutationGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
158            | System.Windows.Forms.AnchorStyles.Right)));
[5326]159      this.mutationGroupBox.Controls.Add(this.multiplicativeWeightChangeLabel);
160      this.mutationGroupBox.Controls.Add(this.multiplicativeWeightChangeSigmaTextBox);
161      this.mutationGroupBox.Controls.Add(this.additiveWeightChangeLabel);
162      this.mutationGroupBox.Controls.Add(this.additiveWeightChangeSigmaTextBox);
[5750]163      this.mutationGroupBox.Location = new System.Drawing.Point(6, 85);
[3824]164      this.mutationGroupBox.Name = "mutationGroupBox";
[6819]165      this.mutationGroupBox.Size = new System.Drawing.Size(391, 73);
[5832]166      this.mutationGroupBox.TabIndex = 1;
[3824]167      this.mutationGroupBox.TabStop = false;
168      this.mutationGroupBox.Text = "Mutation";
169      //
[5326]170      // multiplicativeWeightChangeLabel
[3824]171      //
[5326]172      this.multiplicativeWeightChangeLabel.AutoSize = true;
173      this.multiplicativeWeightChangeLabel.Location = new System.Drawing.Point(6, 48);
174      this.multiplicativeWeightChangeLabel.Name = "multiplicativeWeightChangeLabel";
175      this.multiplicativeWeightChangeLabel.Size = new System.Drawing.Size(180, 13);
[5832]176      this.multiplicativeWeightChangeLabel.TabIndex = 2;
[5326]177      this.multiplicativeWeightChangeLabel.Text = "Multiplicative weight change (sigma):";
178      this.toolTip.SetToolTip(this.multiplicativeWeightChangeLabel, "The sigma parameter for the normal distribution to use to sample a multiplicative" +
[6803]179        " change in weight.");
[3824]180      //
[5326]181      // multiplicativeWeightChangeSigmaTextBox
[3824]182      //
[6803]183      this.multiplicativeWeightChangeSigmaTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
184            | System.Windows.Forms.AnchorStyles.Right)));
[5326]185      this.multiplicativeWeightChangeSigmaTextBox.Location = new System.Drawing.Point(201, 45);
186      this.multiplicativeWeightChangeSigmaTextBox.Name = "multiplicativeWeightChangeSigmaTextBox";
[6819]187      this.multiplicativeWeightChangeSigmaTextBox.Size = new System.Drawing.Size(184, 20);
[5832]188      this.multiplicativeWeightChangeSigmaTextBox.TabIndex = 3;
[5326]189      this.toolTip.SetToolTip(this.multiplicativeWeightChangeSigmaTextBox, "The sigma (std.dev.) parameter for the normal distribution to sample a multiplica" +
[6803]190        "tive change in weight.");
[5326]191      this.multiplicativeWeightChangeSigmaTextBox.TextChanged += new System.EventHandler(this.multiplicativeWeightChangeSigmaTextBox_TextChanged);
[3824]192      //
[5326]193      // additiveWeightChangeLabel
[3824]194      //
[5326]195      this.additiveWeightChangeLabel.AutoSize = true;
196      this.additiveWeightChangeLabel.Location = new System.Drawing.Point(6, 22);
197      this.additiveWeightChangeLabel.Name = "additiveWeightChangeLabel";
198      this.additiveWeightChangeLabel.Size = new System.Drawing.Size(157, 13);
[5832]199      this.additiveWeightChangeLabel.TabIndex = 0;
[5326]200      this.additiveWeightChangeLabel.Text = "Additive weight change (sigma):";
201      this.toolTip.SetToolTip(this.additiveWeightChangeLabel, "The sigma (std.dev.) parameter for the normal distribution to sample an additive " +
[6803]202        "change in weight.");
[3824]203      //
[5326]204      // additiveWeightChangeSigmaTextBox
[3824]205      //
[6803]206      this.additiveWeightChangeSigmaTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
207            | System.Windows.Forms.AnchorStyles.Right)));
[5326]208      this.additiveWeightChangeSigmaTextBox.Location = new System.Drawing.Point(201, 19);
209      this.additiveWeightChangeSigmaTextBox.Name = "additiveWeightChangeSigmaTextBox";
[6819]210      this.additiveWeightChangeSigmaTextBox.Size = new System.Drawing.Size(184, 20);
[5832]211      this.additiveWeightChangeSigmaTextBox.TabIndex = 1;
[5326]212      this.toolTip.SetToolTip(this.additiveWeightChangeSigmaTextBox, "The sigma (std.dev.) parameter for the normal distribution to sample an additive " +
[6803]213        "change in weight.");
[5326]214      this.additiveWeightChangeSigmaTextBox.TextChanged += new System.EventHandler(this.additiveWeightChangeSigmaTextBox_TextChanged);
[3824]215      //
[5750]216      // tabControl
217      //
[6803]218      this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
219            | System.Windows.Forms.AnchorStyles.Left)
220            | System.Windows.Forms.AnchorStyles.Right)));
[5750]221      this.tabControl.Controls.Add(this.variableNamesTabPage);
222      this.tabControl.Controls.Add(this.parametersTabPage);
[6803]223      this.tabControl.Location = new System.Drawing.Point(0, 127);
[5750]224      this.tabControl.Name = "tabControl";
225      this.tabControl.SelectedIndex = 0;
[6819]226      this.tabControl.Size = new System.Drawing.Size(408, 190);
[5832]227      this.tabControl.TabIndex = 5;
[5750]228      //
229      // variableNamesTabPage
230      //
231      this.variableNamesTabPage.Location = new System.Drawing.Point(4, 22);
232      this.variableNamesTabPage.Name = "variableNamesTabPage";
233      this.variableNamesTabPage.Padding = new System.Windows.Forms.Padding(3);
[6803]234      this.variableNamesTabPage.Size = new System.Drawing.Size(400, 141);
[5750]235      this.variableNamesTabPage.TabIndex = 0;
236      this.variableNamesTabPage.Text = "Variable Names";
237      this.variableNamesTabPage.UseVisualStyleBackColor = true;
238      //
239      // parametersTabPage
240      //
241      this.parametersTabPage.Controls.Add(this.mutationGroupBox);
242      this.parametersTabPage.Controls.Add(this.initializationGroupBox);
243      this.parametersTabPage.Location = new System.Drawing.Point(4, 22);
244      this.parametersTabPage.Name = "parametersTabPage";
245      this.parametersTabPage.Padding = new System.Windows.Forms.Padding(3);
[6819]246      this.parametersTabPage.Size = new System.Drawing.Size(400, 164);
[5750]247      this.parametersTabPage.TabIndex = 1;
248      this.parametersTabPage.Text = "Parameters";
249      this.parametersTabPage.UseVisualStyleBackColor = true;
250      //
[3824]251      // VariableView
252      //
253      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
254      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
[5750]255      this.Controls.Add(this.tabControl);
[3824]256      this.Name = "VariableView";
[6819]257      this.Size = new System.Drawing.Size(408, 317);
[6803]258      this.Controls.SetChildIndex(this.maximumArityLabel, 0);
259      this.Controls.SetChildIndex(this.maximumArityTextBox, 0);
260      this.Controls.SetChildIndex(this.minimumArityLabel, 0);
261      this.Controls.SetChildIndex(this.minimumArityTextBox, 0);
[5832]262      this.Controls.SetChildIndex(this.infoLabel, 0);
[3824]263      this.Controls.SetChildIndex(this.initialFrequencyTextBox, 0);
264      this.Controls.SetChildIndex(this.initialFrequencyLabel, 0);
265      this.Controls.SetChildIndex(this.nameLabel, 0);
266      this.Controls.SetChildIndex(this.nameTextBox, 0);
[5750]267      this.Controls.SetChildIndex(this.tabControl, 0);
[3824]268      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
269      this.initializationGroupBox.ResumeLayout(false);
270      this.initializationGroupBox.PerformLayout();
271      this.mutationGroupBox.ResumeLayout(false);
272      this.mutationGroupBox.PerformLayout();
[5750]273      this.tabControl.ResumeLayout(false);
274      this.parametersTabPage.ResumeLayout(false);
[3824]275      this.ResumeLayout(false);
276      this.PerformLayout();
277
278    }
279
280    #endregion
281
[5832]282    protected System.Windows.Forms.Label weightMuLabel;
283    protected System.Windows.Forms.TextBox weightInitializationMuTextBox;
[3824]284    protected System.Windows.Forms.GroupBox initializationGroupBox;
[5832]285    protected System.Windows.Forms.Label weightSigmaLabel;
286    protected System.Windows.Forms.TextBox weightInitializationSigmaTextBox;
[3824]287    protected System.Windows.Forms.GroupBox mutationGroupBox;
[5832]288    protected System.Windows.Forms.Label multiplicativeWeightChangeLabel;
289    protected System.Windows.Forms.TextBox multiplicativeWeightChangeSigmaTextBox;
290    protected System.Windows.Forms.Label additiveWeightChangeLabel;
291    protected System.Windows.Forms.TextBox additiveWeightChangeSigmaTextBox;
292    protected System.Windows.Forms.TabPage variableNamesTabPage;
293    protected System.Windows.Forms.TabPage parametersTabPage;
294    protected System.Windows.Forms.TabControl tabControl;
[3824]295  }
296}
Note: See TracBrowser for help on using the repository browser.