Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/InteractiveSymbolicDataAnalysisSolutionSimplifierView.cs @ 10951

Last change on this file since 10951 was 10799, checked in by bburlacu, 11 years ago

#2076: Improved visual aspect of trees using the Boxes layout engine (decreased horizontal spacing to a minimum of 1px). Refactored some code in the InteractiveSymbolicDataAnalysisSolutionSimplifierView to throw an exception when the visual node content is null, and to only update the tree when necessary.

File size: 7.9 KB
RevLine 
[3915]1#region License Information
2/* HeuristicLab
[9456]3 * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[3915]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
22using System;
23using System.Collections.Generic;
24using System.Drawing;
25using System.Linq;
26using System.Windows.Forms;
27using HeuristicLab.Common;
28using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
[4068]29using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views;
[3915]30using HeuristicLab.MainForm.WindowsForms;
31
[5699]32namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Views {
33  public abstract partial class InteractiveSymbolicDataAnalysisSolutionSimplifierView : AsynchronousContentView {
[9006]34    private Dictionary<ISymbolicExpressionTreeNode, ISymbolicExpressionTreeNode> foldedNodes;
[5699]35    private Dictionary<ISymbolicExpressionTreeNode, double> nodeImpacts;
[9006]36    private enum TreeState { Valid, Invalid }
[3915]37
[5699]38    public InteractiveSymbolicDataAnalysisSolutionSimplifierView() {
[3915]39      InitializeComponent();
[9006]40      foldedNodes = new Dictionary<ISymbolicExpressionTreeNode, ISymbolicExpressionTreeNode>();
[8946]41      nodeImpacts = new Dictionary<ISymbolicExpressionTreeNode, double>();
[3915]42      this.Caption = "Interactive Solution Simplifier";
43    }
44
[5699]45    public new ISymbolicDataAnalysisSolution Content {
46      get { return (ISymbolicDataAnalysisSolution)base.Content; }
[3915]47      set { base.Content = value; }
48    }
49
50    protected override void RegisterContentEvents() {
51      base.RegisterContentEvents();
[8946]52      Content.ModelChanged += Content_Changed;
53      Content.ProblemDataChanged += Content_Changed;
[10564]54      treeChart.Repainted += treeChart_Repainted;
[3915]55    }
56    protected override void DeregisterContentEvents() {
57      base.DeregisterContentEvents();
[8946]58      Content.ModelChanged -= Content_Changed;
59      Content.ProblemDataChanged -= Content_Changed;
[10564]60      treeChart.Repainted -= treeChart_Repainted;
[3915]61    }
62
[8946]63    private void Content_Changed(object sender, EventArgs e) {
64      UpdateView();
[3915]65    }
[5699]66
[3915]67    protected override void OnContentChanged() {
68      base.OnContentChanged();
[9006]69      foldedNodes = new Dictionary<ISymbolicExpressionTreeNode, ISymbolicExpressionTreeNode>();
[8946]70      UpdateView();
71      viewHost.Content = this.Content;
[3915]72    }
73
[10564]74    private void treeChart_Repainted(object sender, EventArgs e) {
75      if (nodeImpacts != null && nodeImpacts.Count > 0)
76        PaintNodeImpacts();
77    }
78
[8946]79    private void UpdateView() {
80      if (Content == null || Content.Model == null || Content.ProblemData == null) return;
81      var tree = Content.Model.SymbolicExpressionTree;
[8990]82      treeChart.Tree = tree.Root.SubtreeCount > 1 ? new SymbolicExpressionTree(tree.Root) : new SymbolicExpressionTree(tree.Root.GetSubtree(0).GetSubtree(0));
[3915]83
[10492]84      var impactAndReplacementValues = CalculateImpactAndReplacementValues(tree);
85      nodeImpacts = impactAndReplacementValues.ToDictionary(x => x.Key, x => x.Value.Item1);
86      var replacementValues = impactAndReplacementValues.ToDictionary(x => x.Key, x => x.Value.Item2);
[8946]87      foreach (var pair in replacementValues.Where(pair => !(pair.Key is ConstantTreeNode))) {
[9006]88        foldedNodes[pair.Key] = MakeConstantTreeNode(pair.Value);
[8946]89      }
90      PaintNodeImpacts();
[3915]91    }
92
[5717]93    protected abstract Dictionary<ISymbolicExpressionTreeNode, double> CalculateReplacementValues(ISymbolicExpressionTree tree);
94    protected abstract Dictionary<ISymbolicExpressionTreeNode, double> CalculateImpactValues(ISymbolicExpressionTree tree);
[10492]95    protected abstract Dictionary<ISymbolicExpressionTreeNode, Tuple<double, double>> CalculateImpactAndReplacementValues(ISymbolicExpressionTree tree);
[5717]96    protected abstract void UpdateModel(ISymbolicExpressionTree tree);
[3915]97
[8946]98    private static ConstantTreeNode MakeConstantTreeNode(double value) {
99      var constant = new Constant { MinValue = value - 1, MaxValue = value + 1 };
100      var constantTreeNode = (ConstantTreeNode)constant.CreateTreeNode();
[3915]101      constantTreeNode.Value = value;
102      return constantTreeNode;
103    }
104
105    private void treeChart_SymbolicExpressionTreeNodeDoubleClicked(object sender, MouseEventArgs e) {
[10521]106      var visualNode = (VisualTreeNode<ISymbolicExpressionTreeNode>)sender;
[10799]107      if (visualNode.Content == null) { throw new Exception("Visual node content cannot be null."); }
[10521]108      var symbExprTreeNode = (SymbolicExpressionTreeNode)visualNode.Content;
[10799]109      if (!foldedNodes.ContainsKey(symbExprTreeNode)) return; // constant nodes cannot be folded
[9006]110      var parent = symbExprTreeNode.Parent;
111      int indexOfSubtree = parent.IndexOfSubtree(symbExprTreeNode);
[10799]112      SwitchNodeWithReplacementNode(parent, indexOfSubtree);
113      UpdateModel(Content.Model.SymbolicExpressionTree);
[3915]114    }
115
[5729]116    private void SwitchNodeWithReplacementNode(ISymbolicExpressionTreeNode parent, int subTreeIndex) {
[5736]117      ISymbolicExpressionTreeNode subTree = parent.GetSubtree(subTreeIndex);
[9006]118      if (foldedNodes.ContainsKey(subTree)) {
[10799]119        parent.RemoveSubtree(subTreeIndex);
[9006]120        var replacementNode = foldedNodes[subTree];
[5736]121        parent.InsertSubtree(subTreeIndex, replacementNode);
[5729]122        // exchange key and value
[9006]123        foldedNodes.Remove(subTree);
124        foldedNodes.Add(replacementNode, subTree);
[5729]125      }
[5455]126    }
127
[3915]128    private void PaintNodeImpacts() {
129      var impacts = nodeImpacts.Values;
130      double max = impacts.Max();
131      double min = impacts.Min();
[10521]132      foreach (var treeNode in Content.Model.SymbolicExpressionTree.IterateNodesPostfix()) {
133        VisualTreeNode<ISymbolicExpressionTreeNode> visualTree = treeChart.GetVisualSymbolicExpressionTreeNode(treeNode);
[8946]134
[4477]135        if (!(treeNode is ConstantTreeNode) && nodeImpacts.ContainsKey(treeNode)) {
[10799]136          visualTree.ToolTip = visualTree.Content.ToString(); // to avoid duplicate tooltips
[5729]137          double impact = nodeImpacts[treeNode];
[5722]138
[5717]139          // impact = 0 if no change
140          // impact < 0 if new solution is better
141          // impact > 0 if new solution is worse
142          if (impact < 0.0) {
[5729]143            // min is guaranteed to be < 0
[5717]144            visualTree.FillColor = Color.FromArgb((int)(impact / min * 255), Color.Red);
[5729]145          } else if (impact.IsAlmost(0.0)) {
146            visualTree.FillColor = Color.White;
[5717]147          } else {
[5729]148            // max is guaranteed to be > 0
[5717]149            visualTree.FillColor = Color.FromArgb((int)(impact / max * 255), Color.Green);
150          }
[3915]151          visualTree.ToolTip += Environment.NewLine + "Node impact: " + impact;
[9006]152          var constantReplacementNode = foldedNodes[treeNode] as ConstantTreeNode;
[5729]153          if (constantReplacementNode != null) {
154            visualTree.ToolTip += Environment.NewLine + "Replacement value: " + constantReplacementNode.Value;
155          }
[6108]156        }
[9043]157        if (visualTree != null)
[9445]158          if (treeNode is ConstantTreeNode && foldedNodes.ContainsKey(treeNode)) {
[9043]159            visualTree.LineColor = Color.DarkOrange;
160          }
[3915]161      }
[8980]162      treeChart.RepaintNodes();
[3915]163    }
[3927]164
165    private void btnSimplify_Click(object sender, EventArgs e) {
[8946]166      var simplifier = new SymbolicDataAnalysisExpressionTreeSimplifier();
[5722]167      var simplifiedExpressionTree = simplifier.Simplify(Content.Model.SymbolicExpressionTree);
168      UpdateModel(simplifiedExpressionTree);
[3927]169    }
[6256]170
171    protected abstract void btnOptimizeConstants_Click(object sender, EventArgs e);
[3915]172  }
173}
Note: See TracBrowser for help on using the repository browser.