Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Analyzers/SymbolicExpressionTreeLengthAnalyzer.cs @ 10269

Last change on this file since 10269 was 9456, checked in by swagner, 11 years ago

Updated copyright year and added some missing license headers (#1889)

File size: 13.0 KB
RevLine 
[6978]1#region License Information
2/* HeuristicLab
[9456]3 * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[6978]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
[7227]22using System;
[6978]23using System.Linq;
24using HeuristicLab.Analysis;
25using HeuristicLab.Common;
26using HeuristicLab.Core;
27using HeuristicLab.Data;
28using HeuristicLab.Operators;
29using HeuristicLab.Optimization;
30using HeuristicLab.Parameters;
31using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
32
33namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding {
34  /// <summary>
35  /// An operator that tracks tree lengths of Symbolic Expression Trees
36  /// </summary>
37  [Item("SymbolicExpressionTreeLengthAnalyzer", "An operator that tracks tree lengths of Symbolic Expression Trees")]
38  [StorableClass]
[7230]39  public sealed class SymbolicExpressionTreeLengthAnalyzer : SingleSuccessorOperator, ISymbolicExpressionTreeAnalyzer {
[6978]40    private const string SymbolicExpressionTreeParameterName = "SymbolicExpressionTree";
41    private const string MaximumSymbolicExpressionTreeLengthParameterName = "MaximumSymbolicExpressionTreeLength";
42    private const string SymbolicExpressionTreeLengthsParameterName = "SymbolicExpressionTreeLengthsTable";
43    private const string SymbolicExpressionTreeLengthsHistoryParameterName = "SymbolicExpressionTreeLengthsHistoryTable";
44    private const string ResultsParameterName = "Results";
45    private const string StoreHistoryParameterName = "StoreHistory";
46    private const string UpdateIntervalParameterName = "UpdateInterval";
47    private const string UpdateCounterParameterName = "UpdateCounter";
48
49    #region Parameter properties
50    public IScopeTreeLookupParameter<ISymbolicExpressionTree> SymbolicExpressionTreeParameter {
51      get { return (IScopeTreeLookupParameter<ISymbolicExpressionTree>)Parameters[SymbolicExpressionTreeParameterName]; }
52    }
53    public ValueLookupParameter<DataTable> SymbolicExpressionTreeLengthsParameter {
[7124]54      get { return (ValueLookupParameter<DataTable>)Parameters[SymbolicExpressionTreeLengthsParameterName]; }
[6978]55    }
56    public ValueLookupParameter<DataTableHistory> SymbolicExpressionTreeLengthsHistoryParameter {
[7124]57      get { return (ValueLookupParameter<DataTableHistory>)Parameters[SymbolicExpressionTreeLengthsHistoryParameterName]; }
[6978]58    }
59    public ValueLookupParameter<ResultCollection> ResultsParameter {
60      get { return (ValueLookupParameter<ResultCollection>)Parameters[ResultsParameterName]; }
61    }
62    // history
63    public ValueParameter<BoolValue> StoreHistoryParameter {
64      get { return (ValueParameter<BoolValue>)Parameters[StoreHistoryParameterName]; }
65    }
66    public ValueParameter<IntValue> UpdateIntervalParameter {
67      get { return (ValueParameter<IntValue>)Parameters[UpdateIntervalParameterName]; }
68    }
[7143]69    public ValueParameter<IntValue> UpdateCounterParameter {
70      get { return (ValueParameter<IntValue>)Parameters[UpdateCounterParameterName]; }
[6978]71    }
72    #endregion
[7124]73
[7143]74    #region Properties
[7172]75    public bool EnabledByDefault {
76      get { return true; }
77    }
[7143]78    public IntValue UpdateInterval {
79      get { return UpdateIntervalParameter.Value; }
80    }
81    public IntValue UpdateCounter {
82      get { return UpdateCounterParameter.Value; }
83    }
84    public BoolValue StoreHistory {
85      get { return StoreHistoryParameter.Value; }
86    }
87    #endregion
88
[6978]89    [StorableConstructor]
[8561]90    private SymbolicExpressionTreeLengthAnalyzer(bool deserializing) : base(deserializing) { }
[6978]91    private SymbolicExpressionTreeLengthAnalyzer(SymbolicExpressionTreeLengthAnalyzer original, Cloner cloner)
92      : base(original, cloner) {
93    }
94    public override IDeepCloneable Clone(Cloner cloner) {
95      return new SymbolicExpressionTreeLengthAnalyzer(this, cloner);
96    }
97    public SymbolicExpressionTreeLengthAnalyzer()
98      : base() {
99      Parameters.Add(new ScopeTreeLookupParameter<ISymbolicExpressionTree>(SymbolicExpressionTreeParameterName, "The symbolic expression tree whose length should be calculated."));
100      Parameters.Add(new LookupParameter<IntValue>(MaximumSymbolicExpressionTreeLengthParameterName, "The maximum allowed symbolic expression tree length"));
101      Parameters.Add(new ValueLookupParameter<DataTable>(SymbolicExpressionTreeLengthsParameterName, "The data table to store the symbolic expression tree lengths."));
102      Parameters.Add(new ValueLookupParameter<DataTableHistory>(SymbolicExpressionTreeLengthsHistoryParameterName, "The data table to store the symbolic expression tree lengths history."));
103      Parameters.Add(new ValueLookupParameter<ResultCollection>(ResultsParameterName, "The results collection where the analysis values should be stored."));
104      Parameters.Add(new ValueParameter<BoolValue>(StoreHistoryParameterName, "True if the tree lengths history of the population should be stored.", new BoolValue(false)));
105      Parameters.Add(new ValueParameter<IntValue>(UpdateIntervalParameterName, "The interval in which the tree length analysis should be applied.", new IntValue(1)));
[7143]106      Parameters.Add(new ValueParameter<IntValue>(UpdateCounterParameterName, "The value which counts how many times the operator was called since the last update", new IntValue(0)));
[6978]107
[7227]108      SymbolicExpressionTreeLengthsParameter.Hidden = true;
109      SymbolicExpressionTreeLengthsHistoryParameter.Hidden = true;
110      ResultsParameter.Hidden = true;
111      UpdateCounterParameter.Hidden = true;
[6978]112    }
113
114    [StorableHook(HookType.AfterDeserialization)]
115    private void AfterDeserialization() {
116      // check if all the parameters are present and accounted for
117      if (!Parameters.ContainsKey(StoreHistoryParameterName)) {
118        Parameters.Add(new ValueParameter<BoolValue>(StoreHistoryParameterName, "True if the tree lengths history of the population should be stored.", new BoolValue(false)));
119      }
120      if (!Parameters.ContainsKey(UpdateIntervalParameterName)) {
121        Parameters.Add(new ValueParameter<IntValue>(UpdateIntervalParameterName, "The interval in which the tree length analysis should be applied.", new IntValue(1)));
122      }
[7280]123      //necessary code to correct UpdateCounterParameter - type was changed from LookupParameter to ValueParameter
124      if (Parameters.ContainsKey(UpdateCounterParameterName) && (Parameters[UpdateCounterParameterName] is LookupParameter<IntValue>))
125        Parameters.Remove(UpdateCounterParameterName);
[7227]126      if (!Parameters.ContainsKey(UpdateCounterParameterName)) {
127        Parameters.Add(new ValueParameter<IntValue>(UpdateCounterParameterName, "The value which counts how many times the operator was called since the last update", new IntValue(0)));
128        UpdateCounterParameter.Hidden = true;
129      }
130    }
[7150]131
[7227]132    #region IStatefulItem members
[7230]133    public override void InitializeState() {
134      base.InitializeState();
[7227]135      UpdateCounter.Value = 0;
[6978]136    }
[7230]137    public override void ClearState() {
138      base.ClearState();
[7227]139      UpdateCounter.Value = 0;
140    }
141    #endregion
[6978]142
143    public override IOperation Apply() {
[7143]144      UpdateCounter.Value++;
[6978]145      // the analyzer runs periodically, every 'updateInterval' times
[7143]146      if (UpdateCounter.Value == UpdateInterval.Value) {
147        UpdateCounter.Value = 0; // reset counter
[6978]148
149        // compute all tree lengths and store them in the lengthsTable
150        var solutions = SymbolicExpressionTreeParameter.ActualValue;
151
152        var treeLengthsTable = SymbolicExpressionTreeLengthsParameter.ActualValue;
153        // if the table was not created yet, we create it here
154        if (treeLengthsTable == null) {
[7702]155          treeLengthsTable = new DataTable("Tree Length Histogram");
[6978]156          SymbolicExpressionTreeLengthsParameter.ActualValue = treeLengthsTable;
157        }
158
159        // data table which stores tree length values
[7124]160        DataRow treeLengthsTableRow;
[6978]161
[7124]162        const string treeLengthsTableRowName = "Symbolic expression tree lengths";
163        const string treeLengthsTableRowDesc = "The distribution of symbolic expression tree lengths";
164        const string xAxisTitle = "Symbolic expression tree lengths";
165        const string yAxisTitle = "Frequency / Number of tree individuals";
166
[7147]167        var treeLengths = solutions.Select(s => (int)s.Length).ToList();
[6978]168
[7147]169        int maxLength = treeLengths.Max(t => t);
170        int minLength = treeLengths.Min(t => t);
171
[7124]172        if (!treeLengthsTable.Rows.ContainsKey(treeLengthsTableRowName)) {
[7147]173          treeLengthsTableRow = new DataRow(treeLengthsTableRowName, treeLengthsTableRowDesc, treeLengths.Select(x => (double)x));
[7124]174          treeLengthsTable.Rows.Add(treeLengthsTableRow);
[6978]175        } else {
[7124]176          treeLengthsTableRow = treeLengthsTable.Rows[treeLengthsTableRowName];
[7147]177          treeLengthsTableRow.Values.Replace(treeLengths.Select(x => (double)x));
[6978]178        }
179
180        double maximumAllowedTreeLength = ((LookupParameter<IntValue>)Parameters[MaximumSymbolicExpressionTreeLengthParameterName]).ActualValue.Value;
181
[7124]182        treeLengthsTableRow.VisualProperties.ChartType = DataRowVisualProperties.DataRowChartType.Histogram;
183        treeLengthsTableRow.VisualProperties.ExactBins = false;
[6978]184
[7147]185        int range = maxLength - minLength;
186        if (range == 0) range = 1;
[7124]187        // the following trick should result in an integer intervalWidth of 1,2,4,...
[7147]188        treeLengthsTableRow.VisualProperties.Bins = range;
[6978]189
[7124]190        if (maxLength <= 25) // [0,25]
191          treeLengthsTableRow.VisualProperties.ScaleFactor = 1.0;
[7147]192        else if (maxLength <= 100) // [26,100]
[7124]193          treeLengthsTableRow.VisualProperties.ScaleFactor = 1.0 / 2.0;
[7147]194        else if (maxLength <= 250) // [101,250]
[7124]195          treeLengthsTableRow.VisualProperties.ScaleFactor = 1.0 / 5.0;
[6978]196        else if (maxLength <= 500) // [251,500]
[7124]197          treeLengthsTableRow.VisualProperties.ScaleFactor = 1.0 / 10.0;
[6978]198        else
[7124]199          treeLengthsTableRow.VisualProperties.ScaleFactor = 1.0 / 20.0; // [501,inf]
[6978]200
[7124]201        treeLengthsTableRow.VisualProperties.IsVisibleInLegend = false;
202
[6978]203        // visual properties for the X-axis
204        treeLengthsTable.VisualProperties.XAxisMinimumAuto = false;
205        treeLengthsTable.VisualProperties.XAxisMaximumAuto = false;
206        treeLengthsTable.VisualProperties.XAxisMinimumFixedValue = 0.0;
207        if (maxLength > maximumAllowedTreeLength + 1)
[7124]208          treeLengthsTable.VisualProperties.XAxisMaximumFixedValue = maxLength + 1; // +1 so the histogram column for the maximum length won't get trimmed
[6978]209        else
210          treeLengthsTable.VisualProperties.XAxisMaximumFixedValue = maximumAllowedTreeLength + 1;
[7124]211        treeLengthsTable.VisualProperties.XAxisTitle = xAxisTitle;
[7147]212        //visual properties for the Y-axis
[6978]213        treeLengthsTable.VisualProperties.YAxisMinimumAuto = false;
214        treeLengthsTable.VisualProperties.YAxisMaximumAuto = false;
215        treeLengthsTable.VisualProperties.YAxisMinimumFixedValue = 0.0;
[7223]216        int maxFreq = (int)Math.Round(solutions.GroupBy(s => s.Length).Max(g => g.Count()) / treeLengthsTableRow.VisualProperties.ScaleFactor);
[7150]217        if (maxFreq % 5 != 0)
218          maxFreq += (5 - maxFreq % 5);
219        double yAxisMaximumFixedValue = maxFreq;
[7147]220
221        treeLengthsTable.VisualProperties.YAxisMaximumFixedValue = yAxisMaximumFixedValue;
[7124]222        treeLengthsTable.VisualProperties.YAxisTitle = yAxisTitle;
[6978]223
224        var results = ResultsParameter.ActualValue;
225
[7124]226        if (!results.ContainsKey(treeLengthsTableRowName)) {
227          results.Add(new Result(treeLengthsTableRowName, treeLengthsTable));
[6978]228        } else {
[7124]229          results[treeLengthsTableRowName].Value = treeLengthsTable;
[6978]230        }
231
232        bool storeHistory = StoreHistoryParameter.Value.Value;
[7124]233        const string treeLengthHistoryTableName = "Tree lengths history";
[6978]234
235        if (storeHistory) {
236          var treeLengthsHistory = SymbolicExpressionTreeLengthsHistoryParameter.ActualValue;
237          if (treeLengthsHistory == null) {
238            treeLengthsHistory = new DataTableHistory();
239            SymbolicExpressionTreeLengthsHistoryParameter.ActualValue = treeLengthsHistory;
240          }
[7227]241          treeLengthsHistory.Add((DataTable)treeLengthsTable.Clone());
[6978]242
[7124]243          if (!results.ContainsKey(treeLengthHistoryTableName)) {
244            results.Add(new Result(treeLengthHistoryTableName, treeLengthsHistory));
[6978]245          } else {
[7124]246            results[treeLengthHistoryTableName].Value = treeLengthsHistory;
[6978]247          }
248        }
249      }
250      return base.Apply();
251    }
252  }
253}
Note: See TracBrowser for help on using the repository browser.