Free cookie consent management tool by TermsFeed Policy Generator

source: stable/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/InteractiveSymbolicDataAnalysisSolutionSimplifierView.cs @ 11146

Last change on this file since 11146 was 11146, checked in by mkommend, 10 years ago

#2156: Merged r10492 into stable.

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