[6887] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[12009] | 3 | * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[6887] | 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.Linq;
|
---|
| 24 | using HeuristicLab.Common;
|
---|
| 25 | using HeuristicLab.Core;
|
---|
| 26 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
[7012] | 27 | using HeuristicLab.PluginInfrastructure;
|
---|
[6887] | 28 |
|
---|
| 29 | namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding {
|
---|
[7012] | 30 | [NonDiscoverableType]
|
---|
[6887] | 31 | [StorableClass]
|
---|
| 32 | [Item("FullTreeCreator", "An operator that creates new symbolic expression trees using the 'Full' method")]
|
---|
| 33 | public class FullTreeCreator : SymbolicExpressionTreeCreator,
|
---|
| 34 | ISymbolicExpressionTreeSizeConstraintOperator,
|
---|
| 35 | ISymbolicExpressionTreeGrammarBasedOperator {
|
---|
| 36 |
|
---|
| 37 | [StorableConstructor]
|
---|
| 38 | protected FullTreeCreator(bool deserializing) : base(deserializing) { }
|
---|
| 39 | protected FullTreeCreator(FullTreeCreator original, Cloner cloner) : base(original, cloner) { }
|
---|
| 40 |
|
---|
[12706] | 41 | public FullTreeCreator() : base() { }
|
---|
[6887] | 42 |
|
---|
| 43 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 44 | return new FullTreeCreator(this, cloner);
|
---|
| 45 | }
|
---|
| 46 |
|
---|
| 47 |
|
---|
| 48 | protected override ISymbolicExpressionTree Create(IRandom random) {
|
---|
[12706] | 49 | return Create(random, ClonedSymbolicExpressionTreeGrammarParameter.ActualValue,
|
---|
| 50 | MaximumSymbolicExpressionTreeLengthParameter.ActualValue.Value, MaximumSymbolicExpressionTreeDepthParameter.ActualValue.Value);
|
---|
[6887] | 51 | }
|
---|
| 52 |
|
---|
[7012] | 53 | public override ISymbolicExpressionTree CreateTree(IRandom random, ISymbolicExpressionGrammar grammar, int maxTreeLength, int maxTreeDepth) {
|
---|
[7076] | 54 | return Create(random, grammar, maxTreeLength, maxTreeDepth);
|
---|
[7012] | 55 | }
|
---|
| 56 |
|
---|
[6887] | 57 | /// <summary>
|
---|
| 58 | /// Create a symbolic expression tree using the 'Full' method.
|
---|
| 59 | /// Function symbols are used for all nodes situated on a level above the maximum tree depth.
|
---|
| 60 | /// Nodes on the last tree level will have Terminal symbols.
|
---|
| 61 | /// </summary>
|
---|
| 62 | /// <param name="random">Random generator</param>
|
---|
| 63 | /// <param name="grammar">Available tree grammar</param>
|
---|
| 64 | /// <param name="maxTreeDepth">Maximum tree depth</param>
|
---|
[7012] | 65 | /// <param name="maxTreeLength">Maximum tree length. This parameter is not used.</param>
|
---|
[6887] | 66 | /// <returns></returns>
|
---|
[7012] | 67 | public static ISymbolicExpressionTree Create(IRandom random, ISymbolicExpressionGrammar grammar, int maxTreeLength, int maxTreeDepth) {
|
---|
[6887] | 68 | var tree = new SymbolicExpressionTree();
|
---|
| 69 | var rootNode = (SymbolicExpressionTreeTopLevelNode)grammar.ProgramRootSymbol.CreateTreeNode();
|
---|
| 70 | if (rootNode.HasLocalParameters) rootNode.ResetLocalParameters(random);
|
---|
[11874] | 71 | rootNode.SetGrammar(grammar.CreateExpressionTreeGrammar());
|
---|
[6887] | 72 |
|
---|
| 73 | var startNode = (SymbolicExpressionTreeTopLevelNode)grammar.StartSymbol.CreateTreeNode();
|
---|
[7236] | 74 | if (startNode.HasLocalParameters) startNode.ResetLocalParameters(random);
|
---|
[11874] | 75 | startNode.SetGrammar(grammar.CreateExpressionTreeGrammar());
|
---|
[6887] | 76 |
|
---|
| 77 | rootNode.AddSubtree(startNode);
|
---|
| 78 |
|
---|
[7236] | 79 | Create(random, startNode, maxTreeDepth - 2);
|
---|
[6887] | 80 | tree.Root = rootNode;
|
---|
| 81 | return tree;
|
---|
| 82 | }
|
---|
| 83 |
|
---|
[7236] | 84 | public static void Create(IRandom random, ISymbolicExpressionTreeNode seedNode, int maxDepth) {
|
---|
[6887] | 85 | // make sure it is possible to create a trees smaller than maxDepth
|
---|
| 86 | if (seedNode.Grammar.GetMinimumExpressionDepth(seedNode.Symbol) > maxDepth)
|
---|
| 87 | throw new ArgumentException("Cannot create trees of depth " + maxDepth + " or smaller because of grammar constraints.", "maxDepth");
|
---|
| 88 |
|
---|
| 89 |
|
---|
| 90 | int arity = seedNode.Grammar.GetMaximumSubtreeCount(seedNode.Symbol);
|
---|
[6888] | 91 | // Throw an exception if the seedNode happens to be a terminal, since in this case we cannot grow a tree.
|
---|
| 92 | if (arity <= 0)
|
---|
[6944] | 93 | throw new ArgumentException("Cannot grow tree. Seed node shouldn't have arity zero.");
|
---|
[6887] | 94 |
|
---|
[7236] | 95 | var allowedSymbols = seedNode.Grammar.AllowedSymbols
|
---|
| 96 | .Where(s => s.InitialFrequency > 0.0 && seedNode.Grammar.GetMaximumSubtreeCount(s) > 0)
|
---|
| 97 | .ToList();
|
---|
[7108] | 98 |
|
---|
[7236] | 99 | for (var i = 0; i < arity; i++) {
|
---|
| 100 | var possibleSymbols = allowedSymbols
|
---|
| 101 | .Where(s => seedNode.Grammar.IsAllowedChildSymbol(seedNode.Symbol, s, i))
|
---|
| 102 | .ToList();
|
---|
[7961] | 103 | var weights = possibleSymbols.Select(s => s.InitialFrequency).ToList();
|
---|
[12706] | 104 |
|
---|
| 105 | #pragma warning disable 612, 618
|
---|
[7961] | 106 | var selectedSymbol = possibleSymbols.SelectRandom(weights, random);
|
---|
[12706] | 107 | #pragma warning restore 612, 618
|
---|
| 108 |
|
---|
[6887] | 109 | var tree = selectedSymbol.CreateTreeNode();
|
---|
| 110 | if (tree.HasLocalParameters) tree.ResetLocalParameters(random);
|
---|
| 111 | seedNode.AddSubtree(tree);
|
---|
| 112 | }
|
---|
| 113 |
|
---|
[6888] | 114 | // Only iterate over the non-terminal nodes (those which have arity > 0)
|
---|
| 115 | // Start from depth 2 since the first two levels are formed by the rootNode and the seedNode
|
---|
[7236] | 116 | foreach (var subTree in seedNode.Subtrees)
|
---|
| 117 | if (subTree.Grammar.GetMaximumSubtreeCount(subTree.Symbol) > 0)
|
---|
| 118 | RecursiveCreate(random, subTree, 2, maxDepth);
|
---|
[6887] | 119 | }
|
---|
| 120 |
|
---|
[7236] | 121 | private static void RecursiveCreate(IRandom random, ISymbolicExpressionTreeNode root, int currentDepth, int maxDepth) {
|
---|
[6887] | 122 | var arity = root.Grammar.GetMaximumSubtreeCount(root.Symbol);
|
---|
[6888] | 123 | // In the 'Full' grow method, we cannot have terminals on the intermediate tree levels.
|
---|
| 124 | if (arity <= 0)
|
---|
| 125 | throw new ArgumentException("Cannot grow node of arity zero. Expected a function node.");
|
---|
[6887] | 126 |
|
---|
[7236] | 127 | var allowedSymbols = root.Grammar.AllowedSymbols
|
---|
| 128 | .Where(s => s.InitialFrequency > 0.0)
|
---|
| 129 | .ToList();
|
---|
[7108] | 130 |
|
---|
[7236] | 131 | for (var i = 0; i < arity; i++) {
|
---|
| 132 | var possibleSymbols = allowedSymbols
|
---|
| 133 | .Where(s => root.Grammar.IsAllowedChildSymbol(root.Symbol, s, i) &&
|
---|
| 134 | root.Grammar.GetMinimumExpressionDepth(s) - 1 <= maxDepth - currentDepth &&
|
---|
| 135 | root.Grammar.GetMaximumExpressionDepth(s) > maxDepth - currentDepth)
|
---|
| 136 | .ToList();
|
---|
[7108] | 137 | if (!possibleSymbols.Any())
|
---|
| 138 | throw new InvalidOperationException("No symbols are available for the tree.");
|
---|
[7961] | 139 | var weights = possibleSymbols.Select(s => s.InitialFrequency).ToList();
|
---|
[12706] | 140 |
|
---|
| 141 | #pragma warning disable 612, 618
|
---|
[7964] | 142 | var selectedSymbol = possibleSymbols.SelectRandom(weights, random);
|
---|
[12706] | 143 | #pragma warning restore 612, 618
|
---|
| 144 |
|
---|
[6887] | 145 | var tree = selectedSymbol.CreateTreeNode();
|
---|
| 146 | if (tree.HasLocalParameters) tree.ResetLocalParameters(random);
|
---|
| 147 | root.AddSubtree(tree);
|
---|
| 148 | }
|
---|
| 149 |
|
---|
[12706] | 150 | //additional levels should only be added if the maximum depth is not reached yet
|
---|
| 151 | if (maxDepth > currentDepth) {
|
---|
| 152 | foreach (var subTree in root.Subtrees)
|
---|
| 153 | if (subTree.Grammar.GetMaximumSubtreeCount(subTree.Symbol) > 0)
|
---|
| 154 | RecursiveCreate(random, subTree, currentDepth + 1, maxDepth);
|
---|
| 155 | }
|
---|
[6887] | 156 | }
|
---|
| 157 | }
|
---|
[7964] | 158 | }
|
---|