Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.EvolutionTracking/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/InteractiveSymbolicDataAnalysisSolutionSimplifierView.cs @ 15351

Last change on this file since 15351 was 15351, checked in by bburlacu, 7 years ago

#1772: Merge trunk changes, add a couple of convenience parameters to the SchemaCreator.

File size: 12.2 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2016 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, ISymbolicExpressionTreeNode> changedNodes;
36    private Dictionary<ISymbolicExpressionTreeNode, double> nodeImpacts;
37
38    private enum TreeState { Valid, Invalid }
39    private TreeState treeState;
40
41    protected InteractiveSymbolicDataAnalysisSolutionSimplifierView() {
42      InitializeComponent();
43      foldedNodes = new Dictionary<ISymbolicExpressionTreeNode, ISymbolicExpressionTreeNode>();
44      changedNodes = new Dictionary<ISymbolicExpressionTreeNode, ISymbolicExpressionTreeNode>();
45      nodeImpacts = new Dictionary<ISymbolicExpressionTreeNode, double>();
46      this.Caption = "Interactive Solution Simplifier";
47
48      // initialize the tree modifier that will be used to perform edit operations over the tree
49      treeChart.ModifyTree = Modify;
50    }
51
52    /// <summary>
53    /// Remove, Replace or Insert subtrees
54    /// </summary>
55    /// <param name="tree">The symbolic expression tree</param>
56    /// <param name="parent">The insertion point (ie, the parent node who will receive a new child)</param>
57    /// <param name="oldChild">The subtree to be replaced</param>
58    /// <param name="newChild">The replacement subtree</param>
59    /// <param name="removeSubtree">Flag used to indicate if whole subtrees should be removed (default behavior), or just the subtree root</param>
60    private void Modify(ISymbolicExpressionTree tree, ISymbolicExpressionTreeNode parent,
61      ISymbolicExpressionTreeNode oldChild, ISymbolicExpressionTreeNode newChild, bool removeSubtree = true) {
62      if (oldChild == null && newChild == null)
63        throw new ArgumentNullException("Cannot deduce operation type from the arguments. Please provide non null operands.");
64      if (oldChild == null) {
65        // insertion operation
66        parent.AddSubtree(newChild);
67        newChild.Parent = parent;
68      } else if (newChild == null) {
69        // removal operation
70        parent.RemoveSubtree(parent.IndexOfSubtree(oldChild));
71        if (!removeSubtree) {
72          for (int i = oldChild.SubtreeCount - 1; i >= 0; --i) {
73            var subtree = oldChild.GetSubtree(i);
74            oldChild.RemoveSubtree(i);
75            parent.AddSubtree(subtree);
76          }
77        }
78      } else {
79        // replacement operation
80        var replacementIndex = parent.IndexOfSubtree(oldChild);
81        parent.RemoveSubtree(replacementIndex);
82        parent.InsertSubtree(replacementIndex, newChild);
83        newChild.Parent = parent;
84        if (changedNodes.ContainsKey(oldChild)) {
85          changedNodes.Add(newChild, changedNodes[oldChild]); // so that on double click the original node is restored
86          changedNodes.Remove(oldChild);
87        } else {
88          changedNodes.Add(newChild, oldChild);
89        }
90      }
91      treeState = IsValid(tree) ? TreeState.Valid : TreeState.Invalid;
92      switch (treeState) {
93        case TreeState.Valid:
94          this.grpViewHost.Enabled = true;
95          UpdateModel(Content.Model.SymbolicExpressionTree);
96          break;
97        case TreeState.Invalid:
98          this.grpViewHost.Enabled = false;
99          break;
100      }
101    }
102
103    // the optimizer always assumes 2 children for multiplication and addition nodes
104    // thus, we enforce that the tree stays valid so that the constant optimization won't throw an exception
105    // by returning 2 as the minimum allowed arity for addition and multiplication symbols
106    private readonly Func<ISymbol, int> GetMinArity = symbol => {
107      var min = symbol.MinimumArity;
108      if (symbol is Multiplication || symbol is Division) return Math.Max(2, min);
109      return min;
110    };
111    private bool IsValid(ISymbolicExpressionTree tree) {
112      treeChart.Tree = tree;
113      treeChart.Repaint();
114      // check if all nodes have a legal arity
115      var nodes = tree.IterateNodesPostfix().ToList();
116      bool valid = !nodes.Any(node => node.SubtreeCount < GetMinArity(node.Symbol) || node.SubtreeCount > node.Symbol.MaximumArity);
117
118      if (valid) {
119        // check if all variables are contained in the dataset
120        var variables = new HashSet<string>(Content.ProblemData.Dataset.DoubleVariables);
121        valid = nodes.OfType<VariableTreeNode>().All(x => variables.Contains(x.VariableName));
122      }
123
124      if (valid) {
125        btnOptimizeConstants.Enabled = true;
126        btnSimplify.Enabled = true;
127        treeStatusValue.Visible = false;
128      } else {
129        btnOptimizeConstants.Enabled = false;
130        btnSimplify.Enabled = false;
131        treeStatusValue.Visible = true;
132      }
133      this.Refresh();
134      return valid;
135    }
136
137    public new ISymbolicDataAnalysisSolution Content {
138      get { return (ISymbolicDataAnalysisSolution)base.Content; }
139      set { base.Content = value; }
140    }
141
142    protected override void RegisterContentEvents() {
143      base.RegisterContentEvents();
144      Content.ModelChanged += Content_Changed;
145      Content.ProblemDataChanged += Content_Changed;
146      treeChart.Repainted += treeChart_Repainted;
147    }
148    protected override void DeregisterContentEvents() {
149      base.DeregisterContentEvents();
150      Content.ModelChanged -= Content_Changed;
151      Content.ProblemDataChanged -= Content_Changed;
152      treeChart.Repainted -= treeChart_Repainted;
153    }
154
155    private void Content_Changed(object sender, EventArgs e) {
156      UpdateView();
157    }
158
159    protected override void OnContentChanged() {
160      base.OnContentChanged();
161      foldedNodes = new Dictionary<ISymbolicExpressionTreeNode, ISymbolicExpressionTreeNode>();
162      UpdateView();
163      viewHost.Content = this.Content;
164    }
165
166    private void treeChart_Repainted(object sender, EventArgs e) {
167      if (nodeImpacts != null && nodeImpacts.Count > 0)
168        PaintNodeImpacts();
169    }
170
171    private void UpdateView() {
172      if (Content == null || Content.Model == null || Content.ProblemData == null) return;
173      var tree = Content.Model.SymbolicExpressionTree;
174      treeChart.Tree = tree.Root.SubtreeCount > 1 ? new SymbolicExpressionTree(tree.Root) : new SymbolicExpressionTree(tree.Root.GetSubtree(0).GetSubtree(0));
175
176      var impactAndReplacementValues = CalculateImpactAndReplacementValues(tree);
177      var replacementValues = impactAndReplacementValues.ToDictionary(x => x.Key, x => x.Value.Item2);
178      foreach (var pair in replacementValues.Where(pair => !(pair.Key is ConstantTreeNode))) {
179        foldedNodes[pair.Key] = MakeConstantTreeNode(pair.Value);
180      }
181      nodeImpacts = impactAndReplacementValues.ToDictionary(x => x.Key, x => x.Value.Item1);
182      PaintNodeImpacts();
183    }
184
185    protected abstract Dictionary<ISymbolicExpressionTreeNode, Tuple<double, double>> CalculateImpactAndReplacementValues(ISymbolicExpressionTree tree);
186    protected abstract void UpdateModel(ISymbolicExpressionTree tree);
187
188    private static ConstantTreeNode MakeConstantTreeNode(double value) {
189      var constant = new Constant { MinValue = value - 1, MaxValue = value + 1 };
190      var constantTreeNode = (ConstantTreeNode)constant.CreateTreeNode();
191      constantTreeNode.Value = value;
192      return constantTreeNode;
193    }
194
195    private void treeChart_SymbolicExpressionTreeNodeDoubleClicked(object sender, MouseEventArgs e) {
196      if (treeState == TreeState.Invalid) return;
197      var visualNode = (VisualTreeNode<ISymbolicExpressionTreeNode>)sender;
198      if (visualNode.Content == null) { throw new Exception("VisualNode content cannot be null."); }
199      var symbExprTreeNode = (SymbolicExpressionTreeNode)visualNode.Content;
200      var tree = Content.Model.SymbolicExpressionTree;
201      var parent = symbExprTreeNode.Parent;
202      int indexOfSubtree = parent.IndexOfSubtree(symbExprTreeNode);
203      if (changedNodes.ContainsKey(symbExprTreeNode)) {
204        // undo node change
205        parent.RemoveSubtree(indexOfSubtree);
206        var originalNode = changedNodes[symbExprTreeNode];
207        parent.InsertSubtree(indexOfSubtree, originalNode);
208        changedNodes.Remove(symbExprTreeNode);
209      } else if (foldedNodes.ContainsKey(symbExprTreeNode)) {
210        // undo node folding
211        SwitchNodeWithReplacementNode(parent, indexOfSubtree);
212      }
213      UpdateModel(tree);
214    }
215
216    private void SwitchNodeWithReplacementNode(ISymbolicExpressionTreeNode parent, int subTreeIndex) {
217      ISymbolicExpressionTreeNode subTree = parent.GetSubtree(subTreeIndex);
218      if (foldedNodes.ContainsKey(subTree)) {
219        parent.RemoveSubtree(subTreeIndex);
220        var replacementNode = foldedNodes[subTree];
221        parent.InsertSubtree(subTreeIndex, replacementNode);
222        // exchange key and value
223        foldedNodes.Remove(subTree);
224        foldedNodes.Add(replacementNode, subTree);
225      }
226    }
227
228    private void PaintNodeImpacts() {
229      var impacts = nodeImpacts.Values;
230      double max = impacts.Max();
231      double min = impacts.Min();
232      foreach (ISymbolicExpressionTreeNode treeNode in Content.Model.SymbolicExpressionTree.IterateNodesPostfix()) {
233        VisualTreeNode<ISymbolicExpressionTreeNode> visualTree = treeChart.GetVisualSymbolicExpressionTreeNode(treeNode);
234
235        if (!(treeNode is ConstantTreeNode) && nodeImpacts.ContainsKey(treeNode)) {
236          visualTree.ToolTip = visualTree.Content.ToString();
237          double impact = nodeImpacts[treeNode];
238
239          // impact = 0 if no change
240          // impact < 0 if new solution is better
241          // impact > 0 if new solution is worse
242          if (impact < 0.0) {
243            // min is guaranteed to be < 0
244            visualTree.FillColor = Color.FromArgb((int)(impact / min * 255), Color.Red);
245          } else if (impact.IsAlmost(0.0)) {
246            visualTree.FillColor = Color.White;
247          } else {
248            // max is guaranteed to be > 0
249            visualTree.FillColor = Color.FromArgb((int)(impact / max * 255), Color.Green);
250          }
251          visualTree.ToolTip += Environment.NewLine + "Node impact: " + impact;
252          var constantReplacementNode = foldedNodes[treeNode] as ConstantTreeNode;
253          if (constantReplacementNode != null) {
254            visualTree.ToolTip += Environment.NewLine + "Replacement value: " + constantReplacementNode.Value;
255          }
256        }
257        if (visualTree != null)
258          if (changedNodes.ContainsKey(treeNode)) {
259            visualTree.LineColor = Color.DodgerBlue;
260          } else if (treeNode is ConstantTreeNode && foldedNodes.ContainsKey(treeNode)) {
261            visualTree.LineColor = Color.DarkOrange;
262          }
263      }
264      treeChart.RepaintNodes();
265    }
266
267    private void btnSimplify_Click(object sender, EventArgs e) {
268      var simplifiedExpressionTree = TreeSimplifier.Simplify(Content.Model.SymbolicExpressionTree);
269      UpdateModel(simplifiedExpressionTree);
270    }
271
272    protected abstract void btnOptimizeConstants_Click(object sender, EventArgs e);
273  }
274}
Note: See TracBrowser for help on using the repository browser.