Free cookie consent management tool by TermsFeed Policy Generator

source: stable/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/TreeMatching/SymbolicExpressionTreeBottomUpSimilarityCalculator.cs @ 17160

Last change on this file since 17160 was 17160, checked in by gkronber, 5 years ago

#2959: merged r17077 from trunk to stable (missed while merging the ticket)

File size: 10.1 KB
RevLine 
[11219]1#region License Information
2/* HeuristicLab
[17097]3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[11219]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;
[11486]24using System.Globalization;
[11219]25using System.Linq;
26using HeuristicLab.Common;
27using HeuristicLab.Core;
28using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
29using HeuristicLab.Optimization.Operators;
[17097]30using HEAL.Attic;
[11219]31
[17091]32using NodeMap = System.Collections.Generic.Dictionary<HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.ISymbolicExpressionTreeNode, HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.ISymbolicExpressionTreeNode>;
33
[11221]34namespace HeuristicLab.Problems.DataAnalysis.Symbolic {
[17097]35  [StorableType("63ACB7A4-137F-468F-BE42-A4CA6B62C63B")]
[11910]36  [Item("SymbolicExpressionTreeBottomUpSimilarityCalculator", "A similarity calculator which uses the tree bottom-up distance as a similarity metric.")]
[12281]37  public class SymbolicExpressionTreeBottomUpSimilarityCalculator : SolutionSimilarityCalculator {
[11486]38    private readonly HashSet<string> commutativeSymbols = new HashSet<string> { "Addition", "Multiplication", "Average", "And", "Or", "Xor" };
[12280]39
[12281]40    public SymbolicExpressionTreeBottomUpSimilarityCalculator() { }
[12280]41    protected override bool IsCommutative { get { return true; } }
42
[17091]43    public bool MatchConstantValues { get; set; }
44    public bool MatchVariableWeights { get; set; }
45
[11918]46    [StorableConstructor]
[17097]47    protected SymbolicExpressionTreeBottomUpSimilarityCalculator(StorableConstructorFlag _) : base(_) {
[11918]48    }
49
[11910]50    protected SymbolicExpressionTreeBottomUpSimilarityCalculator(SymbolicExpressionTreeBottomUpSimilarityCalculator original, Cloner cloner)
[11486]51      : base(original, cloner) {
[11239]52    }
53
[11219]54    public override IDeepCloneable Clone(Cloner cloner) {
[11910]55      return new SymbolicExpressionTreeBottomUpSimilarityCalculator(this, cloner);
[11219]56    }
57
[17091]58    #region static methods
59    private static ISymbolicExpressionTreeNode ActualRoot(ISymbolicExpressionTree tree) {
60      return tree.Root.GetSubtree(0).GetSubtree(0);
61    }
62
63    public static double CalculateSimilarity(ISymbolicExpressionTree t1, ISymbolicExpressionTree t2, bool strict = false) {
64      return CalculateSimilarity(ActualRoot(t1), ActualRoot(t2), strict);
65    }
66
67    public static double CalculateSimilarity(ISymbolicExpressionTreeNode n1, ISymbolicExpressionTreeNode n2, bool strict = false) {
68      var calculator = new SymbolicExpressionTreeBottomUpSimilarityCalculator { MatchConstantValues = strict, MatchVariableWeights = strict };
69      return CalculateSimilarity(n1, n2, strict);
70    }
71
72    public static Dictionary<ISymbolicExpressionTreeNode, ISymbolicExpressionTreeNode> ComputeBottomUpMapping(ISymbolicExpressionTree t1, ISymbolicExpressionTree t2, bool strict = false) {
73      return ComputeBottomUpMapping(ActualRoot(t1), ActualRoot(t2), strict);
74    }
75
76    public static Dictionary<ISymbolicExpressionTreeNode, ISymbolicExpressionTreeNode> ComputeBottomUpMapping(ISymbolicExpressionTreeNode n1, ISymbolicExpressionTreeNode n2, bool strict = false) {
77      var calculator = new SymbolicExpressionTreeBottomUpSimilarityCalculator { MatchConstantValues = strict, MatchVariableWeights = strict };
78      return calculator.ComputeBottomUpMapping(n1, n2);
79    }
80    #endregion
81
[11486]82    public double CalculateSimilarity(ISymbolicExpressionTree t1, ISymbolicExpressionTree t2) {
[17091]83      return CalculateSimilarity(t1, t2, out Dictionary<ISymbolicExpressionTreeNode, ISymbolicExpressionTreeNode> map);
84    }
85
86    public double CalculateSimilarity(ISymbolicExpressionTree t1, ISymbolicExpressionTree t2, out NodeMap map) {
87      if (t1 == t2) {
88        map = null;
[11486]89        return 1;
[17091]90      }
91      map = ComputeBottomUpMapping(t1, t2);
92      return 2.0 * map.Count / (t1.Length + t2.Length - 4); // -4 for skipping root and start symbols in the two trees
[11219]93    }
94
95    public override double CalculateSolutionSimilarity(IScope leftSolution, IScope rightSolution) {
[12281]96      if (leftSolution == rightSolution)
97        return 1.0;
98
[11219]99      var t1 = leftSolution.Variables[SolutionVariableName].Value as ISymbolicExpressionTree;
100      var t2 = rightSolution.Variables[SolutionVariableName].Value as ISymbolicExpressionTree;
101
102      if (t1 == null || t2 == null)
103        throw new ArgumentException("Cannot calculate similarity when one of the arguments is null.");
104
[11486]105      var similarity = CalculateSimilarity(t1, t2);
[11224]106      if (similarity > 1.0)
107        throw new Exception("Similarity value cannot be greater than 1");
108
109      return similarity;
[11219]110    }
111
[17091]112    public Dictionary<ISymbolicExpressionTreeNode, ISymbolicExpressionTreeNode> ComputeBottomUpMapping(ISymbolicExpressionTree t1, ISymbolicExpressionTree t2) {
[17160]113      return ComputeBottomUpMapping(ActualRoot(t1), ActualRoot(t2));
[17091]114    }
115
[11221]116    public Dictionary<ISymbolicExpressionTreeNode, ISymbolicExpressionTreeNode> ComputeBottomUpMapping(ISymbolicExpressionTreeNode n1, ISymbolicExpressionTreeNode n2) {
117      var compactedGraph = Compact(n1, n2);
[11219]118
[17091]119      IEnumerable<ISymbolicExpressionTreeNode> Subtrees(ISymbolicExpressionTreeNode node, bool commutative) {
120        var subtrees = node.IterateNodesPrefix();
121        return commutative ? subtrees.OrderBy(x => compactedGraph[x].Hash) : subtrees;
122      }
[11219]123
[17091]124      var nodes1 = n1.IterateNodesPostfix().OrderByDescending(x => x.GetLength()); // by descending length so that largest subtrees are mapped first
125      var nodes2 = (List<ISymbolicExpressionTreeNode>)n2.IterateNodesPostfix();
126
127      var forward = new NodeMap();
128      var reverse = new NodeMap();
129
130      foreach (ISymbolicExpressionTreeNode v in nodes1) {
131        if (forward.ContainsKey(v))
[11225]132          continue;
[17091]133
[11219]134        var kv = compactedGraph[v];
[17091]135        var commutative = v.SubtreeCount > 1 && commutativeSymbols.Contains(kv.Label);
136
137        foreach (ISymbolicExpressionTreeNode w in nodes2) {
138          if (w.GetLength() != kv.Length || w.GetDepth() != kv.Depth || reverse.ContainsKey(w) || compactedGraph[w] != kv)
[11225]139            continue;
[11219]140
[17091]141          // map one whole subtree to the other
142          foreach (var t in Subtrees(v, commutative).Zip(Subtrees(w, commutative), Tuple.Create)) {
143            forward[t.Item1] = t.Item2;
144            reverse[t.Item2] = t.Item1;
145          }
[11225]146
[17091]147          break;
[11219]148        }
149      }
150
[17091]151      return forward;
[11219]152    }
153
154    /// <summary>
155    /// Creates a compact representation of the two trees as a directed acyclic graph
156    /// </summary>
[11229]157    /// <param name="n1">The root of the first tree</param>
158    /// <param name="n2">The root of the second tree</param>
[11219]159    /// <returns>The compacted DAG representing the two trees</returns>
[11229]160    private Dictionary<ISymbolicExpressionTreeNode, GraphNode> Compact(ISymbolicExpressionTreeNode n1, ISymbolicExpressionTreeNode n2) {
161      var nodeMap = new Dictionary<ISymbolicExpressionTreeNode, GraphNode>(); // K
162      var labelMap = new Dictionary<string, GraphNode>(); // L
[11219]163
[11221]164      var nodes = n1.IterateNodesPostfix().Concat(n2.IterateNodesPostfix()); // the disjoint union F
[17091]165      var graph = new List<GraphNode>();
[11219]166
[17091]167      IEnumerable<GraphNode> Subtrees(GraphNode g, bool commutative) {
168        var subtrees = g.SymbolicExpressionTreeNode.Subtrees.Select(x => nodeMap[x]);
169        return commutative ? subtrees.OrderBy(x => x.Hash) : subtrees;
170      }
171
172      foreach (var node in nodes) {
173        var label = GetLabel(node);
174
175        if (node.SubtreeCount == 0) {
[11229]176          if (!labelMap.ContainsKey(label)) {
[17091]177            labelMap[label] = new GraphNode(node, label);
[11225]178          }
[17091]179          nodeMap[node] = labelMap[label];
[11219]180        } else {
[17091]181          var v = new GraphNode(node, label);
[11894]182          bool found = false;
[17091]183          var commutative = node.SubtreeCount > 1 && commutativeSymbols.Contains(label);
[11219]184
[17091]185          var vv = Subtrees(v, commutative);
[11219]186
[17091]187          foreach (var w in graph) {
188            if (v.Depth != w.Depth || v.SubtreeCount != w.SubtreeCount || v.Length != w.Length || v.Label != w.Label) {
[11219]189              continue;
[17091]190            }
[11219]191
[17091]192            var ww = Subtrees(w, commutative);
193            found = vv.SequenceEqual(ww);
[11219]194
[11894]195            if (found) {
[17091]196              nodeMap[node] = w;
[11219]197              break;
198            }
[11229]199          }
[11219]200          if (!found) {
[17091]201            nodeMap[node] = v;
202            graph.Add(v);
[11229]203          }
204        }
[11220]205      }
[11229]206      return nodeMap;
[11219]207    }
208
[17091]209    private string GetLabel(ISymbolicExpressionTreeNode node) {
[11486]210      if (node.SubtreeCount > 0)
211        return node.Symbol.Name;
212
[17091]213      if (node is ConstantTreeNode constant)
214        return MatchConstantValues ? constant.Value.ToString(CultureInfo.InvariantCulture) : constant.Symbol.Name;
[11964]215
[17091]216      if (node is VariableTreeNode variable)
217        return MatchVariableWeights ? variable.Weight + variable.VariableName : variable.VariableName;
[11486]218
219      return node.ToString();
220    }
221
[11229]222    private class GraphNode {
[17091]223      private GraphNode() { }
224
225      public GraphNode(ISymbolicExpressionTreeNode node, string label) {
226        SymbolicExpressionTreeNode = node;
227        Label = label;
228        Hash = GetHashCode();
229        Depth = node.GetDepth();
230        Length = node.GetLength();
231      }
232
233      public int Hash { get; }
234      public ISymbolicExpressionTreeNode SymbolicExpressionTreeNode { get; }
235      public string Label { get; }
236      public int Depth { get; }
[11894]237      public int SubtreeCount { get { return SymbolicExpressionTreeNode.SubtreeCount; } }
[17091]238      public int Length { get; }
[11219]239    }
240  }
241}
Note: See TracBrowser for help on using the repository browser.