Changeset 4990 for trunk/sources
- Timestamp:
- 11/29/10 14:01:46 (14 years ago)
- Location:
- trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.3/Symbolic/Symbols
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.3/Symbolic/Symbols/ConstantView.Designer.cs
r4989 r4990 198 198 this.valueChangeMuTextBox.TabIndex = 7; 199 199 this.toolTip.SetToolTip(this.valueChangeMuTextBox, "The mu (mean) parameter for the normal distribution to sample the value change."); 200 this.valueChangeMuTextBox.TextChanged += new System.EventHandler(this.valueChange NuTextBox_TextChanged);200 this.valueChangeMuTextBox.TextChanged += new System.EventHandler(this.valueChangeMuTextBox_TextChanged); 201 201 // 202 202 // ConstantView -
trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.3/Symbolic/Symbols/ConstantView.cs
r4989 r4990 93 93 } 94 94 95 private void valueChange NuTextBox_TextChanged(object sender, EventArgs e) {95 private void valueChangeMuTextBox_TextChanged(object sender, EventArgs e) { 96 96 double nu; 97 97 if (double.TryParse(valueChangeMuTextBox.Text, out nu)) { -
trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.3/Symbolic/Symbols/VariableView.Designer.cs
r4989 r4990 100 100 this.toolTip.SetToolTip(this.weightMuTextBox, "The mu (mean) parameter of the normal distribution from which to sample the initi" + 101 101 "al weights."); 102 this.weightMuTextBox.TextChanged += new System.EventHandler(this.weight NuTextBox_TextChanged);102 this.weightMuTextBox.TextChanged += new System.EventHandler(this.weightMuTextBox_TextChanged); 103 103 // 104 104 // initializationGroupBox … … 198 198 this.toolTip.SetToolTip(this.weightChangeMuTextBox, "The mu (mean) parameter for the normal distribution to sample the change in weigh" + 199 199 "t."); 200 this.weightChangeMuTextBox.TextChanged += new System.EventHandler(this.weightChange NuTextBox_TextChanged);200 this.weightChangeMuTextBox.TextChanged += new System.EventHandler(this.weightChangeMuTextBox_TextChanged); 201 201 // 202 202 // VariableView -
trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.3/Symbolic/Symbols/VariableView.cs
r4989 r4990 74 74 75 75 #region control event handlers 76 private void weight NuTextBox_TextChanged(object sender, EventArgs e) {76 private void weightMuTextBox_TextChanged(object sender, EventArgs e) { 77 77 double nu; 78 78 if (double.TryParse(weightMuTextBox.Text, out nu)) { … … 93 93 } 94 94 95 private void weightChange NuTextBox_TextChanged(object sender, EventArgs e) {95 private void weightChangeMuTextBox_TextChanged(object sender, EventArgs e) { 96 96 double nu; 97 97 if (double.TryParse(weightChangeMuTextBox.Text, out nu)) {
Note: See TracChangeset
for help on using the changeset viewer.