[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 |
|
---|
| 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;
|
---|
[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;
|
---|
[3915] | 54 | }
|
---|
| 55 | protected override void DeregisterContentEvents() {
|
---|
| 56 | base.DeregisterContentEvents();
|
---|
[8946] | 57 | Content.ModelChanged -= Content_Changed;
|
---|
| 58 | Content.ProblemDataChanged -= Content_Changed;
|
---|
[3915] | 59 | }
|
---|
| 60 |
|
---|
[8946] | 61 | private void Content_Changed(object sender, EventArgs e) {
|
---|
| 62 | UpdateView();
|
---|
[3915] | 63 | }
|
---|
[5699] | 64 |
|
---|
[3915] | 65 | protected override void OnContentChanged() {
|
---|
| 66 | base.OnContentChanged();
|
---|
[9006] | 67 | foldedNodes = new Dictionary<ISymbolicExpressionTreeNode, ISymbolicExpressionTreeNode>();
|
---|
[8946] | 68 | UpdateView();
|
---|
| 69 | viewHost.Content = this.Content;
|
---|
[3915] | 70 | }
|
---|
| 71 |
|
---|
[8946] | 72 | private void UpdateView() {
|
---|
| 73 | if (Content == null || Content.Model == null || Content.ProblemData == null) return;
|
---|
| 74 | var tree = Content.Model.SymbolicExpressionTree;
|
---|
[8990] | 75 | treeChart.Tree = tree.Root.SubtreeCount > 1 ? new SymbolicExpressionTree(tree.Root) : new SymbolicExpressionTree(tree.Root.GetSubtree(0).GetSubtree(0));
|
---|
[3915] | 76 |
|
---|
[10538] | 77 | var impactAndReplacementValues = CalculateImpactAndReplacementValues(tree);
|
---|
| 78 | nodeImpacts = impactAndReplacementValues.ToDictionary(x => x.Key, x => x.Value.Item1);
|
---|
| 79 | var replacementValues = impactAndReplacementValues.ToDictionary(x => x.Key, x => x.Value.Item2);
|
---|
[8946] | 80 | foreach (var pair in replacementValues.Where(pair => !(pair.Key is ConstantTreeNode))) {
|
---|
[9006] | 81 | foldedNodes[pair.Key] = MakeConstantTreeNode(pair.Value);
|
---|
[8946] | 82 | }
|
---|
| 83 | PaintNodeImpacts();
|
---|
[3915] | 84 | }
|
---|
| 85 |
|
---|
[5717] | 86 | protected abstract Dictionary<ISymbolicExpressionTreeNode, double> CalculateReplacementValues(ISymbolicExpressionTree tree);
|
---|
| 87 | protected abstract Dictionary<ISymbolicExpressionTreeNode, double> CalculateImpactValues(ISymbolicExpressionTree tree);
|
---|
[10538] | 88 | protected abstract Dictionary<ISymbolicExpressionTreeNode, Tuple<double, double>> CalculateImpactAndReplacementValues(ISymbolicExpressionTree tree);
|
---|
[5717] | 89 | protected abstract void UpdateModel(ISymbolicExpressionTree tree);
|
---|
[3915] | 90 |
|
---|
[8946] | 91 | private static ConstantTreeNode MakeConstantTreeNode(double value) {
|
---|
| 92 | var constant = new Constant { MinValue = value - 1, MaxValue = value + 1 };
|
---|
| 93 | var constantTreeNode = (ConstantTreeNode)constant.CreateTreeNode();
|
---|
[3915] | 94 | constantTreeNode.Value = value;
|
---|
| 95 | return constantTreeNode;
|
---|
| 96 | }
|
---|
| 97 |
|
---|
| 98 | private void treeChart_SymbolicExpressionTreeNodeDoubleClicked(object sender, MouseEventArgs e) {
|
---|
[10538] | 99 | var visualNode = (VisualTreeNode<ISymbolicExpressionTreeNode>)sender;
|
---|
| 100 | var symbExprTreeNode = (SymbolicExpressionTreeNode)visualNode.Content;
|
---|
[8946] | 101 | if (symbExprTreeNode == null) return;
|
---|
[5722] | 102 | var tree = Content.Model.SymbolicExpressionTree;
|
---|
[9006] | 103 | var parent = symbExprTreeNode.Parent;
|
---|
| 104 | int indexOfSubtree = parent.IndexOfSubtree(symbExprTreeNode);
|
---|
[9445] | 105 | if (foldedNodes.ContainsKey(symbExprTreeNode)) {
|
---|
[9043] | 106 | // undo node folding
|
---|
[9006] | 107 | SwitchNodeWithReplacementNode(parent, indexOfSubtree);
|
---|
| 108 | }
|
---|
[9055] | 109 | UpdateModel(tree);
|
---|
[3915] | 110 | }
|
---|
| 111 |
|
---|
[5729] | 112 | private void SwitchNodeWithReplacementNode(ISymbolicExpressionTreeNode parent, int subTreeIndex) {
|
---|
[5736] | 113 | ISymbolicExpressionTreeNode subTree = parent.GetSubtree(subTreeIndex);
|
---|
| 114 | parent.RemoveSubtree(subTreeIndex);
|
---|
[9006] | 115 | if (foldedNodes.ContainsKey(subTree)) {
|
---|
| 116 | var replacementNode = foldedNodes[subTree];
|
---|
[5736] | 117 | parent.InsertSubtree(subTreeIndex, replacementNode);
|
---|
[5729] | 118 | // exchange key and value
|
---|
[9006] | 119 | foldedNodes.Remove(subTree);
|
---|
| 120 | foldedNodes.Add(replacementNode, subTree);
|
---|
[5729] | 121 | }
|
---|
[5455] | 122 | }
|
---|
| 123 |
|
---|
[3915] | 124 | private void PaintNodeImpacts() {
|
---|
| 125 | var impacts = nodeImpacts.Values;
|
---|
| 126 | double max = impacts.Max();
|
---|
| 127 | double min = impacts.Min();
|
---|
[10538] | 128 | foreach (var treeNode in Content.Model.SymbolicExpressionTree.IterateNodesPostfix()) {
|
---|
| 129 | VisualTreeNode<ISymbolicExpressionTreeNode> visualTree = treeChart.GetVisualSymbolicExpressionTreeNode(treeNode);
|
---|
[8946] | 130 |
|
---|
[4477] | 131 | if (!(treeNode is ConstantTreeNode) && nodeImpacts.ContainsKey(treeNode)) {
|
---|
[5729] | 132 | double impact = nodeImpacts[treeNode];
|
---|
[5722] | 133 |
|
---|
[5717] | 134 | // impact = 0 if no change
|
---|
| 135 | // impact < 0 if new solution is better
|
---|
| 136 | // impact > 0 if new solution is worse
|
---|
| 137 | if (impact < 0.0) {
|
---|
[5729] | 138 | // min is guaranteed to be < 0
|
---|
[5717] | 139 | visualTree.FillColor = Color.FromArgb((int)(impact / min * 255), Color.Red);
|
---|
[5729] | 140 | } else if (impact.IsAlmost(0.0)) {
|
---|
| 141 | visualTree.FillColor = Color.White;
|
---|
[5717] | 142 | } else {
|
---|
[5729] | 143 | // max is guaranteed to be > 0
|
---|
[5717] | 144 | visualTree.FillColor = Color.FromArgb((int)(impact / max * 255), Color.Green);
|
---|
| 145 | }
|
---|
[3915] | 146 | visualTree.ToolTip += Environment.NewLine + "Node impact: " + impact;
|
---|
[9006] | 147 | var constantReplacementNode = foldedNodes[treeNode] as ConstantTreeNode;
|
---|
[5729] | 148 | if (constantReplacementNode != null) {
|
---|
| 149 | visualTree.ToolTip += Environment.NewLine + "Replacement value: " + constantReplacementNode.Value;
|
---|
| 150 | }
|
---|
[6108] | 151 | }
|
---|
[9043] | 152 | if (visualTree != null)
|
---|
[9445] | 153 | if (treeNode is ConstantTreeNode && foldedNodes.ContainsKey(treeNode)) {
|
---|
[9043] | 154 | visualTree.LineColor = Color.DarkOrange;
|
---|
| 155 | }
|
---|
[3915] | 156 | }
|
---|
[8980] | 157 | treeChart.RepaintNodes();
|
---|
[3915] | 158 | }
|
---|
[3927] | 159 |
|
---|
| 160 | private void btnSimplify_Click(object sender, EventArgs e) {
|
---|
[8946] | 161 | var simplifier = new SymbolicDataAnalysisExpressionTreeSimplifier();
|
---|
[5722] | 162 | var simplifiedExpressionTree = simplifier.Simplify(Content.Model.SymbolicExpressionTree);
|
---|
| 163 | UpdateModel(simplifiedExpressionTree);
|
---|
[3927] | 164 | }
|
---|
[6256] | 165 |
|
---|
| 166 | protected abstract void btnOptimizeConstants_Click(object sender, EventArgs e);
|
---|
[3915] | 167 | }
|
---|
| 168 | }
|
---|