1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2011 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
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.Linq;
|
---|
25 | using HeuristicLab.Common;
|
---|
26 | using HeuristicLab.Core;
|
---|
27 | using HeuristicLab.Data;
|
---|
28 | using HeuristicLab.Parameters;
|
---|
29 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
30 |
|
---|
31 | namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding {
|
---|
32 | [StorableClass]
|
---|
33 | [Item("ProbabilisticTreeCreator", "An operator that creates new symbolic expression trees with uniformly distributed length")]
|
---|
34 | public class ProbabilisticTreeCreator : SymbolicExpressionTreeCreator,
|
---|
35 | ISymbolicExpressionTreeSizeConstraintOperator, ISymbolicExpressionTreeGrammarBasedOperator {
|
---|
36 | private const int MAX_TRIES = 100;
|
---|
37 | private const string MaximumSymbolicExpressionTreeLengthParameterName = "MaximumSymbolicExpressionTreeLength";
|
---|
38 | private const string MaximumSymbolicExpressionTreeDepthParameterName = "MaximumSymbolicExpressionTreeDepth";
|
---|
39 | private const string SymbolicExpressionTreeGrammarParameterName = "SymbolicExpressionTreeGrammar";
|
---|
40 | #region Parameter Properties
|
---|
41 | public IValueLookupParameter<IntValue> MaximumSymbolicExpressionTreeLengthParameter {
|
---|
42 | get { return (IValueLookupParameter<IntValue>)Parameters[MaximumSymbolicExpressionTreeLengthParameterName]; }
|
---|
43 | }
|
---|
44 | public IValueLookupParameter<IntValue> MaximumSymbolicExpressionTreeDepthParameter {
|
---|
45 | get { return (IValueLookupParameter<IntValue>)Parameters[MaximumSymbolicExpressionTreeDepthParameterName]; }
|
---|
46 | }
|
---|
47 | public IValueLookupParameter<ISymbolicExpressionGrammar> SymbolicExpressionTreeGrammarParameter {
|
---|
48 | get { return (IValueLookupParameter<ISymbolicExpressionGrammar>)Parameters[SymbolicExpressionTreeGrammarParameterName]; }
|
---|
49 | }
|
---|
50 | #endregion
|
---|
51 | #region Properties
|
---|
52 | public IntValue MaximumSymbolicExpressionTreeLength {
|
---|
53 | get { return MaximumSymbolicExpressionTreeLengthParameter.ActualValue; }
|
---|
54 | }
|
---|
55 | public IntValue MaximumSymbolicExpressionTreeDepth {
|
---|
56 | get { return MaximumSymbolicExpressionTreeDepthParameter.ActualValue; }
|
---|
57 | }
|
---|
58 | public ISymbolicExpressionGrammar SymbolicExpressionTreeGrammar {
|
---|
59 | get { return SymbolicExpressionTreeGrammarParameter.ActualValue; }
|
---|
60 | }
|
---|
61 | #endregion
|
---|
62 |
|
---|
63 | [StorableConstructor]
|
---|
64 | protected ProbabilisticTreeCreator(bool deserializing) : base(deserializing) { }
|
---|
65 | protected ProbabilisticTreeCreator(ProbabilisticTreeCreator original, Cloner cloner) : base(original, cloner) { }
|
---|
66 | public ProbabilisticTreeCreator()
|
---|
67 | : base() {
|
---|
68 | Parameters.Add(new ValueLookupParameter<IntValue>(MaximumSymbolicExpressionTreeLengthParameterName, "The maximal length (number of nodes) of the symbolic expression tree."));
|
---|
69 | Parameters.Add(new ValueLookupParameter<IntValue>(MaximumSymbolicExpressionTreeDepthParameterName, "The maximal depth of the symbolic expression tree (a tree with one node has depth = 0)."));
|
---|
70 | Parameters.Add(new ValueLookupParameter<ISymbolicExpressionGrammar>(SymbolicExpressionTreeGrammarParameterName, "The tree grammar that defines the correct syntax of symbolic expression trees that should be created."));
|
---|
71 | }
|
---|
72 |
|
---|
73 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
74 | return new ProbabilisticTreeCreator(this, cloner);
|
---|
75 | }
|
---|
76 |
|
---|
77 | protected override ISymbolicExpressionTree Create(IRandom random) {
|
---|
78 | return Create(random, SymbolicExpressionTreeGrammar, MaximumSymbolicExpressionTreeLength.Value, MaximumSymbolicExpressionTreeDepth.Value);
|
---|
79 |
|
---|
80 | }
|
---|
81 |
|
---|
82 | public static ISymbolicExpressionTree Create(IRandom random, ISymbolicExpressionGrammar grammar,
|
---|
83 | int maxTreeLength, int maxTreeDepth) {
|
---|
84 | SymbolicExpressionTree tree = new SymbolicExpressionTree();
|
---|
85 | var rootNode = (SymbolicExpressionTreeTopLevelNode)grammar.ProgramRootSymbol.CreateTreeNode();
|
---|
86 | if (rootNode.HasLocalParameters) rootNode.ResetLocalParameters(random);
|
---|
87 | rootNode.SetGrammar(new SymbolicExpressionTreeGrammar(grammar));
|
---|
88 | var startNode = (SymbolicExpressionTreeTopLevelNode)grammar.StartSymbol.CreateTreeNode();
|
---|
89 | startNode.SetGrammar(new SymbolicExpressionTreeGrammar(grammar));
|
---|
90 | if (startNode.HasLocalParameters) startNode.ResetLocalParameters(random);
|
---|
91 | rootNode.AddSubtree(startNode);
|
---|
92 | PTC2(random, startNode, maxTreeLength, maxTreeDepth);
|
---|
93 | tree.Root = rootNode;
|
---|
94 | return tree;
|
---|
95 | }
|
---|
96 |
|
---|
97 | private class TreeExtensionPoint {
|
---|
98 | public ISymbolicExpressionTreeNode Parent { get; set; }
|
---|
99 | public int ChildIndex { get; set; }
|
---|
100 | public int ExtensionPointDepth { get; set; }
|
---|
101 | }
|
---|
102 |
|
---|
103 | public static void PTC2(IRandom random, ISymbolicExpressionTreeNode seedNode,
|
---|
104 | int maxLength, int maxDepth) {
|
---|
105 | // make sure it is possible to create a trees smaller than maxLength and maxDepth
|
---|
106 | if (seedNode.Grammar.GetMinimumExpressionLength(seedNode.Symbol) > maxLength)
|
---|
107 | throw new ArgumentException("Cannot create trees of length " + maxLength + " or shorter because of grammar constraints.", "maxLength");
|
---|
108 | if (seedNode.Grammar.GetMinimumExpressionDepth(seedNode.Symbol) > maxDepth)
|
---|
109 | throw new ArgumentException("Cannot create trees of depth " + maxDepth + " or smaller because of grammar constraints.", "maxDepth");
|
---|
110 |
|
---|
111 | // tree length is limited by the grammar and by the explicit size constraints
|
---|
112 | int allowedMinLength = seedNode.Grammar.GetMinimumExpressionLength(seedNode.Symbol);
|
---|
113 | int allowedMaxLength = Math.Min(maxLength, seedNode.Grammar.GetMaximumExpressionLength(seedNode.Symbol));
|
---|
114 | int tries = 0;
|
---|
115 | while (tries++ < MAX_TRIES) {
|
---|
116 | // select a target tree length uniformly in the possible range (as determined by explicit limits and limits of the grammar)
|
---|
117 | int targetTreeLength;
|
---|
118 | targetTreeLength = random.Next(allowedMinLength, allowedMaxLength + 1);
|
---|
119 | if (targetTreeLength <= 1 || maxDepth <= 1) return;
|
---|
120 |
|
---|
121 | bool success = TryCreateFullTreeFromSeed(random, seedNode, seedNode.Grammar, targetTreeLength, maxDepth);
|
---|
122 |
|
---|
123 | // if successful => check constraints and return the tree if everything looks ok
|
---|
124 | if (success && seedNode.GetLength() <= maxLength && seedNode.GetDepth() <= maxDepth) {
|
---|
125 | return;
|
---|
126 | } else {
|
---|
127 | // clean seedNode
|
---|
128 | while (seedNode.Subtrees.Count() > 0) seedNode.RemoveSubtree(0);
|
---|
129 | }
|
---|
130 | // try a different length MAX_TRIES times
|
---|
131 | }
|
---|
132 | throw new ArgumentException("Couldn't create a random valid tree.");
|
---|
133 | }
|
---|
134 |
|
---|
135 | private static bool TryCreateFullTreeFromSeed(IRandom random, ISymbolicExpressionTreeNode root, ISymbolicExpressionTreeGrammar globalGrammar,
|
---|
136 | int targetLength, int maxDepth) {
|
---|
137 | List<TreeExtensionPoint> extensionPoints = new List<TreeExtensionPoint>();
|
---|
138 | int currentLength = 1;
|
---|
139 | int totalListMinLength = globalGrammar.GetMinimumExpressionLength(root.Symbol) - 1;
|
---|
140 | int actualArity = SampleArity(random, root, targetLength);
|
---|
141 | if (actualArity < 0) return false;
|
---|
142 |
|
---|
143 | for (int i = 0; i < actualArity; i++) {
|
---|
144 | // insert a dummy sub-tree and add the pending extension to the list
|
---|
145 | var dummy = new SymbolicExpressionTreeNode();
|
---|
146 | root.AddSubtree(dummy);
|
---|
147 | extensionPoints.Add(new TreeExtensionPoint { Parent = root, ChildIndex = i, ExtensionPointDepth = 0 });
|
---|
148 | }
|
---|
149 | // while there are pending extension points and we have not reached the limit of adding new extension points
|
---|
150 | while (extensionPoints.Count > 0 && totalListMinLength + currentLength < targetLength) {
|
---|
151 | int randomIndex = random.Next(extensionPoints.Count);
|
---|
152 | TreeExtensionPoint nextExtension = extensionPoints[randomIndex];
|
---|
153 | extensionPoints.RemoveAt(randomIndex);
|
---|
154 | ISymbolicExpressionTreeNode parent = nextExtension.Parent;
|
---|
155 | int argumentIndex = nextExtension.ChildIndex;
|
---|
156 | int extensionDepth = nextExtension.ExtensionPointDepth;
|
---|
157 | if (parent.Grammar.GetMinimumExpressionDepth(parent.Symbol) >= maxDepth - extensionDepth) {
|
---|
158 | ReplaceWithMinimalTree(random, root, parent, argumentIndex);
|
---|
159 | } else {
|
---|
160 | var allowedSymbols = (from s in parent.Grammar.Symbols
|
---|
161 | where s.InitialFrequency > 0.0
|
---|
162 | where parent.Grammar.IsAllowedChildSymbol(parent.Symbol, s, argumentIndex)
|
---|
163 | where parent.Grammar.GetMinimumExpressionDepth(s) < maxDepth - extensionDepth + 1
|
---|
164 | where parent.Grammar.GetMaximumExpressionLength(s) > targetLength - totalListMinLength - currentLength
|
---|
165 | select s)
|
---|
166 | .ToList();
|
---|
167 | var weights = allowedSymbols.Select(x => x.InitialFrequency).ToList();
|
---|
168 | var selectedSymbol = allowedSymbols.SelectRandom(weights, random);
|
---|
169 | ISymbolicExpressionTreeNode newTree = selectedSymbol.CreateTreeNode();
|
---|
170 | if (newTree.HasLocalParameters) newTree.ResetLocalParameters(random);
|
---|
171 | parent.RemoveSubtree(argumentIndex);
|
---|
172 | parent.InsertSubtree(argumentIndex, newTree);
|
---|
173 |
|
---|
174 | var topLevelNode = newTree as SymbolicExpressionTreeTopLevelNode;
|
---|
175 | if (topLevelNode != null)
|
---|
176 | topLevelNode.SetGrammar((ISymbolicExpressionTreeGrammar)root.Grammar.Clone());
|
---|
177 |
|
---|
178 | currentLength++;
|
---|
179 | totalListMinLength--;
|
---|
180 |
|
---|
181 | actualArity = SampleArity(random, newTree, targetLength - currentLength);
|
---|
182 | if (actualArity < 0) return false;
|
---|
183 | for (int i = 0; i < actualArity; i++) {
|
---|
184 | // insert a dummy sub-tree and add the pending extension to the list
|
---|
185 | var dummy = new SymbolicExpressionTreeNode();
|
---|
186 | newTree.AddSubtree(dummy);
|
---|
187 | extensionPoints.Add(new TreeExtensionPoint { Parent = newTree, ChildIndex = i, ExtensionPointDepth = extensionDepth + 1 });
|
---|
188 | }
|
---|
189 | totalListMinLength += newTree.Grammar.GetMinimumExpressionLength(newTree.Symbol);
|
---|
190 | }
|
---|
191 | }
|
---|
192 | // fill all pending extension points
|
---|
193 | while (extensionPoints.Count > 0) {
|
---|
194 | int randomIndex = random.Next(extensionPoints.Count);
|
---|
195 | TreeExtensionPoint nextExtension = extensionPoints[randomIndex];
|
---|
196 | extensionPoints.RemoveAt(randomIndex);
|
---|
197 | ISymbolicExpressionTreeNode parent = nextExtension.Parent;
|
---|
198 | int a = nextExtension.ChildIndex;
|
---|
199 | int d = nextExtension.ExtensionPointDepth;
|
---|
200 | ReplaceWithMinimalTree(random, root, parent, a);
|
---|
201 | }
|
---|
202 | return true;
|
---|
203 | }
|
---|
204 |
|
---|
205 | private static void ReplaceWithMinimalTree(IRandom random, ISymbolicExpressionTreeNode root, ISymbolicExpressionTreeNode parent,
|
---|
206 | int childIndex) {
|
---|
207 | // determine possible symbols that will lead to the smallest possible tree
|
---|
208 | var possibleSymbols = (from s in parent.Grammar.GetAllowedChildSymbols(parent.Symbol, childIndex)
|
---|
209 | where s.InitialFrequency > 0.0
|
---|
210 | group s by parent.Grammar.GetMinimumExpressionLength(s) into g
|
---|
211 | orderby g.Key
|
---|
212 | select g).First().ToList();
|
---|
213 | var weights = possibleSymbols.Select(x => x.InitialFrequency).ToList();
|
---|
214 | var selectedSymbol = possibleSymbols.SelectRandom(weights, random);
|
---|
215 | var tree = selectedSymbol.CreateTreeNode();
|
---|
216 | if (tree.HasLocalParameters) tree.ResetLocalParameters(random);
|
---|
217 | parent.RemoveSubtree(childIndex);
|
---|
218 | parent.InsertSubtree(childIndex, tree);
|
---|
219 |
|
---|
220 | var topLevelNode = tree as SymbolicExpressionTreeTopLevelNode;
|
---|
221 | if (topLevelNode != null)
|
---|
222 | topLevelNode.SetGrammar((ISymbolicExpressionTreeGrammar)root.Grammar.Clone());
|
---|
223 |
|
---|
224 | for (int i = 0; i < tree.Grammar.GetMinimumSubtreeCount(tree.Symbol); i++) {
|
---|
225 | // insert a dummy sub-tree and add the pending extension to the list
|
---|
226 | var dummy = new SymbolicExpressionTreeNode();
|
---|
227 | tree.AddSubtree(dummy);
|
---|
228 | // replace the just inserted dummy by recursive application
|
---|
229 | ReplaceWithMinimalTree(random, root, tree, i);
|
---|
230 | }
|
---|
231 | }
|
---|
232 |
|
---|
233 | private static bool IsTopLevelBranch(ISymbolicExpressionTreeNode root, ISymbolicExpressionTreeNode branch) {
|
---|
234 | return branch is SymbolicExpressionTreeTopLevelNode;
|
---|
235 | }
|
---|
236 |
|
---|
237 | private static int SampleArity(IRandom random, ISymbolicExpressionTreeNode node, int targetLength) {
|
---|
238 | // select actualArity randomly with the constraint that the sub-trees in the minimal arity can become large enough
|
---|
239 | int minArity = node.Grammar.GetMinimumSubtreeCount(node.Symbol);
|
---|
240 | int maxArity = node.Grammar.GetMaximumSubtreeCount(node.Symbol);
|
---|
241 | if (maxArity > targetLength) {
|
---|
242 | maxArity = targetLength;
|
---|
243 | }
|
---|
244 | // the min number of sub-trees has to be set to a value that is large enough so that the largest possible tree is at least tree length
|
---|
245 | // if 1..3 trees are possible and the largest possible first sub-tree is smaller larger than the target length then minArity should be at least 2
|
---|
246 | long aggregatedLongestExpressionLength = 0;
|
---|
247 | for (int i = 0; i < maxArity; i++) {
|
---|
248 | aggregatedLongestExpressionLength += (from s in node.Grammar.GetAllowedChildSymbols(node.Symbol, i)
|
---|
249 | where s.InitialFrequency > 0.0
|
---|
250 | select node.Grammar.GetMaximumExpressionLength(s)).Max();
|
---|
251 | if (aggregatedLongestExpressionLength < targetLength) minArity = i + 1;
|
---|
252 | else break;
|
---|
253 | }
|
---|
254 |
|
---|
255 | // the max number of sub-trees has to be set to a value that is small enough so that the smallest possible tree is at most tree length
|
---|
256 | // if 1..3 trees are possible and the smallest possible first sub-tree is already larger than the target length then maxArity should be at most 0
|
---|
257 | long aggregatedShortestExpressionLength = 0;
|
---|
258 | for (int i = 0; i < maxArity; i++) {
|
---|
259 | aggregatedShortestExpressionLength += (from s in node.Grammar.GetAllowedChildSymbols(node.Symbol, i)
|
---|
260 | where s.InitialFrequency > 0.0
|
---|
261 | select node.Grammar.GetMinimumExpressionLength(s)).Min();
|
---|
262 | if (aggregatedShortestExpressionLength > targetLength) {
|
---|
263 | maxArity = i;
|
---|
264 | break;
|
---|
265 | }
|
---|
266 | }
|
---|
267 | if (minArity > maxArity) return -1;
|
---|
268 | return random.Next(minArity, maxArity + 1);
|
---|
269 | }
|
---|
270 | }
|
---|
271 | } |
---|