Changeset 3480
- Timestamp:
- 04/21/10 22:46:12 (15 years ago)
- Location:
- trunk/sources
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.DataAnalysis.Regression/3.3/Symbolic/SymbolicRegressionProblem.cs
r3462 r3480 190 190 191 191 void DataAnalysisProblemData_Changed(object sender, EventArgs e) { 192 UpdateGrammar(); 193 UpdatePartitioningParameters(); 194 } 195 196 private void UpdateGrammar() { 192 197 foreach (var varSymbol in FunctionTreeGrammar.Symbols.OfType<HeuristicLab.Problems.DataAnalysis.Symbolic.Symbols.Variable>()) { 193 198 varSymbol.VariableNames = DataAnalysisProblemData.InputVariables.Select(x => x.Value); 194 199 } 195 UpdatePartitioningParameters();196 200 } 197 201 … … 282 286 operators.AddRange(ApplicationManager.Manager.GetInstances<ISymbolicExpressionTreeOperator>()); 283 287 ParameterizeOperators(); 288 UpdateGrammar(); 289 UpdatePartitioningParameters(); 284 290 } 285 291 -
trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.3/ScatterPlotView.cs
r3462 r3480 36 36 namespace HeuristicLab.Problems.DataAnalysis.Views { 37 37 [View("Scatter Plot View")] 38 [Content(typeof(DataAnalysisSolution) )]38 [Content(typeof(DataAnalysisSolution), true)] 39 39 public partial class ScatterPlotView : AsynchronousContentView { 40 40 private const string DEFAULT_CAPTION = "Scatter Plot";
Note: See TracChangeset
for help on using the changeset viewer.