Changeset 16581
- Timestamp:
- 01/29/19 12:44:09 (6 years ago)
- Location:
- branches/2971_named_intervals
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/InteractiveSymbolicDataAnalysisSolutionSimplifierView.cs
r16549 r16581 203 203 variableRanges.Add(keyValuePair.Key, keyValuePair.Value); 204 204 } 205 var resultIntervals = await Task.Run(() => interpreter.GetSymbolicExressionTreeIntervals(tree, variableRanges, out intervals));205 var resultIntervals = interpreter.GetSymbolicExressionTreeIntervals(tree, variableRanges, out intervals); 206 206 try { 207 207 await Task.Delay(500, cancellationTokenSource.Token); // wait for progressbar to finish animation … … 305 305 } 306 306 } 307 if (visualTree != null) 308 visualTree.ToolTip += String.Format($"{Environment.NewLine}Intervals: [{intervals[treeNode].LowerBound:G5} ... {intervals[treeNode].UpperBound:G5}]"); 307 if (visualTree != null) { 308 if (intervals.ContainsKey(treeNode)) 309 visualTree.ToolTip += String.Format($"{Environment.NewLine}Intervals: [{intervals[treeNode].LowerBound:G5} ... {intervals[treeNode].UpperBound:G5}]"); 309 310 if (changedNodes.ContainsKey(treeNode)) { 310 311 visualTree.LineColor = Color.DodgerBlue; … … 312 313 visualTree.LineColor = Color.DarkOrange; 313 314 } 315 } 314 316 } 315 317 treeChart.RepaintNodes(); -
branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis.Views/3.4/Regression/NamedIntervalsView.Designer.cs
r16544 r16581 32 32 // dataGridView 33 33 // 34 this.dataGridView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)35 | System.Windows.Forms.AnchorStyles.Left)36 | System.Windows.Forms.AnchorStyles.Right)));37 34 this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; 38 this.dataGridView.Location = new System.Drawing.Point(6, 19); 35 this.dataGridView.Dock = System.Windows.Forms.DockStyle.Fill; 36 this.dataGridView.Location = new System.Drawing.Point(3, 16); 39 37 this.dataGridView.Name = "dataGridView"; 40 38 this.dataGridView.RowHeadersWidth = 120; 41 this.dataGridView.Size = new System.Drawing.Size(4 61, 378);39 this.dataGridView.Size = new System.Drawing.Size(476, 391); 42 40 this.dataGridView.TabIndex = 0; 43 41 this.dataGridView.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView_CellEndEdit); … … 48 46 // 49 47 this.groupBox1.Controls.Add(this.dataGridView); 50 this.groupBox1.Location = new System.Drawing.Point(6, 4); 48 this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill; 49 this.groupBox1.Location = new System.Drawing.Point(0, 0); 51 50 this.groupBox1.Name = "groupBox1"; 52 this.groupBox1.Size = new System.Drawing.Size(4 73, 403);51 this.groupBox1.Size = new System.Drawing.Size(482, 410); 53 52 this.groupBox1.TabIndex = 1; 54 53 this.groupBox1.TabStop = false;
Note: See TracChangeset
for help on using the changeset viewer.