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.Persistence.Default.CompositeSerializers.Storable;
|
---|
28 |
|
---|
29 | namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding {
|
---|
30 | /// <summary>
|
---|
31 | /// The default symbolic expression grammar stores symbols and syntactic constraints for symbols.
|
---|
32 | /// Symbols are treated as equvivalent if they have the same name.
|
---|
33 | /// Syntactic constraints limit the number of allowed sub trees for a node with a symbol and which symbols are allowed
|
---|
34 | /// in the sub-trees of a symbol (can be specified for each sub-tree index separately).
|
---|
35 | /// </summary>
|
---|
36 | [StorableClass]
|
---|
37 | public abstract class SymbolicExpressionGrammarBase : NamedItem, ISymbolicExpressionGrammarBase {
|
---|
38 |
|
---|
39 | #region properties for separation between implementation and persistence
|
---|
40 | [Storable(Name = "Symbols")]
|
---|
41 | private IEnumerable<ISymbol> StorableSymbols {
|
---|
42 | get { return symbols.Values.ToArray(); }
|
---|
43 | set { symbols = value.ToDictionary(sym => sym.Name); }
|
---|
44 | }
|
---|
45 |
|
---|
46 | [Storable(Name = "SymbolSubtreeCount")]
|
---|
47 | private IEnumerable<KeyValuePair<ISymbol, Tuple<int, int>>> StorableSymbolSubtreeCount {
|
---|
48 | get { return symbolSubtreeCount.Select(x => new KeyValuePair<ISymbol, Tuple<int, int>>(GetSymbol(x.Key), x.Value)).ToArray(); }
|
---|
49 | set { symbolSubtreeCount = value.ToDictionary(x => x.Key.Name, x => x.Value); }
|
---|
50 | }
|
---|
51 |
|
---|
52 | [Storable(Name = "AllowedChildSymbols")]
|
---|
53 | private IEnumerable<KeyValuePair<ISymbol, IEnumerable<ISymbol>>> StorableAllowedChildSymbols {
|
---|
54 | get { return allowedChildSymbols.Select(x => new KeyValuePair<ISymbol, IEnumerable<ISymbol>>(GetSymbol(x.Key), x.Value.Select(GetSymbol).ToArray())).ToArray(); }
|
---|
55 | set { allowedChildSymbols = value.ToDictionary(x => x.Key.Name, x => x.Value.Select(y => y.Name).ToList()); }
|
---|
56 | }
|
---|
57 |
|
---|
58 | [Storable(Name = "AllowedChildSymbolsPerIndex")]
|
---|
59 | private IEnumerable<KeyValuePair<Tuple<ISymbol, int>, IEnumerable<ISymbol>>> StorableAllowedChildSymbolsPerIndex {
|
---|
60 | get { return allowedChildSymbolsPerIndex.Select(x => new KeyValuePair<Tuple<ISymbol, int>, IEnumerable<ISymbol>>(Tuple.Create<ISymbol, int>(GetSymbol(x.Key.Item1), x.Key.Item2), x.Value.Select(y => GetSymbol(y)).ToArray())).ToArray(); }
|
---|
61 | set { allowedChildSymbolsPerIndex = value.ToDictionary(x => Tuple.Create(x.Key.Item1.Name, x.Key.Item2), x => x.Value.Select(y => y.Name).ToList()); }
|
---|
62 | }
|
---|
63 | #endregion
|
---|
64 |
|
---|
65 | private bool suppressEvents;
|
---|
66 | protected Dictionary<string, ISymbol> symbols;
|
---|
67 | protected Dictionary<string, Tuple<int, int>> symbolSubtreeCount;
|
---|
68 | protected Dictionary<string, List<string>> allowedChildSymbols;
|
---|
69 | protected Dictionary<Tuple<string, int>, List<string>> allowedChildSymbolsPerIndex;
|
---|
70 |
|
---|
71 | public override bool CanChangeName {
|
---|
72 | get { return false; }
|
---|
73 | }
|
---|
74 | public override bool CanChangeDescription {
|
---|
75 | get { return false; }
|
---|
76 | }
|
---|
77 |
|
---|
78 | [StorableConstructor]
|
---|
79 | protected SymbolicExpressionGrammarBase(bool deserializing)
|
---|
80 | : base(deserializing) {
|
---|
81 | cachedMinExpressionLength = new Dictionary<string, int>();
|
---|
82 | cachedMaxExpressionLength = new Dictionary<string, int>();
|
---|
83 | cachedMinExpressionDepth = new Dictionary<string, int>();
|
---|
84 |
|
---|
85 | cachedIsAllowedChildSymbol = new Dictionary<Tuple<string, string>, bool>();
|
---|
86 | cachedIsAllowedChildSymbolIndex = new Dictionary<Tuple<string, string, int>, bool>();
|
---|
87 |
|
---|
88 | suppressEvents = false;
|
---|
89 | }
|
---|
90 |
|
---|
91 | protected SymbolicExpressionGrammarBase(SymbolicExpressionGrammarBase original, Cloner cloner)
|
---|
92 | : base(original, cloner) {
|
---|
93 | cachedMinExpressionLength = new Dictionary<string, int>();
|
---|
94 | cachedMaxExpressionLength = new Dictionary<string, int>();
|
---|
95 | cachedMinExpressionDepth = new Dictionary<string, int>();
|
---|
96 |
|
---|
97 | cachedIsAllowedChildSymbol = new Dictionary<Tuple<string, string>, bool>();
|
---|
98 | cachedIsAllowedChildSymbolIndex = new Dictionary<Tuple<string, string, int>, bool>();
|
---|
99 |
|
---|
100 | symbols = original.symbols.ToDictionary(x => x.Key, y => cloner.Clone(y.Value));
|
---|
101 | symbolSubtreeCount = new Dictionary<string, Tuple<int, int>>(original.symbolSubtreeCount);
|
---|
102 |
|
---|
103 | allowedChildSymbols = new Dictionary<string, List<string>>();
|
---|
104 | foreach (var element in original.allowedChildSymbols)
|
---|
105 | allowedChildSymbols.Add(element.Key, new List<string>(element.Value));
|
---|
106 |
|
---|
107 | allowedChildSymbolsPerIndex = new Dictionary<Tuple<string, int>, List<string>>();
|
---|
108 | foreach (var element in original.allowedChildSymbolsPerIndex)
|
---|
109 | allowedChildSymbolsPerIndex.Add(element.Key, new List<string>(element.Value));
|
---|
110 |
|
---|
111 | suppressEvents = false;
|
---|
112 | }
|
---|
113 |
|
---|
114 | protected SymbolicExpressionGrammarBase(string name, string description)
|
---|
115 | : base(name, description) {
|
---|
116 | cachedMinExpressionLength = new Dictionary<string, int>();
|
---|
117 | cachedMaxExpressionLength = new Dictionary<string, int>();
|
---|
118 | cachedMinExpressionDepth = new Dictionary<string, int>();
|
---|
119 |
|
---|
120 | cachedIsAllowedChildSymbol = new Dictionary<Tuple<string, string>, bool>();
|
---|
121 | cachedIsAllowedChildSymbolIndex = new Dictionary<Tuple<string, string, int>, bool>();
|
---|
122 |
|
---|
123 | symbols = new Dictionary<string, ISymbol>();
|
---|
124 | symbolSubtreeCount = new Dictionary<string, Tuple<int, int>>();
|
---|
125 | allowedChildSymbols = new Dictionary<string, List<string>>();
|
---|
126 | allowedChildSymbolsPerIndex = new Dictionary<Tuple<string, int>, List<string>>();
|
---|
127 |
|
---|
128 | suppressEvents = false;
|
---|
129 | }
|
---|
130 |
|
---|
131 | #region protected grammar manipulation methods
|
---|
132 | protected virtual void AddSymbol(ISymbol symbol) {
|
---|
133 | if (ContainsSymbol(symbol)) throw new ArgumentException("Symbol " + symbol + " is already defined.");
|
---|
134 | foreach (var s in symbol.Flatten()) {
|
---|
135 | symbols.Add(s.Name, s);
|
---|
136 | symbolSubtreeCount.Add(s.Name, Tuple.Create(s.MinimumArity, s.MaximumArity));
|
---|
137 | }
|
---|
138 | ClearCaches();
|
---|
139 | }
|
---|
140 |
|
---|
141 | protected virtual void RemoveSymbol(ISymbol symbol) {
|
---|
142 | foreach (var s in symbol.Flatten()) {
|
---|
143 | symbols.Remove(s.Name);
|
---|
144 | allowedChildSymbols.Remove(s.Name);
|
---|
145 | for (int i = 0; i < GetMaximumSubtreeCount(s); i++)
|
---|
146 | allowedChildSymbolsPerIndex.Remove(Tuple.Create(s.Name, i));
|
---|
147 | symbolSubtreeCount.Remove(s.Name);
|
---|
148 |
|
---|
149 | foreach (var parent in Symbols) {
|
---|
150 | List<string> allowedChilds;
|
---|
151 | if (allowedChildSymbols.TryGetValue(parent.Name, out allowedChilds))
|
---|
152 | allowedChilds.Remove(s.Name);
|
---|
153 |
|
---|
154 | for (int i = 0; i < GetMaximumSubtreeCount(parent); i++) {
|
---|
155 | if (allowedChildSymbolsPerIndex.TryGetValue(Tuple.Create(parent.Name, i), out allowedChilds))
|
---|
156 | allowedChilds.Remove(s.Name);
|
---|
157 | }
|
---|
158 | }
|
---|
159 | suppressEvents = true;
|
---|
160 | foreach (var groupSymbol in Symbols.OfType<GroupSymbol>())
|
---|
161 | groupSymbol.SymbolsCollection.Remove(symbol);
|
---|
162 | suppressEvents = false;
|
---|
163 | }
|
---|
164 | ClearCaches();
|
---|
165 | }
|
---|
166 |
|
---|
167 | public virtual ISymbol GetSymbol(string symbolName) {
|
---|
168 | ISymbol symbol;
|
---|
169 | if (symbols.TryGetValue(symbolName, out symbol)) return symbol;
|
---|
170 | return null;
|
---|
171 | }
|
---|
172 |
|
---|
173 | protected void AddAllowedChildSymbol(ISymbol parent, ISymbol child) {
|
---|
174 | bool changed = false;
|
---|
175 |
|
---|
176 | foreach (ISymbol p in parent.Flatten().Where(p => !(p is GroupSymbol)))
|
---|
177 | changed |= AddAllowedChildSymbolToDictionaries(p, child);
|
---|
178 |
|
---|
179 | if (changed) {
|
---|
180 | ClearCaches();
|
---|
181 | OnChanged();
|
---|
182 | }
|
---|
183 | }
|
---|
184 |
|
---|
185 | private bool AddAllowedChildSymbolToDictionaries(ISymbol parent, ISymbol child) {
|
---|
186 | List<string> childSymbols;
|
---|
187 | if (!allowedChildSymbols.TryGetValue(parent.Name, out childSymbols)) {
|
---|
188 | childSymbols = new List<string>();
|
---|
189 | allowedChildSymbols.Add(parent.Name, childSymbols);
|
---|
190 | }
|
---|
191 | if (childSymbols.Contains(child.Name)) return false;
|
---|
192 |
|
---|
193 | suppressEvents = true;
|
---|
194 | for (int argumentIndex = 0; argumentIndex < GetMaximumSubtreeCount(parent); argumentIndex++)
|
---|
195 | RemoveAllowedChildSymbol(parent, child, argumentIndex);
|
---|
196 | suppressEvents = false;
|
---|
197 |
|
---|
198 | childSymbols.Add(child.Name);
|
---|
199 | return true;
|
---|
200 | }
|
---|
201 |
|
---|
202 | protected void AddAllowedChildSymbol(ISymbol parent, ISymbol child, int argumentIndex) {
|
---|
203 | bool changed = false;
|
---|
204 |
|
---|
205 | foreach (ISymbol p in parent.Flatten().Where(p => !(p is GroupSymbol)))
|
---|
206 | changed |= AddAllowedChildSymbolToDictionaries(p, child, argumentIndex);
|
---|
207 |
|
---|
208 | if (changed) {
|
---|
209 | ClearCaches();
|
---|
210 | OnChanged();
|
---|
211 | }
|
---|
212 | }
|
---|
213 |
|
---|
214 |
|
---|
215 | private bool AddAllowedChildSymbolToDictionaries(ISymbol parent, ISymbol child, int argumentIndex) {
|
---|
216 | List<string> childSymbols;
|
---|
217 | if (!allowedChildSymbols.TryGetValue(parent.Name, out childSymbols)) {
|
---|
218 | childSymbols = new List<string>();
|
---|
219 | allowedChildSymbols.Add(parent.Name, childSymbols);
|
---|
220 | }
|
---|
221 | if (childSymbols.Contains(child.Name)) return false;
|
---|
222 |
|
---|
223 |
|
---|
224 | var key = Tuple.Create(parent.Name, argumentIndex);
|
---|
225 | if (!allowedChildSymbolsPerIndex.TryGetValue(key, out childSymbols)) {
|
---|
226 | childSymbols = new List<string>();
|
---|
227 | allowedChildSymbolsPerIndex.Add(key, childSymbols);
|
---|
228 | }
|
---|
229 |
|
---|
230 | if (childSymbols.Contains(child.Name)) return false;
|
---|
231 |
|
---|
232 | childSymbols.Add(child.Name);
|
---|
233 | return true;
|
---|
234 | }
|
---|
235 |
|
---|
236 | protected void RemoveAllowedChildSymbol(ISymbol parent, ISymbol child) {
|
---|
237 | bool changed = false;
|
---|
238 | List<string> childSymbols;
|
---|
239 | if (allowedChildSymbols.TryGetValue(child.Name, out childSymbols)) {
|
---|
240 | changed |= childSymbols.Remove(child.Name);
|
---|
241 | }
|
---|
242 |
|
---|
243 | for (int argumentIndex = 0; argumentIndex < GetMaximumSubtreeCount(parent); argumentIndex++) {
|
---|
244 | var key = Tuple.Create(parent.Name, argumentIndex);
|
---|
245 | if (allowedChildSymbolsPerIndex.TryGetValue(key, out childSymbols))
|
---|
246 | changed |= childSymbols.Remove(child.Name);
|
---|
247 | }
|
---|
248 |
|
---|
249 | if (changed) {
|
---|
250 | ClearCaches();
|
---|
251 | OnChanged();
|
---|
252 | }
|
---|
253 | }
|
---|
254 |
|
---|
255 | protected void RemoveAllowedChildSymbol(ISymbol parent, ISymbol child, int argumentIndex) {
|
---|
256 | bool changed = false;
|
---|
257 |
|
---|
258 | suppressEvents = true;
|
---|
259 | List<string> childSymbols;
|
---|
260 | if (allowedChildSymbols.TryGetValue(parent.Name, out childSymbols)) {
|
---|
261 | if (childSymbols.Remove(child.Name)) {
|
---|
262 | for (int i = 0; i < GetMaximumSubtreeCount(parent); i++) {
|
---|
263 | if (i != argumentIndex) AddAllowedChildSymbol(parent, child, i);
|
---|
264 | }
|
---|
265 | changed = true;
|
---|
266 | }
|
---|
267 | }
|
---|
268 | suppressEvents = false;
|
---|
269 |
|
---|
270 | var key = Tuple.Create(parent.Name, argumentIndex);
|
---|
271 | if (allowedChildSymbolsPerIndex.TryGetValue(key, out childSymbols))
|
---|
272 | changed |= childSymbols.Remove(child.Name);
|
---|
273 |
|
---|
274 | if (changed) {
|
---|
275 | ClearCaches();
|
---|
276 | OnChanged();
|
---|
277 | }
|
---|
278 | }
|
---|
279 |
|
---|
280 | protected void SetSubtreeCount(ISymbol symbol, int minimumSubtreeCount, int maximumSubtreeCount) {
|
---|
281 | var symbols = symbol.Flatten().Where(s => !(s is GroupSymbol));
|
---|
282 | if (symbols.Any(s => s.MinimumArity > minimumSubtreeCount)) throw new ArgumentException("Invalid minimum subtree count " + minimumSubtreeCount + " for " + symbol);
|
---|
283 | if (symbols.Any(s => s.MaximumArity < maximumSubtreeCount)) throw new ArgumentException("Invalid maximum subtree count " + maximumSubtreeCount + " for " + symbol);
|
---|
284 |
|
---|
285 | foreach (ISymbol s in symbols)
|
---|
286 | SetSubTreeCountInDictionaries(s, minimumSubtreeCount, maximumSubtreeCount);
|
---|
287 |
|
---|
288 | ClearCaches();
|
---|
289 | OnChanged();
|
---|
290 | }
|
---|
291 |
|
---|
292 | private void SetSubTreeCountInDictionaries(ISymbol symbol, int minimumSubtreeCount, int maximumSubtreeCount) {
|
---|
293 | for (int i = maximumSubtreeCount; i < GetMaximumSubtreeCount(symbol); i++) {
|
---|
294 | var key = Tuple.Create(symbol.Name, i);
|
---|
295 | allowedChildSymbolsPerIndex.Remove(key);
|
---|
296 | }
|
---|
297 |
|
---|
298 | symbolSubtreeCount[symbol.Name] = Tuple.Create(minimumSubtreeCount, maximumSubtreeCount);
|
---|
299 | }
|
---|
300 | #endregion
|
---|
301 |
|
---|
302 | public virtual IEnumerable<ISymbol> Symbols {
|
---|
303 | get { return symbols.Values; }
|
---|
304 | }
|
---|
305 | public virtual IEnumerable<ISymbol> AllowedSymbols {
|
---|
306 | get { return Symbols.Where(s => s.Enabled); }
|
---|
307 | }
|
---|
308 | public virtual bool ContainsSymbol(ISymbol symbol) {
|
---|
309 | return symbols.ContainsKey(symbol.Name);
|
---|
310 | }
|
---|
311 |
|
---|
312 | private readonly Dictionary<Tuple<string, string>, bool> cachedIsAllowedChildSymbol;
|
---|
313 | public virtual bool IsAllowedChildSymbol(ISymbol parent, ISymbol child) {
|
---|
314 | if (!child.Enabled) return false;
|
---|
315 |
|
---|
316 | bool result;
|
---|
317 | if (cachedIsAllowedChildSymbol.TryGetValue(Tuple.Create(parent.Name, child.Name), out result)) return result;
|
---|
318 | List<string> temp;
|
---|
319 | if (allowedChildSymbols.TryGetValue(parent.Name, out temp)) {
|
---|
320 | //if (temp.Contains(child.Name)) return true;
|
---|
321 | if (temp.SelectMany(s => GetSymbol(s).Flatten()).Where(s => s.Name == child.Name).Any()) {
|
---|
322 | cachedIsAllowedChildSymbol.Add(Tuple.Create(parent.Name, child.Name), true);
|
---|
323 | return true;
|
---|
324 | }
|
---|
325 | }
|
---|
326 | cachedIsAllowedChildSymbol.Add(Tuple.Create(parent.Name, child.Name), false);
|
---|
327 | return false;
|
---|
328 | }
|
---|
329 |
|
---|
330 | private readonly Dictionary<Tuple<string, string, int>, bool> cachedIsAllowedChildSymbolIndex;
|
---|
331 | public virtual bool IsAllowedChildSymbol(ISymbol parent, ISymbol child, int argumentIndex) {
|
---|
332 | if (!child.Enabled) return false;
|
---|
333 | if (IsAllowedChildSymbol(parent, child)) return true;
|
---|
334 |
|
---|
335 | bool result;
|
---|
336 | if (cachedIsAllowedChildSymbolIndex.TryGetValue(Tuple.Create(parent.Name, child.Name, argumentIndex), out result)) return result;
|
---|
337 | List<string> temp;
|
---|
338 | var key = Tuple.Create(parent.Name, argumentIndex);
|
---|
339 | if (allowedChildSymbolsPerIndex.TryGetValue(key, out temp)) {
|
---|
340 | //if (temp.Contains(child.Name)) return true;
|
---|
341 | if (temp.SelectMany(s => GetSymbol(s).Flatten()).Where(s => s.Name == child.Name).Any()) {
|
---|
342 | cachedIsAllowedChildSymbolIndex.Add(Tuple.Create(parent.Name, child.Name, argumentIndex), true);
|
---|
343 | return true;
|
---|
344 | }
|
---|
345 | }
|
---|
346 | cachedIsAllowedChildSymbolIndex.Add(Tuple.Create(parent.Name, child.Name, argumentIndex), false);
|
---|
347 | return false;
|
---|
348 | }
|
---|
349 |
|
---|
350 | public virtual IEnumerable<ISymbol> GetAllowedChildSymbols(ISymbol parent) {
|
---|
351 | List<string> childs;
|
---|
352 | if (!allowedChildSymbols.TryGetValue(parent.Name, out childs))
|
---|
353 | return Enumerable.Empty<ISymbol>();
|
---|
354 |
|
---|
355 | return childs.Select(GetSymbol).Where(s => s.Enabled);
|
---|
356 | }
|
---|
357 |
|
---|
358 | public virtual IEnumerable<ISymbol> GetAllowedChildSymbols(ISymbol parent, int argumentIndex) {
|
---|
359 | var result = Enumerable.Empty<string>();
|
---|
360 |
|
---|
361 | List<string> temp;
|
---|
362 | if (allowedChildSymbols.TryGetValue(parent.Name, out temp))
|
---|
363 | result = result.Union(temp);
|
---|
364 | var key = Tuple.Create(parent.Name, argumentIndex);
|
---|
365 | if (allowedChildSymbolsPerIndex.TryGetValue(key, out temp))
|
---|
366 | result = result.Union(temp);
|
---|
367 |
|
---|
368 | return result.Select(GetSymbol).Where(s => s.Enabled);
|
---|
369 | }
|
---|
370 |
|
---|
371 | public virtual int GetMinimumSubtreeCount(ISymbol symbol) {
|
---|
372 | return symbolSubtreeCount[symbol.Name].Item1;
|
---|
373 | }
|
---|
374 | public virtual int GetMaximumSubtreeCount(ISymbol symbol) {
|
---|
375 | return symbolSubtreeCount[symbol.Name].Item2;
|
---|
376 | }
|
---|
377 |
|
---|
378 | protected void ClearCaches() {
|
---|
379 | cachedMinExpressionLength.Clear();
|
---|
380 | cachedMaxExpressionLength.Clear();
|
---|
381 | cachedMinExpressionDepth.Clear();
|
---|
382 |
|
---|
383 | cachedIsAllowedChildSymbol.Clear();
|
---|
384 | cachedIsAllowedChildSymbolIndex.Clear();
|
---|
385 | }
|
---|
386 |
|
---|
387 | private readonly Dictionary<string, int> cachedMinExpressionLength;
|
---|
388 | public int GetMinimumExpressionLength(ISymbol symbol) {
|
---|
389 | int temp;
|
---|
390 | if (!cachedMinExpressionLength.TryGetValue(symbol.Name, out temp)) {
|
---|
391 | cachedMinExpressionLength[symbol.Name] = int.MaxValue; // prevent infinite recursion
|
---|
392 | long sumOfMinExpressionLengths = 1 + (from argIndex in Enumerable.Range(0, GetMinimumSubtreeCount(symbol))
|
---|
393 | let minForSlot = (long)(from s in GetAllowedChildSymbols(symbol, argIndex)
|
---|
394 | select GetMinimumExpressionLength(s)).DefaultIfEmpty(0).Min()
|
---|
395 | select minForSlot).DefaultIfEmpty(0).Sum();
|
---|
396 |
|
---|
397 | cachedMinExpressionLength[symbol.Name] = (int)Math.Min(sumOfMinExpressionLengths, int.MaxValue);
|
---|
398 | return cachedMinExpressionLength[symbol.Name];
|
---|
399 | }
|
---|
400 | return temp;
|
---|
401 | }
|
---|
402 |
|
---|
403 | private readonly Dictionary<string, int> cachedMaxExpressionLength;
|
---|
404 | public int GetMaximumExpressionLength(ISymbol symbol) {
|
---|
405 | int temp;
|
---|
406 | if (!cachedMaxExpressionLength.TryGetValue(symbol.Name, out temp)) {
|
---|
407 | cachedMaxExpressionLength[symbol.Name] = int.MaxValue; // prevent infinite recursion
|
---|
408 | long sumOfMaxTrees = 1 + (from argIndex in Enumerable.Range(0, GetMaximumSubtreeCount(symbol))
|
---|
409 | let maxForSlot = (long)(from s in GetAllowedChildSymbols(symbol, argIndex)
|
---|
410 | select GetMaximumExpressionLength(s)).DefaultIfEmpty(0).Max()
|
---|
411 | select maxForSlot).DefaultIfEmpty(0).Sum();
|
---|
412 | cachedMaxExpressionLength[symbol.Name] = (int)Math.Min(sumOfMaxTrees, int.MaxValue);
|
---|
413 | return cachedMaxExpressionLength[symbol.Name];
|
---|
414 | }
|
---|
415 | return temp;
|
---|
416 | }
|
---|
417 |
|
---|
418 | private readonly Dictionary<string, int> cachedMinExpressionDepth;
|
---|
419 | public int GetMinimumExpressionDepth(ISymbol symbol) {
|
---|
420 | int temp;
|
---|
421 | if (!cachedMinExpressionDepth.TryGetValue(symbol.Name, out temp)) {
|
---|
422 | cachedMinExpressionDepth[symbol.Name] = int.MaxValue; // prevent infinite recursion
|
---|
423 | long minDepth = 1 + (from argIndex in Enumerable.Range(0, GetMinimumSubtreeCount(symbol))
|
---|
424 | let minForSlot = (long)(from s in GetAllowedChildSymbols(symbol, argIndex)
|
---|
425 | select GetMinimumExpressionDepth(s)).DefaultIfEmpty(0).Min()
|
---|
426 | select minForSlot).DefaultIfEmpty(0).Max();
|
---|
427 | cachedMinExpressionDepth[symbol.Name] = (int)Math.Min(minDepth, int.MaxValue);
|
---|
428 | return cachedMinExpressionDepth[symbol.Name];
|
---|
429 | }
|
---|
430 | return temp;
|
---|
431 | }
|
---|
432 |
|
---|
433 | public event EventHandler Changed;
|
---|
434 | protected virtual void OnChanged() {
|
---|
435 | if (suppressEvents) return;
|
---|
436 | var handler = Changed;
|
---|
437 | if (handler != null) Changed(this, EventArgs.Empty);
|
---|
438 | }
|
---|
439 | }
|
---|
440 | }
|
---|