[3915] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[14186] | 3 | * Copyright (C) 2002-2016 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 |
|
---|
| 22 | using System;
|
---|
| 23 | using System.Collections.Generic;
|
---|
| 24 | using System.Drawing;
|
---|
| 25 | using System.Linq;
|
---|
| 26 | using System.Windows.Forms;
|
---|
| 27 | using HeuristicLab.Common;
|
---|
| 28 | using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
|
---|
[4068] | 29 | using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views;
|
---|
[3915] | 30 | using HeuristicLab.MainForm.WindowsForms;
|
---|
| 31 |
|
---|
[5699] | 32 | namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Views {
|
---|
| 33 | public abstract partial class InteractiveSymbolicDataAnalysisSolutionSimplifierView : AsynchronousContentView {
|
---|
[9006] | 34 | private Dictionary<ISymbolicExpressionTreeNode, ISymbolicExpressionTreeNode> foldedNodes;
|
---|
[11150] | 35 | private Dictionary<ISymbolicExpressionTreeNode, ISymbolicExpressionTreeNode> changedNodes;
|
---|
[5699] | 36 | private Dictionary<ISymbolicExpressionTreeNode, double> nodeImpacts;
|
---|
[11150] | 37 |
|
---|
[9006] | 38 | private enum TreeState { Valid, Invalid }
|
---|
[11150] | 39 | private TreeState treeState;
|
---|
[3915] | 40 |
|
---|
[11150] | 41 | protected InteractiveSymbolicDataAnalysisSolutionSimplifierView() {
|
---|
[3915] | 42 | InitializeComponent();
|
---|
[9006] | 43 | foldedNodes = new Dictionary<ISymbolicExpressionTreeNode, ISymbolicExpressionTreeNode>();
|
---|
[11150] | 44 | changedNodes = new Dictionary<ISymbolicExpressionTreeNode, ISymbolicExpressionTreeNode>();
|
---|
[8946] | 45 | nodeImpacts = new Dictionary<ISymbolicExpressionTreeNode, double>();
|
---|
[3915] | 46 | this.Caption = "Interactive Solution Simplifier";
|
---|
[11150] | 47 |
|
---|
| 48 | // initialize the tree modifier that will be used to perform edit operations over the tree
|
---|
| 49 | treeChart.ModifyTree = Modify;
|
---|
[3915] | 50 | }
|
---|
| 51 |
|
---|
[11150] | 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();
|
---|
[14802] | 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 |
|
---|
[11150] | 118 | if (valid) {
|
---|
[14802] | 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) {
|
---|
[11150] | 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 |
|
---|
[5699] | 137 | public new ISymbolicDataAnalysisSolution Content {
|
---|
| 138 | get { return (ISymbolicDataAnalysisSolution)base.Content; }
|
---|
[3915] | 139 | set { base.Content = value; }
|
---|
| 140 | }
|
---|
| 141 |
|
---|
| 142 | protected override void RegisterContentEvents() {
|
---|
| 143 | base.RegisterContentEvents();
|
---|
[8946] | 144 | Content.ModelChanged += Content_Changed;
|
---|
| 145 | Content.ProblemDataChanged += Content_Changed;
|
---|
[11120] | 146 | treeChart.Repainted += treeChart_Repainted;
|
---|
[3915] | 147 | }
|
---|
| 148 | protected override void DeregisterContentEvents() {
|
---|
| 149 | base.DeregisterContentEvents();
|
---|
[8946] | 150 | Content.ModelChanged -= Content_Changed;
|
---|
| 151 | Content.ProblemDataChanged -= Content_Changed;
|
---|
[11120] | 152 | treeChart.Repainted -= treeChart_Repainted;
|
---|
[3915] | 153 | }
|
---|
| 154 |
|
---|
[8946] | 155 | private void Content_Changed(object sender, EventArgs e) {
|
---|
| 156 | UpdateView();
|
---|
[3915] | 157 | }
|
---|
[5699] | 158 |
|
---|
[3915] | 159 | protected override void OnContentChanged() {
|
---|
| 160 | base.OnContentChanged();
|
---|
[9006] | 161 | foldedNodes = new Dictionary<ISymbolicExpressionTreeNode, ISymbolicExpressionTreeNode>();
|
---|
[8946] | 162 | UpdateView();
|
---|
| 163 | viewHost.Content = this.Content;
|
---|
[3915] | 164 | }
|
---|
| 165 |
|
---|
[11120] | 166 | private void treeChart_Repainted(object sender, EventArgs e) {
|
---|
| 167 | if (nodeImpacts != null && nodeImpacts.Count > 0)
|
---|
| 168 | PaintNodeImpacts();
|
---|
| 169 | }
|
---|
| 170 |
|
---|
[8946] | 171 | private void UpdateView() {
|
---|
| 172 | if (Content == null || Content.Model == null || Content.ProblemData == null) return;
|
---|
| 173 | var tree = Content.Model.SymbolicExpressionTree;
|
---|
[8990] | 174 | treeChart.Tree = tree.Root.SubtreeCount > 1 ? new SymbolicExpressionTree(tree.Root) : new SymbolicExpressionTree(tree.Root.GetSubtree(0).GetSubtree(0));
|
---|
[3915] | 175 |
|
---|
[11146] | 176 | var impactAndReplacementValues = CalculateImpactAndReplacementValues(tree);
|
---|
| 177 | var replacementValues = impactAndReplacementValues.ToDictionary(x => x.Key, x => x.Value.Item2);
|
---|
[8946] | 178 | foreach (var pair in replacementValues.Where(pair => !(pair.Key is ConstantTreeNode))) {
|
---|
[9006] | 179 | foldedNodes[pair.Key] = MakeConstantTreeNode(pair.Value);
|
---|
[8946] | 180 | }
|
---|
[11150] | 181 | nodeImpacts = impactAndReplacementValues.ToDictionary(x => x.Key, x => x.Value.Item1);
|
---|
[8946] | 182 | PaintNodeImpacts();
|
---|
[3915] | 183 | }
|
---|
| 184 |
|
---|
[11146] | 185 | protected abstract Dictionary<ISymbolicExpressionTreeNode, Tuple<double, double>> CalculateImpactAndReplacementValues(ISymbolicExpressionTree tree);
|
---|
[5717] | 186 | protected abstract void UpdateModel(ISymbolicExpressionTree tree);
|
---|
[3915] | 187 |
|
---|
[8946] | 188 | private static ConstantTreeNode MakeConstantTreeNode(double value) {
|
---|
| 189 | var constant = new Constant { MinValue = value - 1, MaxValue = value + 1 };
|
---|
| 190 | var constantTreeNode = (ConstantTreeNode)constant.CreateTreeNode();
|
---|
[3915] | 191 | constantTreeNode.Value = value;
|
---|
| 192 | return constantTreeNode;
|
---|
| 193 | }
|
---|
| 194 |
|
---|
| 195 | private void treeChart_SymbolicExpressionTreeNodeDoubleClicked(object sender, MouseEventArgs e) {
|
---|
[11150] | 196 | if (treeState == TreeState.Invalid) return;
|
---|
[11120] | 197 | var visualNode = (VisualTreeNode<ISymbolicExpressionTreeNode>)sender;
|
---|
[11150] | 198 | if (visualNode.Content == null) { throw new Exception("VisualNode content cannot be null."); }
|
---|
[11120] | 199 | var symbExprTreeNode = (SymbolicExpressionTreeNode)visualNode.Content;
|
---|
[11150] | 200 | var tree = Content.Model.SymbolicExpressionTree;
|
---|
[9006] | 201 | var parent = symbExprTreeNode.Parent;
|
---|
| 202 | int indexOfSubtree = parent.IndexOfSubtree(symbExprTreeNode);
|
---|
[11150] | 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);
|
---|
[3915] | 214 | }
|
---|
| 215 |
|
---|
[5729] | 216 | private void SwitchNodeWithReplacementNode(ISymbolicExpressionTreeNode parent, int subTreeIndex) {
|
---|
[5736] | 217 | ISymbolicExpressionTreeNode subTree = parent.GetSubtree(subTreeIndex);
|
---|
[9006] | 218 | if (foldedNodes.ContainsKey(subTree)) {
|
---|
[11120] | 219 | parent.RemoveSubtree(subTreeIndex);
|
---|
[9006] | 220 | var replacementNode = foldedNodes[subTree];
|
---|
[5736] | 221 | parent.InsertSubtree(subTreeIndex, replacementNode);
|
---|
[5729] | 222 | // exchange key and value
|
---|
[9006] | 223 | foldedNodes.Remove(subTree);
|
---|
| 224 | foldedNodes.Add(replacementNode, subTree);
|
---|
[5729] | 225 | }
|
---|
[5455] | 226 | }
|
---|
| 227 |
|
---|
[3915] | 228 | private void PaintNodeImpacts() {
|
---|
| 229 | var impacts = nodeImpacts.Values;
|
---|
| 230 | double max = impacts.Max();
|
---|
| 231 | double min = impacts.Min();
|
---|
[11150] | 232 | foreach (ISymbolicExpressionTreeNode treeNode in Content.Model.SymbolicExpressionTree.IterateNodesPostfix()) {
|
---|
[11120] | 233 | VisualTreeNode<ISymbolicExpressionTreeNode> visualTree = treeChart.GetVisualSymbolicExpressionTreeNode(treeNode);
|
---|
[8946] | 234 |
|
---|
[4477] | 235 | if (!(treeNode is ConstantTreeNode) && nodeImpacts.ContainsKey(treeNode)) {
|
---|
[11150] | 236 | visualTree.ToolTip = visualTree.Content.ToString();
|
---|
[5729] | 237 | double impact = nodeImpacts[treeNode];
|
---|
[5722] | 238 |
|
---|
[5717] | 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) {
|
---|
[5729] | 243 | // min is guaranteed to be < 0
|
---|
[5717] | 244 | visualTree.FillColor = Color.FromArgb((int)(impact / min * 255), Color.Red);
|
---|
[5729] | 245 | } else if (impact.IsAlmost(0.0)) {
|
---|
| 246 | visualTree.FillColor = Color.White;
|
---|
[5717] | 247 | } else {
|
---|
[5729] | 248 | // max is guaranteed to be > 0
|
---|
[5717] | 249 | visualTree.FillColor = Color.FromArgb((int)(impact / max * 255), Color.Green);
|
---|
| 250 | }
|
---|
[3915] | 251 | visualTree.ToolTip += Environment.NewLine + "Node impact: " + impact;
|
---|
[9006] | 252 | var constantReplacementNode = foldedNodes[treeNode] as ConstantTreeNode;
|
---|
[5729] | 253 | if (constantReplacementNode != null) {
|
---|
| 254 | visualTree.ToolTip += Environment.NewLine + "Replacement value: " + constantReplacementNode.Value;
|
---|
| 255 | }
|
---|
[6108] | 256 | }
|
---|
[9043] | 257 | if (visualTree != null)
|
---|
[11150] | 258 | if (changedNodes.ContainsKey(treeNode)) {
|
---|
| 259 | visualTree.LineColor = Color.DodgerBlue;
|
---|
| 260 | } else if (treeNode is ConstantTreeNode && foldedNodes.ContainsKey(treeNode)) {
|
---|
[9043] | 261 | visualTree.LineColor = Color.DarkOrange;
|
---|
| 262 | }
|
---|
[3915] | 263 | }
|
---|
[8980] | 264 | treeChart.RepaintNodes();
|
---|
[3915] | 265 | }
|
---|
[3927] | 266 |
|
---|
| 267 | private void btnSimplify_Click(object sender, EventArgs e) {
|
---|
[15145] | 268 | var simplifiedExpressionTree = TreeSimplifier.Simplify(Content.Model.SymbolicExpressionTree);
|
---|
[5722] | 269 | UpdateModel(simplifiedExpressionTree);
|
---|
[3927] | 270 | }
|
---|
[6256] | 271 |
|
---|
| 272 | protected abstract void btnOptimizeConstants_Click(object sender, EventArgs e);
|
---|
[3915] | 273 | }
|
---|
| 274 | }
|
---|