Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataAnalysis Refactoring/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Analyzers/MinAverageMaxSymbolicExpressionTreeLengthAnalyzer.cs @ 5549

Last change on this file since 5549 was 5549, checked in by gkronber, 13 years ago

#1418 unified size/height vs. length/depth terminology and adapted unit tests for symbolic expression tree encoding version 3.4

File size: 6.8 KB
Line 
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
22using System;
23using HeuristicLab.Analysis;
24using HeuristicLab.Common;
25using HeuristicLab.Core;
26using HeuristicLab.Data;
27using HeuristicLab.Operators;
28using HeuristicLab.Parameters;
29using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
30
31namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding {
32  /// <summary>
33  /// An operator that tracks the min average and max length of symbolic expression trees.
34  /// </summary>
35  [Item("MinAverageMaxSymbolicExpressionTreeLengthAnalyzer", "An operator that tracks the min avgerage and max length of symbolic expression trees.")]
36  [StorableClass]
37  public sealed class MinAverageMaxSymbolicExpressionTreeLengthAnalyzer : AlgorithmOperator, ISymbolicExpressionTreeAnalyzer {
38    private const string SymbolicExpressionTreeParameterName = "SymbolicExpressionTree";
39    private const string SymbolicExpressionTreeLengthParameterName = "SymbolicExpressionTreeLength";
40    private const string SymbolicExpressionTreeLengthsParameterName = "Symbolic expression tree length";
41    private const string MinTreeLengthParameterName = "Minimal symbolic expression tree length";
42    private const string AverageTreeLengthParameterName = "Average symbolic expression tree length";
43    private const string MaxTreeLengthParameterName = "Maximal symbolic expression tree length";
44    private const string ResultsParameterName = "Results";
45
46    #region parameter properties
47    public IScopeTreeLookupParameter<ISymbolicExpressionTree> SymbolicExpressionTreeParameter {
48      get { return (IScopeTreeLookupParameter<ISymbolicExpressionTree>)Parameters[SymbolicExpressionTreeParameterName]; }
49    }
50    public ScopeTreeLookupParameter<DoubleValue> SymbolicExpressionTreeLengthParameter {
51      get { return (ScopeTreeLookupParameter<DoubleValue>)Parameters[SymbolicExpressionTreeLengthParameterName]; }
52    }
53    public ValueLookupParameter<DataTable> SymbolicExpressionTreeLengthsParameter {
54      get { return (ValueLookupParameter<DataTable>)Parameters[SymbolicExpressionTreeLengthsParameterName]; }
55    }
56    public ValueLookupParameter<VariableCollection> ResultsParameter {
57      get { return (ValueLookupParameter<VariableCollection>)Parameters[ResultsParameterName]; }
58    }
59
60    [Storable]
61    private MinAverageMaxValueAnalyzer valueAnalyzer;
62    [Storable]
63    private UniformSubScopesProcessor subScopesProcessor;
64
65    #endregion
66
67    [StorableConstructor]
68    private MinAverageMaxSymbolicExpressionTreeLengthAnalyzer(bool deserializing) : base() { }
69    private MinAverageMaxSymbolicExpressionTreeLengthAnalyzer(MinAverageMaxSymbolicExpressionTreeLengthAnalyzer original, Cloner cloner)
70      : base(original, cloner) {
71      AfterDeserialization();
72    }
73    public MinAverageMaxSymbolicExpressionTreeLengthAnalyzer()
74      : base() {
75      Parameters.Add(new ScopeTreeLookupParameter<ISymbolicExpressionTree>(SymbolicExpressionTreeParameterName, "The symbolic expression tree whose length should be calculated."));
76      Parameters.Add(new ScopeTreeLookupParameter<DoubleValue>(SymbolicExpressionTreeLengthParameterName, "The length of the symbolic expression tree."));
77      Parameters.Add(new ValueLookupParameter<DataTable>(SymbolicExpressionTreeLengthsParameterName, "The data table to store the symbolic expression tree lengths."));
78      Parameters.Add(new ValueLookupParameter<VariableCollection>(ResultsParameterName, "The results collection where the analysis values should be stored."));
79
80      subScopesProcessor = new UniformSubScopesProcessor();
81      SymbolicExpressionTreeLengthCalculator lengthCalculator = new SymbolicExpressionTreeLengthCalculator();
82      valueAnalyzer = new MinAverageMaxValueAnalyzer();
83
84      subScopesProcessor.Depth.Value = SymbolicExpressionTreeParameter.Depth;
85      lengthCalculator.SymbolicExpressionTreeParameter.ActualName = SymbolicExpressionTreeParameter.Name;
86      lengthCalculator.SymbolicExpressionTreeLengthParameter.ActualName = SymbolicExpressionTreeLengthParameter.Name;
87      valueAnalyzer.ValueParameter.ActualName = lengthCalculator.SymbolicExpressionTreeLengthParameter.Name;
88      valueAnalyzer.ValueParameter.Depth = SymbolicExpressionTreeLengthParameter.Depth;
89      valueAnalyzer.AverageValueParameter.ActualName = AverageTreeLengthParameterName;
90      valueAnalyzer.CollectAverageValueInResultsParameter.Value = new BoolValue(false);
91      valueAnalyzer.MaxValueParameter.ActualName = MaxTreeLengthParameterName;
92      valueAnalyzer.CollectMaxValueInResultsParameter.Value = new BoolValue(false);
93      valueAnalyzer.MinValueParameter.ActualName = MinTreeLengthParameterName;
94      valueAnalyzer.CollectMinValueInResultsParameter.Value = new BoolValue(false);
95      valueAnalyzer.ValuesParameter.ActualName = SymbolicExpressionTreeLengthsParameter.Name;
96
97      OperatorGraph.InitialOperator = subScopesProcessor;
98      subScopesProcessor.Operator = lengthCalculator;
99      lengthCalculator.Successor = null;
100      subScopesProcessor.Successor = valueAnalyzer;
101      valueAnalyzer.Successor = null;
102
103      AfterDeserialization();
104    }
105
106
107    [StorableHook(HookType.AfterDeserialization)]
108    private void AfterDeserialization() {
109      SymbolicExpressionTreeParameter.DepthChanged += new EventHandler(SymbolicExpressionTreeParameter_DepthChanged);
110      SymbolicExpressionTreeLengthParameter.DepthChanged += new EventHandler(SymbolicExpressionTreeLengthParameter_DepthChanged);
111    }
112
113    public override IDeepCloneable Clone(Cloner cloner) {
114      return new MinAverageMaxSymbolicExpressionTreeLengthAnalyzer(this, cloner);
115    }
116
117    private void SymbolicExpressionTreeParameter_DepthChanged(object sender, EventArgs e) {
118      OnDepthParameterChanged();
119    }
120
121    private void SymbolicExpressionTreeLengthParameter_DepthChanged(object sender, EventArgs e) {
122      OnDepthParameterChanged();
123    }
124
125    private void OnDepthParameterChanged() {
126      valueAnalyzer.ValueParameter.Depth = SymbolicExpressionTreeParameter.Depth;
127      subScopesProcessor.Depth.Value = SymbolicExpressionTreeParameter.Depth;
128    }
129  }
130}
Note: See TracBrowser for help on using the repository browser.