[16255] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[16654] | 3 | * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[16255] | 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 |
|
---|
[16284] | 22 | using System;
|
---|
[16654] | 23 | using System.Collections.Generic;
|
---|
[16218] | 24 | using System.Linq;
|
---|
| 25 | using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
|
---|
| 26 | using static HeuristicLab.Problems.DataAnalysis.Symbolic.SymbolicExpressionHashExtensions;
|
---|
| 27 |
|
---|
| 28 | namespace HeuristicLab.Problems.DataAnalysis.Symbolic {
|
---|
| 29 | public static class SymbolicExpressionTreeHash {
|
---|
| 30 | private static readonly Addition add = new Addition();
|
---|
| 31 | private static readonly Subtraction sub = new Subtraction();
|
---|
| 32 | private static readonly Multiplication mul = new Multiplication();
|
---|
| 33 | private static readonly Division div = new Division();
|
---|
| 34 | private static readonly Logarithm log = new Logarithm();
|
---|
| 35 | private static readonly Exponential exp = new Exponential();
|
---|
| 36 | private static readonly Sine sin = new Sine();
|
---|
| 37 | private static readonly Cosine cos = new Cosine();
|
---|
| 38 | private static readonly Constant constant = new Constant();
|
---|
| 39 |
|
---|
| 40 | private static readonly ISymbolicExpressionTreeNodeComparer comparer = new SymbolicExpressionTreeNodeComparer();
|
---|
[16654] | 41 | private static ISymbolicExpressionTreeNode ActualRoot(this ISymbolicExpressionTree tree) => tree.Root.GetSubtree(0).GetSubtree(0);
|
---|
[16218] | 42 |
|
---|
[16654] | 43 | #region tree hashing
|
---|
| 44 | public static ulong[] Hash(this ISymbolicExpressionTree tree, bool simplify = false, bool strict = false) {
|
---|
| 45 | return tree.ActualRoot().Hash(simplify, strict);
|
---|
[16218] | 46 | }
|
---|
| 47 |
|
---|
[16654] | 48 | public static ulong[] Hash(this ISymbolicExpressionTreeNode node, bool simplify = false, bool strict = false) {
|
---|
| 49 | ulong hashFunction(byte[] input) => HashUtil.DJBHash(input);
|
---|
| 50 |
|
---|
| 51 | var hashNodes = simplify ? node.MakeNodes(strict).Simplify(hashFunction) : node.MakeNodes(strict).Sort(hashFunction);
|
---|
| 52 | var hashes = new ulong[hashNodes.Length];
|
---|
| 53 | for (int i = 0; i < hashes.Length; ++i) {
|
---|
| 54 | hashes[i] = hashNodes[i].CalculatedHashValue;
|
---|
| 55 | }
|
---|
| 56 | return hashes;
|
---|
[16284] | 57 | }
|
---|
| 58 |
|
---|
[16654] | 59 | public static ulong ComputeHash(this ISymbolicExpressionTree tree, bool simplify = false, bool strict = false) {
|
---|
| 60 | return ComputeHash(tree.ActualRoot(), simplify, strict);
|
---|
| 61 | }
|
---|
[16284] | 62 |
|
---|
[16654] | 63 | public static ulong ComputeHash(this ISymbolicExpressionTreeNode treeNode, bool simplify = false, bool strict = false) {
|
---|
| 64 | return treeNode.Hash(simplify, strict).Last();
|
---|
| 65 | }
|
---|
[16284] | 66 |
|
---|
[16654] | 67 | public static HashNode<ISymbolicExpressionTreeNode> ToHashNode(this ISymbolicExpressionTreeNode node, bool strict = false) {
|
---|
| 68 | var symbol = node.Symbol;
|
---|
| 69 | var name = symbol.Name;
|
---|
| 70 | if (node is ConstantTreeNode constantNode) {
|
---|
| 71 | name = strict ? constantNode.Value.ToString() : symbol.Name;
|
---|
| 72 | } else if (node is VariableTreeNode variableNode) {
|
---|
| 73 | name = strict ? variableNode.Weight.ToString() + variableNode.VariableName : variableNode.VariableName;
|
---|
[16284] | 74 | }
|
---|
[16654] | 75 | var hash = (ulong)name.GetHashCode();
|
---|
| 76 | var hashNode = new HashNode<ISymbolicExpressionTreeNode>(comparer) {
|
---|
| 77 | Data = node,
|
---|
| 78 | Arity = node.SubtreeCount,
|
---|
| 79 | Size = node.SubtreeCount,
|
---|
| 80 | IsCommutative = node.Symbol is Addition || node.Symbol is Multiplication,
|
---|
| 81 | Enabled = true,
|
---|
| 82 | HashValue = hash,
|
---|
| 83 | CalculatedHashValue = hash
|
---|
| 84 | };
|
---|
| 85 | if (symbol is Addition) {
|
---|
| 86 | hashNode.Simplify = SimplifyAddition;
|
---|
| 87 | } else if (symbol is Multiplication) {
|
---|
| 88 | hashNode.Simplify = SimplifyMultiplication;
|
---|
| 89 | } else if (symbol is Division) {
|
---|
| 90 | hashNode.Simplify = SimplifyDivision;
|
---|
| 91 | } else if (symbol is Logarithm || symbol is Exponential || symbol is Sine || symbol is Cosine) {
|
---|
| 92 | hashNode.Simplify = SimplifyUnaryNode;
|
---|
| 93 | } else if (symbol is Subtraction) {
|
---|
| 94 | hashNode.Simplify = SimplifyBinaryNode;
|
---|
| 95 | }
|
---|
| 96 | return hashNode;
|
---|
| 97 | }
|
---|
[16284] | 98 |
|
---|
[16654] | 99 | public static HashNode<ISymbolicExpressionTreeNode>[] MakeNodes(this ISymbolicExpressionTree tree, bool strict = false) {
|
---|
| 100 | return MakeNodes(tree.ActualRoot(), strict);
|
---|
| 101 | }
|
---|
[16284] | 102 |
|
---|
[16654] | 103 | public static HashNode<ISymbolicExpressionTreeNode>[] MakeNodes(this ISymbolicExpressionTreeNode node, bool strict = false) {
|
---|
| 104 | return node.IterateNodesPostfix().Select(x => x.ToHashNode(strict)).ToArray().UpdateNodeSizes();
|
---|
| 105 | }
|
---|
| 106 | #endregion
|
---|
| 107 |
|
---|
| 108 | #region tree similarity
|
---|
| 109 | public static double ComputeSimilarity(ISymbolicExpressionTree t1, ISymbolicExpressionTree t2, bool simplify = false, bool strict = false) {
|
---|
| 110 | return ComputeSimilarity(t1.ActualRoot(), t2.ActualRoot(), simplify, strict);
|
---|
| 111 | }
|
---|
| 112 |
|
---|
| 113 | public static double ComputeSimilarity(ISymbolicExpressionTreeNode t1, ISymbolicExpressionTreeNode t2, bool simplify = false, bool strict = false) {
|
---|
| 114 | var lh = t1.Hash(simplify, strict);
|
---|
| 115 | var rh = t2.Hash(simplify, strict);
|
---|
| 116 |
|
---|
[16284] | 117 | Array.Sort(lh);
|
---|
| 118 | Array.Sort(rh);
|
---|
| 119 |
|
---|
| 120 | return ComputeSimilarity(lh, rh);
|
---|
| 121 | }
|
---|
| 122 |
|
---|
[16654] | 123 | // requires lhs and rhs to be sorted
|
---|
| 124 | public static int IntersectCount(this ulong[] lh, ulong[] rh) {
|
---|
| 125 | int count = 0;
|
---|
[16284] | 126 | for (int i = 0, j = 0; i < lh.Length && j < rh.Length;) {
|
---|
| 127 | var h1 = lh[i];
|
---|
| 128 | var h2 = rh[j];
|
---|
| 129 | if (h1 == h2) {
|
---|
| 130 | ++count;
|
---|
| 131 | ++i;
|
---|
| 132 | ++j;
|
---|
| 133 | } else if (h1 < h2) {
|
---|
| 134 | ++i;
|
---|
| 135 | } else if (h1 > h2) {
|
---|
| 136 | ++j;
|
---|
| 137 | }
|
---|
| 138 | }
|
---|
[16654] | 139 | return count;
|
---|
| 140 | }
|
---|
[16284] | 141 |
|
---|
[16654] | 142 | public static IEnumerable<ulong> Intersect(this ulong[] lh, ulong[] rh) {
|
---|
| 143 | for (int i = 0, j = 0; i < lh.Length && j < rh.Length;) {
|
---|
| 144 | var h1 = lh[i];
|
---|
| 145 | var h2 = rh[j];
|
---|
| 146 | if (h1 == h2) {
|
---|
| 147 | yield return h1;
|
---|
| 148 | ++i;
|
---|
| 149 | ++j;
|
---|
| 150 | } else if (h1 < h2) {
|
---|
| 151 | ++i;
|
---|
| 152 | } else if (h1 > h2) {
|
---|
| 153 | ++j;
|
---|
| 154 | }
|
---|
| 155 | }
|
---|
[16284] | 156 | }
|
---|
| 157 |
|
---|
[16654] | 158 | // this will only work if lh and rh are sorted
|
---|
| 159 | public static double ComputeSimilarity(ulong[] lh, ulong[] rh) {
|
---|
| 160 | return 2d * IntersectCount(lh, rh) / (lh.Length + rh.Length);
|
---|
| 161 | }
|
---|
| 162 |
|
---|
| 163 | public static double ComputeAverageSimilarity(IList<ISymbolicExpressionTree> trees, bool simplify = false, bool strict = false) {
|
---|
| 164 | var total = trees.Count * (trees.Count - 1) / 2;
|
---|
[16284] | 165 | double avg = 0;
|
---|
[16654] | 166 | var hashes = new ulong[trees.Count][];
|
---|
[16284] | 167 | // build hash arrays
|
---|
[16654] | 168 | for (int i = 0; i < trees.Count; ++i) {
|
---|
[16302] | 169 | var nodes = trees[i].MakeNodes(strict);
|
---|
| 170 | hashes[i] = (simplify ? nodes.Simplify(HashUtil.DJBHash) : nodes.Sort(HashUtil.DJBHash)).Select(x => x.CalculatedHashValue).ToArray();
|
---|
[16284] | 171 | Array.Sort(hashes[i]);
|
---|
| 172 | }
|
---|
| 173 | // compute similarity matrix
|
---|
[16654] | 174 | for (int i = 0; i < trees.Count - 1; ++i) {
|
---|
| 175 | for (int j = i + 1; j < trees.Count; ++j) {
|
---|
[16291] | 176 | avg += ComputeSimilarity(hashes[i], hashes[j]);
|
---|
[16284] | 177 | }
|
---|
| 178 | }
|
---|
| 179 | return avg / total;
|
---|
| 180 | }
|
---|
| 181 |
|
---|
[16654] | 182 | public static double[,] ComputeSimilarityMatrix(IList<ISymbolicExpressionTree> trees, bool simplify = false, bool strict = false) {
|
---|
| 183 | var sim = new double[trees.Count, trees.Count];
|
---|
| 184 | var hashes = new ulong[trees.Count][];
|
---|
[16284] | 185 | // build hash arrays
|
---|
[16654] | 186 | for (int i = 0; i < trees.Count; ++i) {
|
---|
[16302] | 187 | var nodes = trees[i].MakeNodes(strict);
|
---|
| 188 | hashes[i] = (simplify ? nodes.Simplify(HashUtil.DJBHash) : nodes.Sort(HashUtil.DJBHash)).Select(x => x.CalculatedHashValue).ToArray();
|
---|
[16284] | 189 | Array.Sort(hashes[i]);
|
---|
| 190 | }
|
---|
| 191 | // compute similarity matrix
|
---|
[16654] | 192 | for (int i = 0; i < trees.Count - 1; ++i) {
|
---|
| 193 | for (int j = i + 1; j < trees.Count; ++j) {
|
---|
[16284] | 194 | sim[i, j] = sim[j, i] = ComputeSimilarity(hashes[i], hashes[j]);
|
---|
| 195 | }
|
---|
| 196 | }
|
---|
| 197 | return sim;
|
---|
| 198 | }
|
---|
[16654] | 199 | #endregion
|
---|
[16284] | 200 |
|
---|
[16218] | 201 | #region parse a nodes array back into a tree
|
---|
| 202 | public static ISymbolicExpressionTree ToTree(this HashNode<ISymbolicExpressionTreeNode>[] nodes) {
|
---|
| 203 | var root = new ProgramRootSymbol().CreateTreeNode();
|
---|
| 204 | var start = new StartSymbol().CreateTreeNode();
|
---|
| 205 | root.AddSubtree(start);
|
---|
| 206 | start.AddSubtree(nodes.ToSubtree());
|
---|
| 207 | return new SymbolicExpressionTree(root);
|
---|
| 208 | }
|
---|
| 209 |
|
---|
| 210 | public static ISymbolicExpressionTreeNode ToSubtree(this HashNode<ISymbolicExpressionTreeNode>[] nodes) {
|
---|
| 211 | var treeNodes = nodes.Select(x => x.Data.Symbol.CreateTreeNode()).ToArray();
|
---|
| 212 |
|
---|
| 213 | for (int i = nodes.Length - 1; i >= 0; --i) {
|
---|
| 214 | var node = nodes[i];
|
---|
| 215 |
|
---|
[16267] | 216 | if (node.IsLeaf) {
|
---|
[16218] | 217 | if (node.Data is VariableTreeNode variable) {
|
---|
| 218 | var variableTreeNode = (VariableTreeNode)treeNodes[i];
|
---|
| 219 | variableTreeNode.VariableName = variable.VariableName;
|
---|
[16255] | 220 | variableTreeNode.Weight = variable.Weight;
|
---|
[16218] | 221 | } else if (node.Data is ConstantTreeNode @const) {
|
---|
| 222 | var constantTreeNode = (ConstantTreeNode)treeNodes[i];
|
---|
| 223 | constantTreeNode.Value = @const.Value;
|
---|
| 224 | }
|
---|
| 225 | continue;
|
---|
| 226 | }
|
---|
| 227 |
|
---|
| 228 | var treeNode = treeNodes[i];
|
---|
| 229 |
|
---|
| 230 | foreach (var j in nodes.IterateChildren(i)) {
|
---|
| 231 | treeNode.AddSubtree(treeNodes[j]);
|
---|
| 232 | }
|
---|
| 233 | }
|
---|
| 234 |
|
---|
| 235 | return treeNodes.Last();
|
---|
| 236 | }
|
---|
| 237 |
|
---|
| 238 | private static T CreateTreeNode<T>(this ISymbol symbol) where T : class, ISymbolicExpressionTreeNode {
|
---|
| 239 | return (T)symbol.CreateTreeNode();
|
---|
| 240 | }
|
---|
| 241 | #endregion
|
---|
| 242 |
|
---|
| 243 | #region tree simplification
|
---|
| 244 | // these simplification methods rely on the assumption that child nodes of the current node have already been simplified
|
---|
[16654] | 245 | // (in other words simplification should be applied in a bottom-up fashion)
|
---|
[16218] | 246 | public static ISymbolicExpressionTree Simplify(ISymbolicExpressionTree tree) {
|
---|
[16272] | 247 | ulong hashFunction(byte[] bytes) => HashUtil.JSHash(bytes);
|
---|
[16218] | 248 | var root = tree.Root.GetSubtree(0).GetSubtree(0);
|
---|
| 249 | var nodes = root.MakeNodes();
|
---|
[16272] | 250 | var simplified = nodes.Simplify(hashFunction);
|
---|
[16218] | 251 | return simplified.ToTree();
|
---|
| 252 | }
|
---|
| 253 |
|
---|
[16305] | 254 | public static void SimplifyAddition(ref HashNode<ISymbolicExpressionTreeNode>[] nodes, int i) {
|
---|
[16218] | 255 | // simplify additions of terms by eliminating terms with the same symbol and hash
|
---|
| 256 | var children = nodes.IterateChildren(i);
|
---|
| 257 |
|
---|
[16305] | 258 | // we always assume the child nodes are sorted
|
---|
[16218] | 259 | var curr = children[0];
|
---|
| 260 | var node = nodes[i];
|
---|
| 261 |
|
---|
| 262 | foreach (var j in children.Skip(1)) {
|
---|
| 263 | if (nodes[j] == nodes[curr]) {
|
---|
[16305] | 264 | nodes.SetEnabled(j, false);
|
---|
[16218] | 265 | node.Arity--;
|
---|
| 266 | } else {
|
---|
| 267 | curr = j;
|
---|
| 268 | }
|
---|
| 269 | }
|
---|
| 270 | if (node.Arity == 1) { // if the arity is 1 we don't need the addition node at all
|
---|
| 271 | node.Enabled = false;
|
---|
| 272 | }
|
---|
| 273 | }
|
---|
| 274 |
|
---|
[16654] | 275 | // simplify multiplications by reducing constants and div terms
|
---|
[16305] | 276 | public static void SimplifyMultiplication(ref HashNode<ISymbolicExpressionTreeNode>[] nodes, int i) {
|
---|
[16218] | 277 | var node = nodes[i];
|
---|
| 278 | var children = nodes.IterateChildren(i);
|
---|
| 279 |
|
---|
| 280 | for (int j = 0; j < children.Length; ++j) {
|
---|
| 281 | var c = children[j];
|
---|
| 282 | var child = nodes[c];
|
---|
| 283 |
|
---|
| 284 | if (!child.Enabled)
|
---|
| 285 | continue;
|
---|
| 286 |
|
---|
| 287 | var symbol = child.Data.Symbol;
|
---|
| 288 | if (symbol is Constant) {
|
---|
| 289 | for (int k = j + 1; k < children.Length; ++k) {
|
---|
| 290 | var d = children[k];
|
---|
| 291 | if (nodes[d].Data.Symbol is Constant) {
|
---|
| 292 | nodes[d].Enabled = false;
|
---|
| 293 | node.Arity--;
|
---|
| 294 | } else {
|
---|
| 295 | break;
|
---|
| 296 | }
|
---|
| 297 | }
|
---|
| 298 | } else if (symbol is Division) {
|
---|
| 299 | var div = nodes[c];
|
---|
| 300 | var denominator =
|
---|
| 301 | div.Arity == 1 ?
|
---|
| 302 | nodes[c - 1] : // 1 / x is expressed as div(x) (with a single child)
|
---|
| 303 | nodes[c - nodes[c - 1].Size - 2]; // assume division always has arity 1 or 2
|
---|
| 304 |
|
---|
| 305 | foreach (var d in children) {
|
---|
| 306 | if (nodes[d].Enabled && nodes[d] == denominator) {
|
---|
| 307 | nodes[c].Enabled = nodes[d].Enabled = denominator.Enabled = false;
|
---|
| 308 | node.Arity -= 2; // matching child + division node
|
---|
| 309 | break;
|
---|
| 310 | }
|
---|
| 311 | }
|
---|
| 312 | }
|
---|
| 313 |
|
---|
| 314 | if (node.Arity == 0) { // if everything is simplified this node becomes constant
|
---|
| 315 | var constantTreeNode = constant.CreateTreeNode<ConstantTreeNode>();
|
---|
| 316 | constantTreeNode.Value = 1;
|
---|
| 317 | nodes[i] = constantTreeNode.ToHashNode();
|
---|
| 318 | } else if (node.Arity == 1) { // when i have only 1 arg left i can skip this node
|
---|
| 319 | node.Enabled = false;
|
---|
| 320 | }
|
---|
| 321 | }
|
---|
| 322 | }
|
---|
| 323 |
|
---|
[16305] | 324 | public static void SimplifyDivision(ref HashNode<ISymbolicExpressionTreeNode>[] nodes, int i) {
|
---|
[16218] | 325 | var node = nodes[i];
|
---|
| 326 | var children = nodes.IterateChildren(i);
|
---|
| 327 |
|
---|
[16305] | 328 | var tmp = nodes;
|
---|
| 329 |
|
---|
| 330 | if (children.All(x => tmp[x].Data.Symbol is Constant)) {
|
---|
[16218] | 331 | var v = ((ConstantTreeNode)nodes[children.First()].Data).Value;
|
---|
| 332 | if (node.Arity == 1) {
|
---|
| 333 | v = 1 / v;
|
---|
| 334 | } else if (node.Arity > 1) {
|
---|
| 335 | foreach (var j in children.Skip(1)) {
|
---|
| 336 | v /= ((ConstantTreeNode)nodes[j].Data).Value;
|
---|
| 337 | }
|
---|
| 338 | }
|
---|
| 339 | var constantTreeNode = constant.CreateTreeNode<ConstantTreeNode>();
|
---|
| 340 | constantTreeNode.Value = v;
|
---|
| 341 | nodes[i] = constantTreeNode.ToHashNode();
|
---|
| 342 | return;
|
---|
| 343 | }
|
---|
| 344 |
|
---|
| 345 | var nominator = nodes[children[0]];
|
---|
| 346 | foreach (var j in children.Skip(1)) {
|
---|
| 347 | var denominator = nodes[j];
|
---|
| 348 | if (nominator == denominator) {
|
---|
| 349 | // disable all the children of the division node (nominator and children + denominator and children)
|
---|
| 350 | nominator.Enabled = denominator.Enabled = false;
|
---|
| 351 | node.Arity -= 2; // nominator + denominator
|
---|
| 352 | }
|
---|
| 353 | if (node.Arity == 0) {
|
---|
| 354 | var constantTreeNode = constant.CreateTreeNode<ConstantTreeNode>();
|
---|
| 355 | constantTreeNode.Value = 1; // x / x = 1
|
---|
| 356 | nodes[i] = constantTreeNode.ToHashNode();
|
---|
| 357 | }
|
---|
| 358 | }
|
---|
| 359 | }
|
---|
| 360 |
|
---|
[16305] | 361 | public static void SimplifyUnaryNode(ref HashNode<ISymbolicExpressionTreeNode>[] nodes, int i) {
|
---|
[16218] | 362 | // check if the child of the unary node is a constant, then the whole node can be simplified
|
---|
| 363 | var parent = nodes[i];
|
---|
| 364 | var child = nodes[i - 1];
|
---|
| 365 |
|
---|
| 366 | var parentSymbol = parent.Data.Symbol;
|
---|
| 367 | var childSymbol = child.Data.Symbol;
|
---|
| 368 |
|
---|
| 369 | if (childSymbol is Constant) {
|
---|
| 370 | nodes[i].Enabled = false;
|
---|
| 371 | } else if ((parentSymbol is Exponential && childSymbol is Logarithm) || (parentSymbol is Logarithm && childSymbol is Exponential)) {
|
---|
| 372 | child.Enabled = parent.Enabled = false;
|
---|
| 373 | }
|
---|
| 374 | }
|
---|
| 375 |
|
---|
[16305] | 376 | public static void SimplifyBinaryNode(ref HashNode<ISymbolicExpressionTreeNode>[] nodes, int i) {
|
---|
[16218] | 377 | var children = nodes.IterateChildren(i);
|
---|
[16305] | 378 | var tmp = nodes;
|
---|
| 379 | if (children.All(x => tmp[x].Data.Symbol is Constant)) {
|
---|
[16218] | 380 | foreach (var j in children) {
|
---|
| 381 | nodes[j].Enabled = false;
|
---|
| 382 | }
|
---|
| 383 | nodes[i] = constant.CreateTreeNode().ToHashNode();
|
---|
| 384 | }
|
---|
| 385 | }
|
---|
| 386 | #endregion
|
---|
| 387 | }
|
---|
| 388 | }
|
---|